/* Base reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  --nav-height: 56px; /* tweak as needed */
  --scroll-progress: 0; /* 0–100, updated via JS */

  /* Backgrounds */
  --bg: #f3efe9;         /* Stone */
  --bg-soft: #fdfbf8;    /* Sand-white */
  --bg-muted: #e7dfd3;   /* Clay beige */

  /* Text */
  --ink: #2a2724;        /* Deep brown-neutral */
  --ink-muted: #6a625c;

  /* Accents */
  --accent: #b19e7e;     /* Your logo taupe */
  --accent-clay: #c9a882;
  --accent-soft: #d8c3a8;

  /* Deep contrast */
  --accent-dark: #3a3228; /* Espresso */

  /* Borders */
  --border-subtle: #d2c6b7;

    /* Complementary highlight colors */
  --hl-sage: #b7c4b5;        /* soft sage */
  --hl-sage-dark: #6f7f6e;   /* eucalyptus */

  --hl-blush: #d7b8aa;       /* muted blush */
  --hl-blush-dark: #b48c7e;  /* clay rose */

  --hl-stone: #9aa7b8;       /* stone blue */
  --hl-stone-dark: #5d6673;  /* deep steel */
  /*
  --bg: #faf9f7;           
  --bg-soft: #ffffff;       
  --bg-muted: #ecebe8;      
  --ink: #222222;          
  --ink-muted: #6a6a6a;     
  --border-subtle: #dcd9d2; 
  --accent: #b19e7e;       
  --accent-soft: #d6c9b6;   
  --accent-dark: #1f1f1f;   
  --accent-light: #f3e2cf;  
  */
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.6;
  padding-top: var(--nav-height);
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo-mark {
  height: 32px;              /* adjust as needed */
  width: auto;
  display: block;
}

/* Apply vertical padding ONLY to containers inside sections */
.section > .container {
  padding-top: 4rem;          /* space from top of section */
  padding-bottom: 4rem;       /* space from bottom of section */
}

.section-title span {
  color: var(--hl-sage);
}

/* Gallery */

/* Allow gallery to break out of container */
.gallery-section {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Full-bleed wrapper */
.gallery-track-wrapper {
  width: 100%;
  overflow-x: hidden;
  margin-top: 1rem;
}

.gallery-fullwrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  /* spacing above/below */
  padding: 0.5rem 0 1rem;
}

/* Make track full width and keep smooth scrolling */
.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

/* Gallery header */
.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Controls */
.gallery-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-soft);
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.1s ease,
    box-shadow 0.15s ease;
}

.gallery-btn:hover {
  background-color: var(--accent-soft);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(58, 50, 40, 0.15);
}

/* Horizontal carousel track */
.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Hide default scrollbar in a subtle way (optional) */
.gallery-track::-webkit-scrollbar {
  height: 6px;
}
.gallery-track::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
}
.gallery-track::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 999px;
}

/* Individual items */
.gallery-item {
  flex: 0 0 230px; /* card width; adjust as needed */
  scroll-snap-align: center;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-soft);
  box-shadow: 0 12px 28px rgba(58, 50, 40, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--hl-sage, var(--ink-muted)); /* falls back if highlight not set */
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.section-muted {
  background-color: var(--bg-muted);
}

.section-accent {
  background-color: var(--accent-dark);
  color: var(--bg-soft);
}

.section h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 1rem;
  color: var(--hl-blush-dark);
}

.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 3rem;
  height: 3px;
  background-color: var(--hl-sage-dark);
  border-radius: 999px;
}

/* How It Works layout */
.how-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); /* text wider than image */
  gap: 2.5rem;
  align-items: start;
}

/* Left column text */
.how-text .section-title {
  margin-bottom: 1rem;
}

.how-steps {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  list-style: decimal;
  color: var(--ink);
}

.how-steps li + li {
  margin-top: 0.6rem;
}

/* Right column image/card */
.how-media {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.how-image-frame {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-soft);
  box-shadow: 0 18px 40px rgba(58, 50, 40, 0.14);
  aspect-ratio: 4 / 5; /* tall editorial look */
}

.how-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-caption {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40; /* below floating logo, which we'll set higher */
  padding: 0.35rem 0;
  background-color: transparent;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
      background-color 0.3s ease,
      backdrop-filter 0.3s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease;
}

body.scrolled .site-header {
  background-color: rgba(243, 239, 233, 0.55); /* lighter + glassy */
  backdrop-filter: blur(14px);                /* enhances transparency */
  border-bottom-color: rgba(58, 50, 40, 0.08);
  box-shadow: 0 6px 20px rgba(358, 50, 40, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between; /* brand on left, nav on right */
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5 rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--accent-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;   /* pushes nav to the far right */
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.nav a:hover {
  background-color: var(--accent-soft);
  border-color: rgba(0, 0, 0, 0.02);
}
.nav-cta {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border-color: var(--accent);
  color: var(--accent-dark);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 0.75rem;
  transform: translateZ(0);
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition:
    background-color 0.2s ease,
    transform 0.5s ease;
}

.nav-icon {
  width: 25x;
  height: 25px;
  opacity: 0.85;
  /* transition: opacity 0.2s ease;*/
}

.nav-icon__ig {
  width: 25x;
  height: 25px;
  opacity: 0.85;
  /* transition: opacity 0.2s ease;*/
}

.nav-social a:hover .nav-icon {
  opacity: 1;
  fill:#074ee9;
}

.nav-social a:hover .nav-icon__ig {
  opacity: 1;
fill:#7638FA;
}

.nav path {
  color:transparent;
}

.nav-social a:hover {
  background-color: transparent;
}

/* Optional — soften on scroll */
body.scrolled .social-link {
  color: var(--ink-muted);
}

/* Hero */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: radial-gradient(circle at top left,  var(--bg), var(--bg-muted));
}

/* Extra breathing room inside hero container */
.hero > .container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

/* Hero text */
.hero-text h1 {
  font-size: clamp(2.2rem, 3.2vw, 2.9rem);
  line-height: 1.05;
  margin: 0.9rem 0 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {

    font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);

  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Small logo pill inside hero */
.hero-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background-color: rgba(39, 36, 29, 0.9); /* dark so your light logo pops */
  color: var(--bg-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-logo-mark {
  height: 20px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.4));
}

/* RIGHT: Hero media */
.hero-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.hero-image-frame {
  position: relative;
  border-radius: 1.0rem;
  overflow: hidden;
  aspect-ratio: 4/6;
  display: inline-block;
  z-index: 5;

}

/* organic sage blob */
.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: -25px;                 /* size of glow offset */
  border-radius: 24px;          /* match your image radius + offset */
  background: var(--hl-sage);   /* your sage highlight */
  filter: blur(38px);           /* big soft glow */
  opacity: 0.2;                /* visible but not aggressive */
  z-index: -1;  
  aspect-ratio: 4/5;
}

/* Framed image 
.hero-image-frame {
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-soft);
  box-shadow: 0 24px 60px rgba(39, 36, 29, 0.18);
  aspect-ratio: 4 / 5; 
}*/

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Availability card under/over image */
.hero-availability-card {
  align-self: flex-start;
  background-color: var(--accent-dark);
  color: var(--bg-soft);
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 260px;
  box-shadow: 0 16px 40px rgba(39, 36, 29, 0.35);
}

.hero-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-soft);
}

.hero-card-date {
  font-size: 1.2rem;
  font-weight: 500;
}

.hero-card-text {
  font-size: 0.85rem;
}

.hero-card-btn {
  margin-top: 0.35rem;
  width: 100%;
}

/* Make hero stack nicely on mobile */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1; /* show image above text on mobile if you like; remove this line if not */
  }

  .hero {
    padding-top: 2.5rem;
    z-index: 1;
  }

  .how-inner {
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  }
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-item {
    flex: 0 0 70%; /* wider cards on mobile */
  }

  .about-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
  
  .contact-pill {
    display: none;
  }

}

/* Hero card */
.hero-card {
  background-color: var(--accent-dark);
  color: var(--bg-soft);
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
}

.hero-card-date {
  font-size: 1.5rem;
  font-weight: 500;
}

.hero-card-text {
  font-size: 0.9rem;
  color: #e5e7eb;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-soft);
  border-color: var(--accent);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(58, 50, 40, 0.25);
  background-color: var(--accent-clay);
  border-color: var(--accent-clay);
}

.btn-secondary {
  background-color: #f9fafb;
  color: #f9fafb;
  border-color: #f9fafb;
}

.section-accent .btn-primary {
  background-color: var(--bg-soft);
  color: var(--accent-dark);
  border-color: transparent;
}

.section-accent .btn-primary:hover {
  background-color: var(--accent-soft);
}

.section-accent .btn-secondary {
  background-color: #f9fafb;
  color: #111827;
  border-color: transparent;
}

.section-accent .btn-secondary:hover {
  background-color: #e5e7eb;
}

.btn-ghost {
  background-color: transparent;
  color: var(--accent-dark);
  border-color: var(--border-subtle);
}

.btn-ghost:hover {
  background-color: var(--bg-muted);
  border-color: var(--accent-soft);
}

.full-width {
  width: 100%;
}

/* Typography sections */
h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.section-intro {
  margin-bottom: 1.5rem;
  color: var(--ink-muted);
}

/* Layout blocks */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: var(--accent-dark);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
}

.section-muted .card {
  background-color: var(--hl-sage);
    border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.price {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

/* Steps list */
.steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.steps li h3 {
  margin-bottom: 0.25rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background-color: var(--bg-soft);
  border-radius: 1rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--border-subtle);
}

.section-muted .faq-item {
  background-color: var(--bg);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}

.contact-form {
  background-color: var(--bg-soft);           /* sand-white for contrast */
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border-subtle);     /* soft sand border */
  box-shadow: 0 8px 24px rgba(58, 50, 40, 0.08); /* soft espresso shadow */
  max-width: 500px;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-subtle);
  background-color: #faf7f3;                  /* light clay-tinted field */
  font-size: 0.95rem;
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);               /* #b19e7e focus ring */
  background-color: #f7f3ed;
}

/* Button inside dark or light contexts adjusts automatically */
.contact-form .btn-primary {
  width: 100%;
  margin-top: 1rem;
    border-color: var(--accent);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6b7280;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-info a {
  color: #e5e7eb;
}

/* Fine print */
.fine-print {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.section-accent .fine-print {
  color: var(--accent-soft);
}

/* Footer */
.site-footer {

  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}

.footer-note {
  font-size: 0.8rem;
}

/* Links */
a {
  color: inherit;
}

/* Responsiveness */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /*.nav {
    flex-wrap: wrap;
    gap: 0.75rem;
  }*/

  .hero-inner,
  .two-column,
  .card-grid,
  .steps,
  .faq-grid,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  /*.hero {
    padding-top: 3.5rem;
  }*/

  .hero-card {
    order: -1;
  }
}

/* Floating logo that sits above the hero */
.floating-logo {
  position: fixed;
  top: 12px;           /* distance from top */
  left: 24px;          /* distance from left */
  z-index: 60;         /* above header/nav */
  pointer-events: none;
  opacity: 0;
transform: translateX(0) scale(1);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;

}

.floating-logo-mark {
  height: 320px;        /* increase to desired size */
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* When the page is ready (on load), gently fade + lift + scale in */
body.logo-ready .floating-logo {
  opacity: 1;
}

/* Hide / slide logo when page is scrolled */
body.scrolled .floating-logo {
  opacity: 0;
transform: translateX(-20px) translateY(-4px) scale(0.8);
}

.nav-brand {
  font-size: 0.78rem;             
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);               /* or var(--accent-dark) if you prefer */
  opacity: 0.85;
  white-space: nowrap;
}

/* Back to Top floating button with scroll progress ring */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 90;

  /* Inner circle base */
  background-color: var(--accent-dark);
  color: var(--bg-soft);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);

  /* Fade in/out & slide */
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

/* Progress ring wrapper using ::before */
.back-to-top::before {
  content: "";
  position: absolute;
  inset: -4px; /* size of the outer ring around button */
  border-radius: inherit;

  /* Background ring using scroll progress as a conic-gradient */
  background:
    conic-gradient(
      var(--accent) calc(var(--scroll-progress) * 1%),
      rgba(0, 0, 0, 0.08) 0
    );

  /* Knock out the center so inner circle shows through */
  -webkit-mask:
    radial-gradient(farthest-side, transparent calc(100% - 4px), #000 0);
  mask:
    radial-gradient(farthest-side, transparent calc(100% - 4px), #000 0);
}

/* Show only after scrolling a bit (body.scrolled comes from your JS) */
body.scrolled #backToTop {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: floatPulse 3s ease-in-out infinite;
}

/* Hover lift */
.back-to-top:hover {
  background-color: var(--accent);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

@keyframes floatPulse {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}


/* RESPONSIVE TUNING: slightly tighter on small screens */
@media (max-width: 600px) {
  .section > .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero > .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Gradient section divider */
.section {
  position: relative;
}

.section:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 90%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    to right,
    rgba(58, 50, 40, 0) 0%,     /* transparent espresso */
    rgba(58, 50, 40, 0.12) 50%, /* subtle middle */
    rgba(58, 50, 40, 0) 100%
  );
}

/* About layout: text + owner profile */
.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); /* text a bit wider */
  gap: 2.5rem;
  align-items: start;
}

.about-subheading {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

/* Owner block */
.about-owner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 2rem;
}

/* Match the visual style of your other image cards (like How It Works) */
.owner-photo-frame {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-soft);
  box-shadow: 0 18px 40px rgba(58, 50, 40, 0.14);
  aspect-ratio: 4 / 5; /* portrait */
}

.owner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-name {
  position: relative;
  display: inline-block;
  margin-bottom: 0.1rem;
}

.owner-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--hl-blush, var(--accent));
  opacity: 0.85;
}

.owner-role {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}

.owner-bio {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* ========== CONTACT PILL ========== */

.contact-pill {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translate(-140%, -50%); /* hidden off-screen by default */
  z-index: 80;
  pointer-events: none; /* becomes active when visible */
  transition:
    transform 0.4s ease-out,
    opacity 0.3s ease-out;
  opacity: 0;
}

/*When body has .pill-visible, slide in and enable clicks */
body.pill-visible .contact-pill {
  transform: translate(0, -50%);
  opacity: 1;
  pointer-events: auto;
}


/* After click / dismissed */
.contact-pill.is-hidden {
  opacity: 0;
  transform: translate(-130%, -50%);
  pointer-events: none;
}

/* When visible: slide in and enable interaction */
.contact-pill.is-visible {
  transform: translate(0, -50%);
  opacity: 1;
  pointer-events: auto;
  animation: floatPulse 3s ease-in-out infinite;
}

.contact-pill-btn {
  width: 220px;
  height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px; /* pill but still rectangular-ish */
  padding: 0 0.9rem;

  background-color: var(--accent);  
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  box-shadow: 0 10px 24px rgba(58, 50, 40, 0.18);
  cursor: pointer;

  transition:
    transform 0.1s ease,
    box-shadow 0.15s ease,
    background 0.2s ease;
}

.contact-pill-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(58, 50, 40, 0.25);
  background: linear-gradient(
    135deg,
    var(--accent-soft),
    var(--accent),
    var(--accent-clay)
  );
}

.contact-pill-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.contact-pill-text {
  white-space: nowrap;
}

/* price list */
/* Pricing block inside service cards */
.service-pricing {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
}

.service-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.service-price-row + .service-price-row {
  margin-top: 0.25rem;
}

.service-price-label {
  font-weight: 500;
  color: var(--ink-muted);
}

.service-price-amount {
  font-weight: 600;
  color: var(--accent-dark);
}

/* ===== CONTACT SECTION – IMAGES + DETAILS ===== */

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.0fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
}

.contact-section{
  background-color: var(--accent-dark);
    color: var(--bg-soft);
}

/* Left: vertical image collage */
.contact-gallery {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.9rem;
}

.contact-photo {
  max-width: 180px;
  width: 100%;
  margin: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(210, 198, 183, 0.7); /* uses your border tone */
  background-color: #2b2620; /* soft contrast if image doesn’t fill */
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Right: text & events */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


.contact-details .section-title {
  margin-bottom: 0.5rem;
}

.contact-section h3 {
  display: inline-block;
  position: relative;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent-soft);
}

.contact-section h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 48px;                /* matches your section titles */
  height: 3px;
  background-color: var(--accent); /* or switch to a highlight color */
  border-radius: 2px;
  opacity: 0.85;
}

.contact-events ul {
  list-style: none;
  padding: 0;
  margin: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-intro {
  margin-bottom: 0.6rem;
  color: var(--accent-clay);
}

.contact-events li {
  font-size: 0.95rem;
}

.contact-events li strong {
  display: block;
  font-weight: 600;
  color: var(--bg-soft);
}

.contact-events li span {
  display: block;
  color: rgba(253, 251, 248, 0.85);
}

.contact-booking p {
  font-size: 0.95rem;
  color: rgba(253, 251, 248, 0.9);
}

.contact-method a {
  color: var(--accent-soft);
  text-decoration: none;
}

.contact-method a:hover {
  text-decoration: underline;
}

/* Use your existing fine-print style but adjust color for dark bg if needed */
.section-accent .fine-print {
  color: rgba(253, 251, 248, 0.75);
}

/* Responsive: stack columns on mobile */
@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .contact-gallery {
    grid-template-rows: none;
    grid-auto-rows: 200px;
  }
}

/* ========= HOLIDAY NAV LIGHTS ========= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  /* keep your existing padding / bg / shadows here */
  overflow: visible; /* ensure lights can hang below */
}

/* Wrapper that spans the full nav width */
.nav-lights {
  position: absolute;
  left: 0;
  bottom: -14px; /* hangs slightly below the nav */
  width: 100%;
  pointer-events: none; /* lights never block clicks */
}

/* String aligns to your container width */
.nav-lights-string {
  max-width: 960px;              /* match your .container max-width */
  margin: 0 auto;
  padding: 0 1.5rem;             /* match .container horizontal padding */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

/* Little wire above the bulbs */
.nav-lights-string::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  border-top: 2px solid rgba(58, 50, 40, 0.45); /* espresso wire */
  border-radius: 999px;
}

/* Each bulb */
.nav-light {
  position: relative;
  width: 11px;
  height: 18px;
  border-radius: 50% 50% 45% 45%; /* more rounded at bottom */
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  transform-origin: top center;
  animation: lightSwing 3.5s ease-in-out infinite alternate;
}

/* Bulb cap + wire connection */
.nav-light::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 10px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 3px;
  background-color: #3a3228; /* cap color (espresso) */
}

/* === Bulb colors with glow === */
.bulb-red {
  background-color: #f15b5b;
  box-shadow: 0 0 8px rgba(241, 91, 91, 0.7);
}

.bulb-green {
  background-color: #5cbf7a;
  box-shadow: 0 0 8px rgba(92, 191, 122, 0.7);
}

.bulb-gold {
  background-color: #f6d47a;
  box-shadow: 0 0 8px rgba(246, 212, 122, 0.7);
}

/* Soft swinging motion */
@keyframes lightSwing {
  0% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(1px) rotate(1deg);
  }
  100% {
    transform: translateY(0) rotate(2deg);
  }
}

/* Optional: subtle twinkle by varying opacity per bulb */
.bulb-red {
  animation: lightSwing 3.5s ease-in-out infinite alternate,
             twinkle 2.8s ease-in-out infinite alternate;
}

.bulb-green {
  animation: lightSwing 3.8s ease-in-out infinite alternate,
             twinkle 3.1s ease-in-out infinite alternate;
}

.bulb-gold {
  animation: lightSwing 3.2s ease-in-out infinite alternate,
             twinkle 2.5s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.9; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}