/* ============================================================
   GOOGLE FONTS
   Cormorant Garamond — elegant display serif
   Jost               — clean geometric sans
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');


/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette — derived from the Blended & Co brand photo */
  --bg:        #FAF7F3;   /* light concrete surface — page background  */
  --nude:      #E5DDD2;   /* warm textured beige — hero bg, tagline    */
  --espresso:  #1C1410;   /* deep charcoal brown — headings, footer    */
  --stone:     #87776B;   /* warm brownish-gray — body copy            */
  --blush:     #9B7848;   /* golden brown (wood element) — CTA buttons */
  --border:    #D9CFBF;   /* warm tan — dividers, borders              */
  --white:     #FFFFFF;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 6rem;

  /* Layout */
  --max-width:  1160px;
  --nav-height: 64px;

  /* Transitions */
  --transition: 0.25s ease;
}


/* ============================================================
   BASE TYPOGRAPHY
   ============================================================ */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--stone);
  background-color: var(--bg);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--espresso);
  line-height: 1.15;
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--espresso);
}

p {
  color: var(--stone);
}


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: min(var(--max-width), 100% - 2rem);
  margin-inline: auto;
}

.section {
  padding: var(--space-xl) 0;
}

.text-center { text-align: center; }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 1px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

/* Filled — primary CTA */
.btn--primary {
  background: var(--blush);
  color: var(--white);
  border: 1px solid var(--blush);
}
.btn--primary:hover {
  background: var(--espresso);
  border-color: var(--espresso);
}

/* Outlined dark — secondary CTA */
.btn--secondary {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--espresso);
}
.btn--secondary:hover {
  background: var(--espresso);
  color: var(--white);
}

/* Outlined light — for dark backgrounds */
.btn--light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  gap: 1.5rem;
}

.nav__logo {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--espresso);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--stone);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--espresso);
}

.nav__actions {
  flex-shrink: 0;
}

/* Hamburger — hidden on desktop */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--espresso);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger animated to X when open */
.nav--open .nav__hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav--open .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav--open .nav__hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile-only book now link (hidden on desktop) */
.nav__mobile-book {
  display: none;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100dvh - var(--nav-height));
  background-color: var(--nude);

  /*
   * ──────────────────────────────────────────────────────────────
   * TO ADD A FULL-WIDTH BACKGROUND PHOTO:
   *   1. Replace background-color above with:
   *
   *      background-image:
   *        linear-gradient(rgba(30,19,14,0.40), rgba(30,19,14,0.40)),
   *        url('../images/hero/hero.jpg');
   *      background-size: cover;
   *      background-position: center top;
   *
   *   2. Change .hero__eyebrow color to rgba(255,255,255,0.75)
   *   3. Change .hero__headline color to var(--white)
   *   4. Change .hero__sub color to rgba(255,255,255,0.8)
   * ──────────────────────────────────────────────────────────────
   */

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.hero__content {
  max-width: 620px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: var(--space-md);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.08;
  margin-bottom: var(--space-md);
}

.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--stone);
  margin-bottom: var(--space-lg);
}


/* ============================================================
   CONTENT BLOCKS  (2×2 grid on homepage)
   ============================================================ */
.content-blocks {
  border-top: 1px solid var(--border);
}

.content-blocks__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.block {
  display: block;
  border: 0.5px solid var(--border);
  overflow: hidden;
  background: var(--white);
  transition: background var(--transition);
}
.block:hover {
  background: var(--bg);
}

.block__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.block:hover .block__img img {
  transform: scale(1.04);
}

.block__body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.block__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}
.block:hover .block__title {
  color: var(--blush);
}

.block__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.65;
}


/* ============================================================
   IMAGE PLACEHOLDER
   (Replace with real <img> tags as photos become available)
   ============================================================ */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--nude);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  text-align: center;
  padding: 1rem;
}
.img-placeholder::after {
  content: attr(data-label);
}


/* ============================================================
   GALLERY STRIP  (homepage)
   ============================================================ */
.gallery-strip {
  padding: var(--space-xl) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.gallery-strip__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.gallery-strip__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  margin-bottom: 0.4rem;
}
.gallery-strip__header p {
  font-size: 0.82rem;
  color: var(--stone);
}

.gallery-strip__cta {
  text-align: center;
  margin-top: var(--space-lg);
}


/* ============================================================
   MARQUEE  (Our Work scrolling strip)
   ============================================================ */
.marquee {
  overflow: hidden;
  position: relative;
  margin: var(--space-lg) 0;
}

/* Soft edge fade — left and right */
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.marquee__track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

/* Pause on hover */
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
}

.marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.marquee__item:hover img {
  transform: scale(1.05);
}

/* Placeholder sizing override for marquee */
.marquee .img-placeholder {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}


/* ============================================================
   BRAND TAGLINE STRIP
   ============================================================ */
.brand-tagline {
  background: var(--nude);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-tagline__quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.4;
  max-width: 580px;
  margin: 0 auto var(--space-sm);
  quotes: '\201C' '\201D';
}
.brand-tagline__quote::before { content: open-quote; }
.brand-tagline__quote::after  { content: close-quote; }

.brand-tagline__cite {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}


/* ============================================================
   PAGE HEADER  (inner pages: services, gallery, team, etc.)
   ============================================================ */
.page-header {
  background: var(--nude);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header__eyebrow {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: var(--space-sm);
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--espresso);
  margin-bottom: var(--space-sm);
}

.page-header__desc {
  font-size: 0.95rem;
  color: var(--stone);
  max-width: 460px;
  margin-inline: auto;
}


/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.service-category__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--espresso);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.service-item__name {
  color: var(--espresso);
  font-weight: 400;
}

.service-item__price {
  color: var(--stone);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-left: 1rem;
}

.services-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--stone);
  margin-top: var(--space-lg);
  font-style: italic;
}


/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: var(--space-md);
  background: var(--nude);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--espresso);
  margin-bottom: 0.2rem;
}

.team-card__role {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: var(--space-sm);
}

.team-card__bio {
  font-size: 0.88rem;
  line-height: 1.7;
}


/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--nude);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.4rem;
  margin-top: var(--space-md);
}
.contact-info__label:first-child {
  margin-top: 0;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--espresso);
  line-height: 1.7;
}

.contact-info__value a {
  transition: color var(--transition);
}
.contact-info__value a:hover {
  color: var(--blush);
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--nude);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--border);
}


/* ============================================================
   CTA STRIP  (reusable full-width booking banner)
   ============================================================ */
.cta-strip {
  background: var(--espresso);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

.cta-strip__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-strip__sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-lg);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--espresso);
  padding: var(--space-xl) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--space-sm);
}

.footer__col p,
.footer__col address,
.footer__col a {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  display: block;
  transition: color var(--transition);
}
.footer__col a:hover {
  color: var(--nude);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__bottom a:hover {
  color: var(--nude);
}


/* ============================================================
   RESPONSIVE — 900px breakpoint
   ============================================================ */
@media (max-width: 900px) {
  .content-blocks__grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================================
   RESPONSIVE — 768px breakpoint  (mobile nav)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --space-xl: 3.5rem;
    --space-lg: 2rem;
  }

  /* Show hamburger, hide desktop links & actions */
  .nav__hamburger { display: flex; }
  .nav__actions   { display: none; }

  /* Mobile nav dropdown */
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-md) 2rem var(--space-lg);
    border-bottom: 1px solid var(--border);
    gap: 0;
  }

  .nav--open .nav__links {
    display: flex;
  }

  .nav__link {
    padding: 0.6rem 0;
    font-size: 0.85rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  /* Show Book Now inside mobile menu */
  .nav__mobile-book {
    display: block;
    padding-top: var(--space-md);
    width: 100%;
  }
}


/* ============================================================
   RESPONSIVE — 480px breakpoint
   ============================================================ */
@media (max-width: 480px) {
  .gallery-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
