/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --gold:       #b19416;
  --gold-light: #d4c49a;
  --light-bg:   #f2f2f2;
  --white:      #ffffff;
  --teal:       #005056;
  --text:       #1a1a1a;
  --text-light: #444444;
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Sanchez', Georgia, serif;
  --nav-h:      84px;
  --max-w:      1200px;
  --transition: 0.3s ease;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

a:hover { opacity: 0.75; }

/* ============================================================
   UTILITY
============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.bg-light { background-color: var(--light-bg); }
.bg-white  { background-color: var(--white); }
.bg-teal   { background-color: var(--teal); }

/* Brush-stroke underlined section heading */
.heading-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 26px;
  margin-bottom: 48px;
}
.heading-underline::after {
  content: '';
  position: absolute;
  left: -4%;
  bottom: 0;
  width: 108%;
  height: 26px;
  background-image: url('../images/LongBrush.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.heading-underline--short::after {
  background-image: url('../images/shortbrush.png');
}

/* CTA button */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  border: 2px solid var(--gold);
}
.btn:hover {
  background: transparent;
  color: var(--gold);
  opacity: 1;
  transform: translateY(-1px);
}

/* Outline button variant (for teal bg) */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--teal);
  opacity: 1;
}

/* ============================================================
   HEADER / NAV
============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0);
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 48px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--gold);
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE NAV
============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}
.mobile-nav a:hover {
  color: var(--gold);
  opacity: 1;
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}

/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Autoplaying background video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gradient overlay on top of video */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.12) 100%);
}


/* ============================================================
   WELCOME SECTION
============================================================ */
#welcome {
  padding: 80px 0;
}

.welcome-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.welcome-images {
  width: 100%;
}

.welcome-img-single {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.welcome-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 6.2rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 28px;
  color: var(--text);
}

.welcome-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.welcome-text .btn {
  margin-top: 16px;
}

/* ============================================================
   YOUR PRIVATE CREATIVE OASIS
============================================================ */
#oasis {
  padding: 80px 0;
}

#oasis h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700;
}

.oasis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.oasis-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.oasis-grid img:hover {
  transform: scale(1.02);
}

/* ============================================================
   HOST SECTION
============================================================ */
#host {
  padding: 80px 0;
}

.host-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.host-video-col h4 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text);
  text-align: center;
}

.video-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}

/* Portrait (9:16) walkthrough player */
.video-wrapper--vertical {
  aspect-ratio: 9/16;
  max-width: 360px;
}

.walkthrough-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ============================================================
   BTS VIDEO SECTION
============================================================ */
#bts {
  padding: 80px 0 0;
}

#bts h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700;
}

.bts-video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
  margin-top: 48px;
}

.bts-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.host-bio-col h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 28px;
  text-align: center;
}

.host-photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.host-photo {
  width: 260px;
  height: auto;
}

.host-bio-col p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================================
   LOCATION NOOKS
============================================================ */
#nooks {
  padding: 80px 0;
}

#nooks h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700;
}

#nooks > .container {
  text-align: center;
}

.nooks-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 48px;
  margin-top: -32px;
  font-style: italic;
  text-align: center;
}

.nooks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  text-align: left;
}

/* Card: image on top, text below */
.nook-card {
  display: flex;
  flex-direction: column;
}

.nook-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  border-radius: 12px 12px 0 0;
  display: block;
}

.nook-text {
  padding: 20px 4px 8px;
}

.nook-text h4 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: 0.01em;
}

.nook-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 8px;
}

.nook-card-cta .nook-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 28px 4px;
}

/* ============================================================
   HOUSE LAYOUT SECTION
============================================================ */
#layout {
  padding: 80px 0;
}

#layout h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700;
}

.layout-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 720px;
  line-height: 1.8;
  margin-top: -32px;
  margin-bottom: 48px;
}

.layout-img-wrap {
  width: 100%;
}

.layout-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  display: block;
}

/* ============================================================
   SHOOTS CREATED HERE
============================================================ */
#shoots {
  padding: 80px 0;
  text-align: center;
}

#shoots h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--teal);
}

.shoots-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.shoots-list li {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 32px;
  display: block;
  line-height: 1.3;
  border-bottom: none;
  padding: 0;
}

.shoots-list li::before {
  display: none;
}

.shoots-list-cta {
  margin-top: 16px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.shoots-list-cta span {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  color: var(--text);
}

.shoots-list-cta::before {
  display: none;
}

/* ============================================================
   INSTAGRAM CTA
============================================================ */
#instagram {
  padding: 80px 40px;
  text-align: center;
}

.instagram-inner p {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0.9;
}

/* ============================================================
   FOOTER
============================================================ */
footer.bg-teal {
  padding: 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */
@media (max-width: 1024px) {
  .nooks-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .shoots-list {
    max-width: 100%;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  #site-header {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo img {
    height: 40px;
  }

  .hero-small {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .hero-large {
    font-size: clamp(3.5rem, 20vw, 8rem);
  }

  #welcome {
    padding: 56px 0;
  }

  .welcome-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px;
  }

  .welcome-img-single {
    aspect-ratio: 4/3;
  }

  .container {
    padding: 0 24px;
  }

  #oasis,
  #host,
  #nooks,
  #layout,
  #bts,
  #shoots {
    padding: 56px 0;
  }

  .oasis-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .oasis-grid img {
    aspect-ratio: 4/3;
    border-radius: 16px;
  }

  .host-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px;
  }

  .host-photo-wrap {
    width: 160px;
    height: 160px;
  }

  .nooks-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .layout-img {
    border-radius: 10px;
  }

  .shoots-list li {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    padding: 18px 0;
  }

  #instagram {
    padding: 56px 24px;
  }

  footer.bg-teal {
    padding: 40px 24px;
  }

  .footer-links {
    gap: 20px;
  }
}
