/* ---------- Tokens ---------- */
:root {
  --cream: #f7f1e1;
  --cream-2: #efe6cf;
  --burnt: #c97a1f;
  --burnt-dark: #a55f12;
  --yellow: #d9a441;
  --sage: #8a9a7b;
  --sage-dark: #5f6f54;
  --sage-mist: #e6ebdf;     /* very light sage tint for section backgrounds */
  --sage-deep: #4a5b41;     /* deeper sage for headings/accents */
  --ink: #2b2418;
  --ink-soft: #5a4f3e;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Obra Letra', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1180px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}

a { color: var(--burnt-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--burnt); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.centered { text-align: center; }
.section { padding: 110px 0; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 28px;
  font-weight: 500;
  position: relative;
  padding-top: 18px;
}
.section-title::before {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--sage-dark);
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
}
.section-title.centered { text-align: center; margin-bottom: 50px; }
.section-title.centered::before { left: 50%; transform: translateX(-50%); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(247, 241, 225, 0.85);
  border-bottom: 1px solid rgba(43,36,24,0.06);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  display: flex;
  align-items: center;
  height: 140px;
  line-height: 0;
  position: relative;
  cursor: pointer;
}
.nav-brand img {
  height: 140px;
  width: auto;
  display: block;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.nav-brand:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 12px rgba(201, 122, 31, 0.25));
}
/* Hover affordance — small "home" hint underneath the logo on hover */
.nav-brand::after {
  content: '← home';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--script);
  font-size: 0.95rem;
  color: var(--burnt);
  opacity: 0;
  transition: opacity 0.2s ease, bottom 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
}
.nav-brand:hover::after {
  opacity: 1;
  bottom: -10px;
}
@media (max-width: 720px) {
  .nav-brand, .nav-brand img { height: 80px; }
  .nav-brand::after { display: none; }
}
.nav-links {
  list-style: none; display: flex; gap: 32px; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--burnt); }

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--burnt-dark);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(247, 241, 225, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(43,36,24,0.06);
    padding: 12px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
  }
  .nav-links.open {
    max-height: 400px;
    padding: 12px 0;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 14px 20px;
    font-size: 1rem;
  }
}

/* ---------- Floating tagline pill (replaces music toggle) ---------- */
.tagline-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--script);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  pointer-events: none;
  user-select: none;
  transform: rotate(-1.5deg);
  transition: transform .25s ease;
}
@media (max-width: 720px) {
  .tagline-pill {
    bottom: 18px;
    right: 18px;
    padding: 10px 18px;
    font-size: 1rem;
  }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 180px 28px 80px;
  background:
    radial-gradient(ellipse at top, rgba(217,164,65,0.12), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(138,154,123,0.10), transparent 60%),
    var(--cream);
  position: relative;
}

/* === Hero (Fish Wings & Tings inspired full-bleed) === */
.hero-fwt {
  position: relative;
  isolation: isolate;
  background: var(--ink);
}
.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* Distressed sage-green "shack" backdrop with horizontal palm-tree border
     along the bottom edge. When a real photo is ready, replace with:
        background: url('../images/hero.jpg') center/cover; */
  background-color: #4a5b41;
  background-image:
    /* (1) Palm motif from the actual logo, repeated along the bottom as a border */
    url("../images/palm-motif-cream.png?v=1"),

    /* (2) Distress: scattered light & dark stains, water rings, scuffs */
    radial-gradient(ellipse 140px 22px at 12% 18%, rgba(20,30,15,0.32), transparent 70%),
    radial-gradient(ellipse 90px 14px at 28% 35%, rgba(247,241,225,0.06), transparent 70%),
    radial-gradient(ellipse 180px 28px at 62% 12%, rgba(20,30,15,0.25), transparent 75%),
    radial-gradient(ellipse 110px 18px at 78% 30%, rgba(247,241,225,0.05), transparent 70%),
    radial-gradient(ellipse 160px 24px at 45% 52%, rgba(20,30,15,0.22), transparent 75%),
    radial-gradient(ellipse 80px 12px at 88% 60%, rgba(20,30,15,0.28), transparent 70%),
    radial-gradient(ellipse 130px 20px at 18% 70%, rgba(20,30,15,0.20), transparent 75%),
    radial-gradient(ellipse 100px 16px at 56% 88%, rgba(247,241,225,0.07), transparent 70%),
    radial-gradient(circle 14px at 22% 28%, rgba(20,30,15,0.45), transparent 80%),
    radial-gradient(circle 10px at 67% 42%, rgba(20,30,15,0.4), transparent 80%),
    radial-gradient(circle 12px at 35% 62%, rgba(20,30,15,0.38), transparent 80%),

    /* (3) Distress: short horizontal scratches */
    repeating-linear-gradient(180deg,
      transparent 0px,
      transparent 11px,
      rgba(247,241,225,0.025) 12px,
      transparent 13px,
      transparent 19px,
      rgba(20,30,15,0.05) 20px,
      transparent 21px,
      transparent 27px),

    /* (4) Plank dividers — slightly varied, deeper shadow */
    repeating-linear-gradient(180deg,
      rgba(20,30,15,0.22) 0px,
      rgba(20,30,15,0) 2px,
      rgba(20,30,15,0) 56px,
      rgba(20,30,15,0.32) 57px,
      rgba(247,241,225,0.05) 58px,
      rgba(20,30,15,0) 60px);

  background-position:
    bottom left,
    center, center, center, center, center, center, center, center, center, center, center,
    center,
    center;
  background-size:
    260px 180px,
    auto, auto, auto, auto, auto, auto, auto, auto, auto, auto, auto,
    auto,
    auto;
  background-repeat:
    repeat-x,
    no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat,
    repeat,
    repeat;
}
.hero-bg-placeholder .placeholder-label {
  position: absolute;
  bottom: 8px;
  right: 12px;
  background: rgba(247,241,225,0.85);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.65rem;
  padding: 4px 8px;
  border-radius: 3px;
  max-width: 280px;
  line-height: 1.4;
}
.hero-bg-placeholder code {
  background: rgba(0,0,0,0.08);
  padding: 1px 4px;
  border-radius: 2px;
  font-size: 0.95em;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at center, rgba(31,27,20,0.78) 0%, rgba(31,27,20,0.5) 60%, rgba(31,27,20,0.45) 100%);
}
.hero-fwt .hero-logo {
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.55));
}
.hero-fwt .hero-tagline {
  text-shadow: 0 2px 14px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5);
}
.hero-fwt .hero-eyebrow {
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero-fwt .hero-eyebrow { color: var(--yellow); }
.hero-fwt .hero-logo {
  /* keep native burnt orange — pops nicely on the sage backdrop */
}
.hero-fwt .hero-tagline {
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  max-width: 640px;
  text-shadow: 0 2px 8px rgba(43,29,18,0.5);
}

/* Text-based hero title (replaces the centered logo overlay) */
.hero-fwt .hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin: 0 0 8px;
  line-height: 1;
  text-shadow: 0 4px 22px rgba(0,0,0,0.65), 0 2px 6px rgba(0,0,0,0.45);
}
.hero-fwt .hero-sublabel {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 28px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero-fwt .hero-scroll { color: rgba(247,241,225,0.7); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
}

/* === Mission statement === */
.mission { background: var(--cream); padding: 70px 0; }
.mission-statement {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--sage-deep);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.4;
  font-weight: 400;
}

/* === Section variants === */
.section-tight { padding: 30px 0; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.quick-ctas { background: var(--cream); padding-top: 0; }

/* === About — image left, copy right === */
.about-fwt {
  background: var(--cream);
  border-top: none;
  border-bottom: none;
  position: relative;
}
.about-fwt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'><g fill='%235F6F5408'><path d='M50 350 Q90 260 80 180 Q120 240 160 200 Q90 290 50 350Z'/><path d='M320 60 Q280 150 330 220 Q280 150 250 170 Q320 100 320 60Z'/></g></svg>");
  background-size: 500px 500px;
  background-position: center;
  opacity: 0.6;
  pointer-events: none;
}
.about-fwt > .container { position: relative; }
.two-col-image-left {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 800px) {
  .two-col-image-left { grid-template-columns: 1fr; gap: 30px; }
}
.about-photo .photo-placeholder {
  aspect-ratio: 4 / 5;
}

/* === About — founder + head chef grid === */
.about-intro {
  max-width: 760px;
  margin: 0 auto 60px;
}
.about-intro .lede {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-style: italic;
  color: var(--sage-deep);
  margin: 16px 0 24px;
  font-weight: 500;
}
.about-intro p:not(.lede):not(.hero-eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}
.team-member {
  text-align: center;
}
.team-member .member-photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 22px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 14px 40px rgba(43, 36, 24, 0.18);
}
.team-member .member-role {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burnt);
  margin: 0;
}
.team-member .member-name {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--sage-deep);
  margin: 4px 0 14px;
  letter-spacing: 0.01em;
}
.team-member .member-bio {
  color: var(--ink-soft);
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.65;
}
@media (max-width: 720px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-intro {
    margin-bottom: 40px;
  }
}
.about-copy .signature {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--sage-deep);
  margin-top: 18px;
}
.about-copy .hero-eyebrow { display: inline-block; }

/* === Photo placeholders (visible markers for future imagery) === */
.photo-placeholder {
  background:
    repeating-linear-gradient(45deg, var(--cream-2) 0 12px, #e3d8b8 12px 24px);
  border: 2px dashed var(--sage-dark);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  width: 100%;
  height: 100%;
  min-height: 280px;
  color: var(--sage-deep);
}
.photo-placeholder small {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 10px;
  line-height: 1.5;
}
.placeholder-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
}
.photo-placeholder code {
  background: rgba(95,111,84,0.08);
  padding: 1px 4px;
  border-radius: 2px;
  font-family: monospace;
  font-size: 0.85em;
}

.service-photo-placeholder {
  aspect-ratio: 4 / 3;
  margin: -38px -30px 20px;
  background:
    repeating-linear-gradient(45deg, var(--cream-2) 0 10px, #e3d8b8 10px 20px);
  border-bottom: 3px solid var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  border-radius: var(--radius) var(--radius) 0 0;
}

/* === Mounted image — must come AFTER .photo-placeholder & .service-photo-placeholder
   because those rules use `background:` shorthand which would reset sizing/position
   defaults. Defined later in the cascade so we win on equal specificity. === */
.image-mounted {
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: 0 14px 40px rgba(43, 36, 24, 0.18);
}
.image-mounted > * { display: none !important; }
.service-photo-placeholder.image-mounted {
  border-bottom: 3px solid var(--sage-dark);
}
.hero-bg-placeholder.image-mounted {
  background-color: transparent !important;
  box-shadow: none;
}

/* === Location card === */
.location-card-section { background: var(--cream); padding: 30px 0 50px; }
.location-card {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border, rgba(43,36,24,0.08));
  border-left: 4px solid var(--sage-dark);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 22px;
  align-items: center;
  box-shadow: 0 4px 24px rgba(95,111,84,0.08);
}
.location-card-mark { font-size: 2rem; line-height: 1; }
.location-card h3 {
  margin: 0 0 6px;
  color: var(--sage-deep);
  font-size: 1.4rem;
}
.location-card p { margin: 0; color: var(--ink-soft); }

/* === Reviews === */
.reviews { background: var(--sage-mist); padding: 100px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.review {
  background: white;
  margin: 0;
  padding: 28px 24px;
  border-radius: var(--radius);
  border-top: 3px solid var(--burnt);
  text-align: left;
  box-shadow: 0 4px 18px rgba(95,111,84,0.08);
}
.review p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.5;
}
.review cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* === Footer multi-column === */
.footer-cols {
  background: var(--sage-deep);
  padding: 60px 24px 24px;
  text-align: left;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(247,241,225,0.18);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
}
.footer-col h4 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--yellow);
  margin: 0 0 14px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 6px 0; }
.footer-col a {
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.footer-col a:hover { border-bottom-color: var(--yellow); color: var(--yellow); }
.footer-col p { margin: 6px 0; color: var(--cream); opacity: 0.92; }
.footer-brand .footer-logo {
  width: 140px;
  height: auto;
  margin: 0 0 16px;
  filter: none;
}
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
}
.footer-bottom {
  text-align: center;
  margin: 28px 0 0;
  color: rgba(247,241,225,0.7);
  font-size: 0.82rem;
}
.hero-eyebrow {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--sage-deep);
  margin: 0 0 6px;
  letter-spacing: 0.01em;
  transform: rotate(-1.5deg);
  display: inline-block;
}
.hero-logo {
  width: 520px;
  height: auto;
  max-width: 88vw;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;
}
@media (max-width: 720px) {
  .hero-logo { width: 360px; max-width: 92vw; }
}

/* Accessibility — hide visually but keep for screen readers + SEO */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.02;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--sage-deep);
}
.hero-tagline {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 36px;
  letter-spacing: 0.01em;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s ease;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--burnt);
  color: var(--cream);
  border-color: var(--burnt);
}
.btn-primary:hover {
  background: var(--burnt-dark);
  border-color: var(--burnt-dark);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* ---------- About ---------- */
.about {
  background: var(--cream-2);
  border-top: 4px solid var(--sage);
  border-bottom: 4px solid var(--sage);
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lede {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--sage-deep);
  margin: 0 0 20px;
  font-weight: 500;
}
.about-image .image-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(201,122,31,0.15), rgba(138,154,123,0.2)),
    url('../images/about.jpg') center/cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(43,36,24,0.15);
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Gallery (rolling banner) ---------- */
.gallery { padding: 90px 0; background: var(--cream); }
.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll 50s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  width: 360px;
  height: 460px;
  flex-shrink: 0;
  background-color: var(--sage);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(43,36,24,0.12);
  display: block;
  text-decoration: none;
  cursor: zoom-in;
  transition: transform .35s ease, box-shadow .35s ease;
}
a.marquee-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 14px 40px rgba(43,36,24,0.22);
}

/* ---------- Subtle film-grain noise overlay ---------- */
/* Sits above content visually but ignores all clicks. Adds tactile depth that
   complements the distressed palm motif without overpowering the brand. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}
@media (prefers-reduced-motion: reduce) {
  body::after { opacity: 0.02; }
}
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

/* ---------- Services ---------- */
.services {
  background: var(--sage-mist);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--cream);
  padding: 38px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(43,36,24,0.08);
  border-top: 3px solid var(--sage-dark);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(95,111,84,0.18);
  border-top-color: var(--sage-deep);
}
.service-card h3 {
  font-size: 1.6rem;
  margin: 0 0 12px;
  color: var(--sage-deep);
}
.service-card p { margin: 0; color: var(--ink-soft); }

/* ---------- Quote ---------- */
.quote { background: var(--cream); }
.quote-sub { max-width: 560px; margin: 0 auto 50px; color: var(--ink-soft); }
.quote-form {
  max-width: 780px;
  margin: 0 auto;
  background: var(--cream-2);
  padding: 50px;
  border-radius: var(--radius);
  border: 1px solid rgba(43,36,24,0.08);
  border-top: 4px solid var(--sage-dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 30px 22px; }
}
.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  padding: 12px 14px;
  border: 1px solid rgba(43,36,24,0.18);
  background: var(--cream);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color .2s;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--burnt);
}
.menu-fieldset {
  border: none;
  padding: 0;
  margin: 26px 0;
}
.menu-fieldset legend {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.radio, .checkbox {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
  background: var(--cream);
  border: 1px solid rgba(43,36,24,0.1);
  border-radius: var(--radius);
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
  transition: border-color .2s, background .2s;
}
.radio:hover, .checkbox:hover { border-color: var(--burnt); }
.radio input, .checkbox input { margin-top: 4px; accent-color: var(--burnt); }
.full { display: block !important; }

.quote-result {
  margin-top: 30px;
  padding: 28px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
}
.quote-amount {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.quote-label {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}
.quote-value {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--yellow);
}
.quote-breakdown {
  font-size: 0.88rem;
  opacity: 0.85;
  border-top: 1px solid rgba(247,241,225,0.15);
  padding-top: 14px;
  margin-top: 14px;
  display: none;
}
.quote-breakdown.visible { display: block; }
.quote-breakdown div { display: flex; justify-content: space-between; margin: 4px 0; }

.form-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 26px;
  flex-wrap: wrap;
}
.disclaimer {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 18px;
  font-style: italic;
}

.enquiry-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
  color: var(--sage);
}
.enquiry-success svg {
  stroke: var(--sage);
  opacity: 0.85;
}
.enquiry-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0;
  color: var(--sage);
}
.enquiry-success p {
  max-width: 420px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Subpage headers (non-home pages) ---------- */
body.subpage {
  background: var(--cream);
}
.page-header {
  padding: 200px 28px 50px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(217,164,65,0.10), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(138,154,123,0.08), transparent 60%),
    var(--cream);
}
.page-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 500;
  color: var(--ink);
  margin: 6px 0 14px;
  line-height: 1.05;
}
.page-sub {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Inline form banner — shown above the quote form on validation errors */
.form-banner {
  max-width: 780px;
  margin: 0 auto 20px;
  padding: 16px 22px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}
.form-banner[data-type="error"] {
  background: #fbeceb;
  color: #b53f2c;
  border: 1px solid #f0c3bd;
}
.form-banner[data-type="info"] {
  background: var(--cream-2);
  color: var(--sage-deep);
  border: 1px solid rgba(95, 111, 84, 0.25);
}

/* Turnstile inline status text — shown next to the widget on the contact form */
.turnstile-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.turnstile-status {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
  font-style: italic;
}
.turnstile-status.ready {
  color: var(--sage-deep);
  font-weight: 500;
  font-style: normal;
}
.turnstile-status.error {
  color: #b53f2c;
  font-style: normal;
  font-weight: 500;
}

/* Highlighted nav CTA (Get a Quote button look in the nav bar) */
.nav-links .nav-cta {
  background: var(--burnt);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background .2s, color .2s;
}
.nav-links .nav-cta:hover {
  background: var(--burnt-dark);
  color: var(--cream);
}

/* aria-current state for active nav link */
.nav-links a[aria-current="page"] {
  color: var(--burnt);
  border-bottom: 1px solid currentColor;
}
.nav-links .nav-cta[aria-current="page"] { border-bottom: none; }

/* Home page closing CTA strip */
.home-explore {
  background: var(--cream-2);
}

/* ---------- Menu tiers (on /menus page) ---------- */
.menu-tiers {
  background: var(--cream-2);
  border-top: 1px solid rgba(43,36,24,0.06);
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 50px auto 30px;
}
.tier-card {
  background: var(--cream);
  border: 1px solid rgba(43,36,24,0.08);
  border-top: 3px solid var(--sage-dark);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}
.tier-card.tier-card-featured {
  border-top-color: var(--burnt);
  box-shadow: 0 14px 40px rgba(95,111,84,0.18);
  transform: translateY(-12px);
}
.tier-tag {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burnt);
  margin: 0 0 14px;
}
.tier-price {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin: 0 0 14px;
  line-height: 1;
}
.tier-price span {
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 400;
  font-style: italic;
}
.tier-blurb {
  color: var(--ink-soft);
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.tier-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  font-family: var(--serif);
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
  border-top: 1px solid rgba(95,111,84,0.2);
  padding-top: 18px;
}
.tier-list li { margin: 4px 0; }
.tier-disclaimer {
  text-align: center;
  max-width: 720px;
  margin: 30px auto 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-style: italic;
}
@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; gap: 16px; }
  .tier-card.tier-card-featured { transform: none; }
}

/* ---------- Instagram preview ---------- */
.instagram-section {
  background: var(--cream);
  padding: 100px 0;
}
.instagram-sub {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  max-width: 1080px;
  margin: 0 auto 32px;
}
.ig-tile {
  display: block;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  position: relative;
  overflow: hidden;
}
.ig-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(43, 36, 24, 0);
  transition: background .25s ease;
}
.ig-tile:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(43, 36, 24, 0.25);
  z-index: 2;
}
.ig-tile:hover::after {
  background: rgba(201, 122, 31, 0.15);
}
.ig-follow-btn {
  margin-top: 12px;
  font-weight: 600;
}
@media (max-width: 800px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
}

/* ---------- Discovery call card (in contact section) ---------- */
.discovery-card {
  max-width: 520px;
  margin: 40px auto 0;
  padding: 38px 32px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 12px;
  border-top: 4px solid var(--yellow);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
}

/* Prominent variant — sits at the top of /contact above the quote form */
.discovery-card-top {
  max-width: 640px;
  margin: 10px auto 0;
  padding: 44px 38px;
  background: var(--sage-deep);
  color: var(--cream);
  border-top: 4px solid var(--yellow);
  box-shadow: 0 18px 60px rgba(74, 91, 65, 0.35);
}
.discovery-card-top .discovery-eyebrow {
  color: var(--yellow);
}
.discovery-card-top .discovery-title {
  color: var(--cream);
  font-size: 1.85rem;
}
.discovery-card-top .discovery-sub {
  color: rgba(247, 241, 225, 0.85);
  font-size: 1.05rem;
}
.discovery-card-top .discovery-btn {
  background: var(--burnt);
  color: var(--cream);
  border-color: var(--burnt);
  padding: 16px 40px;
  font-size: 1rem;
}
.discovery-card-top .discovery-btn:hover {
  background: var(--burnt-dark);
  border-color: var(--burnt-dark);
  color: var(--cream);
}

/* "or fill out the form below" divider between the discovery card and the quote form */
.or-divider {
  text-align: center;
  margin: 36px auto 0;
  max-width: 640px;
  position: relative;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1;
}
.or-divider::before,
.or-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: rgba(95, 111, 84, 0.3);
}
.or-divider::before { left: 0; }
.or-divider::after { right: 0; }
.or-divider span {
  background: var(--cream);
  padding: 0 14px;
  position: relative;
  z-index: 1;
}
.discovery-eyebrow {
  font-family: var(--script);
  font-size: 1.6rem;
  color: var(--burnt);
  margin: 0 0 6px;
  line-height: 1;
  transform: rotate(-1.2deg);
  display: inline-block;
}
.discovery-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--sage-deep);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}
.discovery-sub {
  color: var(--ink-soft);
  margin: 0 0 24px;
  font-size: 0.98rem;
  line-height: 1.55;
}
.discovery-btn {
  font-size: 0.95rem;
  padding: 16px 36px;
}

/* ---------- Hero text-only CTA link ---------- */
.btn-text-light {
  align-self: center;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 241, 225, 0.4);
  padding: 4px 2px;
  transition: border-color .2s, color .2s;
}
.btn-text-light:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* ---------- Contact ---------- */
.contact { background: var(--sage); color: var(--cream); padding: 90px 0; }
.contact .section-title { color: var(--cream); }
.contact a { color: var(--cream); border-bottom: 1px solid rgba(247,241,225,0.4); }
.contact a:hover { color: var(--yellow); }
.contact-line { font-size: 1.15rem; margin: 8px 0; }

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 40px 20px;
  background: var(--sage-deep);
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-top: 4px solid var(--sage-dark);
}
.footer-logo {
  display: block;
  margin: 0 auto 16px;
  width: 90px;
  height: auto;
  filter: brightness(0) invert(1) sepia(.5) saturate(3) hue-rotate(345deg);
  opacity: 0.85;
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 90px;            /* leaves space for the music toggle on the right */
  z-index: 55;
  background: var(--burnt);
  color: var(--cream);
  text-align: center;
  padding: 16px 20px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(201, 122, 31, 0.35);
  transition: background .2s, transform .15s;
}
.mobile-cta:hover, .mobile-cta:active {
  background: var(--burnt-dark);
  color: var(--cream);
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .mobile-cta { display: block; }
  /* Hide the floating tagline on mobile so it doesn't compete with the sticky CTA */
  .tagline-pill { display: none; }
}
