/* =========================================================
   WAYLO — Complete Static Site Stylesheet
   waylo.in
   ========================================================= */

/* ── Design Tokens ── */
:root {
  --green-dot:   #4ade80;
  --white:       #ffffff;
  --white-70:    rgba(255,255,255,0.72);
  --white-40:    rgba(255,255,255,0.40);
  --white-20:    rgba(255,255,255,0.20);
  --white-10:    rgba(255,255,255,0.10);
  --black:       #000000;
  --amber:       #c4a55a;
  --cream:       #e8d5b0;
  --cream-muted: rgba(232,213,176,0.6);
  --cream-dim:   rgba(232,213,176,0.4);
  --brown-deep:  #1a1108;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: #000; color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 3px; }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.85s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   NAVBAR
   ============================================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2.5rem;
}
.navbar::after {
  content: ''; position: absolute; bottom: 0; left: 2.5rem; right: 2.5rem;
  height: 1px; background: rgba(255,255,255,0.18);
}
.navbar__logo a { display: flex; align-items: baseline; }
.navbar__logo-text { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 500; color: var(--white); }
.navbar__logo-dot  { color: var(--white); font-size: 1.45rem; font-weight: 500; }
.navbar__links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.navbar__link { font-family: var(--font-sans); font-size: 0.82rem; color: var(--white-70); white-space: nowrap; transition: color var(--transition); }
.navbar__link:hover { color: var(--white); }
.navbar__cta {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 1.25rem; border: 1px solid rgba(255,255,255,0.6);
  border-radius: 100px; font-size: 0.82rem; color: var(--white); transition: all var(--transition);
}
.navbar__cta:hover { background: rgba(255,255,255,0.15); }
.navbar__hamburger { display: none; flex-direction: column; gap: 4px; }
.navbar__hamburger span { display: block; width: 22px; height: 1px; background: var(--white); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,30,20,0.98); backdrop-filter: blur(12px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateX(100%); transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.mobile-menu__link { font-family: var(--font-serif); font-size: 1.8rem; color: var(--cream); }
.mobile-menu__link--cta { font-size: 1rem; padding: 0.7rem 2rem; border: 1px solid var(--amber); border-radius: 100px; color: var(--amber); }
.mobile-menu__close { position: absolute; top: 1.5rem; right: 2rem; font-size: 1.5rem; color: var(--white-70); }

@media (max-width: 960px) { .navbar__links { display: none; } .navbar { padding: 1.2rem 1.5rem; } }
@media (max-width: 600px) { .navbar__cta { display: none; } .navbar__hamburger { display: flex; } }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative; width: 100vw; height: 100vh; height: 100dvh;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(1.1); }
.hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 30%, rgba(0,0,0,0.45) 70%, rgba(0,0,0,0.7) 100%);
}
.hero__content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  text-align: center; padding: 0 1.5rem;
}
.hero__title {
  font-family: var(--font-serif); font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300; color: var(--white); letter-spacing: 0.01em;
  line-height: 1.08; text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero__title-dot { color: var(--green-dot); }
.hero__cta {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.75rem 1.8rem; border: 1px solid rgba(255,255,255,0.65);
  border-radius: 100px; font-size: 0.85rem; color: var(--white);
  background: rgba(255,255,255,0.08); backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}
.hero__cta:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.9); }
.hero__cta-arrow { transition: transform 0.3s ease; }
.hero__cta:hover .hero__cta-arrow { transform: translateX(3px); }
.hero__star {
  position: absolute; bottom: 1.8rem; right: 2rem; z-index: 10;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.5));
  animation: hero-star-pulse 3s ease-in-out infinite;
}
@keyframes hero-star-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1) rotate(0deg); }
  50%       { opacity: 1;   transform: scale(1.1) rotate(15deg); }
}
@media (max-width: 600px) { .hero__title { font-size: clamp(2rem, 10vw, 3rem); } }

/* =============================================================
   BOREDOM
   ============================================================= */
.boredom {
  position: relative; background-color: #132b1e;
  padding: 5rem 2rem; min-height: 50vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.boredom__botanical { position: absolute; pointer-events: none; z-index: 0; opacity: 0.8; }
.boredom__botanical--tl { top: 0; left: 0; width: 350px; height: 350px; transform: translate(-15%,-15%); }
.boredom__botanical--br { bottom: 0; right: 0; width: 450px; height: 450px; transform: translate(10%,10%); }
.boredom__content { position: relative; z-index: 2; text-align: center; max-width: 800px; }
.boredom__heading {
  font-family: 'Playfair Display', serif; font-size: clamp(2.8rem,5.5vw,4.8rem);
  font-weight: 700; line-height: 1.1; color: #e5d8c3; letter-spacing: -0.02em; margin-bottom: 1.2rem;
}
.boredom__subtext { display: flex; flex-direction: column; gap: 0.2rem; }
.boredom__subtext p {
  font-family: 'Playfair Display', serif; font-size: clamp(1.1rem,2.2vw,1.6rem);
  font-weight: 600; color: #e5d8c3; line-height: 1.4;
}
@media (max-width: 768px) { .boredom__botanical--tl { width: 200px; height: 200px; } .boredom__botanical--br { width: 250px; height: 250px; } }

/* =============================================================
   WHAT WE DO
   ============================================================= */
.whatwedo {
  position: relative; background: #0d2a1e;
  padding: 5rem 4rem 4rem; overflow: hidden;
}
.whatwedo__botanical { position: absolute; pointer-events: none; }
.whatwedo__botanical--tr { top: 0; right: 0; width: 300px; height: 300px; }
.whatwedo__botanical--bl { bottom: 0; left: 0; width: 250px; height: 350px; }
.whatwedo__container { max-width: 1200px; margin: 0 auto; }
.whatwedo__top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.whatwedo__circle-logo { width: 100px; height: 100px; margin-bottom: 1.5rem; }
.whatwedo__heading {
  font-family: var(--font-serif); font-size: clamp(3rem,6vw,5rem);
  font-weight: 600; color: var(--cream); letter-spacing: -0.02em; line-height: 1; margin-bottom: 0.8rem;
}
.whatwedo__sublabel {
  font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--amber); margin-bottom: 1.5rem;
}
.whatwedo__body { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.whatwedo__body p { font-size: 0.88rem; line-height: 1.75; color: var(--cream-muted); }
.whatwedo__tagline {
  font-family: var(--font-serif); font-size: 1.1rem; font-style: italic;
  color: var(--amber); line-height: 1.5;
}
.whatwedo__main-photo-wrap { position: relative; }
.whatwedo__offset-border {
  position: absolute; inset: -12px; border: 1px solid rgba(196,165,90,0.3); border-radius: 4px;
  pointer-events: none;
}
.whatwedo__photo-img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.whatwedo__features-section { margin-bottom: 4rem; }
.whatwedo__features-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; color: var(--amber); margin-bottom: 2rem;
}
.whatwedo__features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.whatwedo__feature { display: flex; flex-direction: column; gap: 0.5rem; }
.whatwedo__feature-icon { width: 48px; height: 48px; margin-bottom: 0.5rem; }
.whatwedo__feature-icon svg { width: 100%; height: 100%; }
.whatwedo__feature-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--cream); }
.whatwedo__feature-desc { font-size: 0.8rem; line-height: 1.65; color: var(--cream-muted); }
.whatwedo__promise-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; align-items: center; margin-bottom: 4rem; }
.whatwedo__promise-text { text-align: center; }
.whatwedo__promise-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--cream); margin-bottom: 1rem; }
.whatwedo__promise-text p { font-size: 0.85rem; line-height: 1.75; color: var(--cream-muted); margin-bottom: 0.5rem; }
.whatwedo__promise-photo-wrap { position: relative; }
.whatwedo__closing { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.whatwedo__quote { font-family: var(--font-serif); font-size: clamp(1.8rem,3.5vw,2.8rem); font-style: italic; color: var(--cream); line-height: 1.3; }
.whatwedo__quote-mark { color: var(--amber); font-size: 1.2em; }
.whatwedo__quote-indent { margin-left: 2rem; }
.whatwedo__quote-scribble { width: 100px; margin-top: 1rem; }
.whatwedo__signoff-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.25em; color: var(--amber); margin-bottom: 1rem; }
.whatwedo__signoff-text { font-size: 0.85rem; line-height: 1.75; color: var(--cream-muted); margin-bottom: 1rem; }
.whatwedo__signoff-name { font-family: var(--font-serif); font-size: 1.8rem; font-style: italic; color: var(--cream); }
.whatwedo__heart { color: var(--amber); }
@media (max-width: 1024px) {
  .whatwedo { padding: 4rem 2rem; }
  .whatwedo__top { grid-template-columns: 1fr; }
  .whatwedo__features-grid { grid-template-columns: repeat(2,1fr); }
  .whatwedo__promise-row { grid-template-columns: 1fr; }
  .whatwedo__closing { grid-template-columns: 1fr; }
}

/* =============================================================
   SIGNATURE EXPERIENCES
   ============================================================= */
.sigexp { position: relative; background-color: #0f2e21; padding: 4rem 4rem 3rem; overflow: hidden; }
.sigexp__botanical { position: absolute; pointer-events: none; width: 160px; height: 200px; }
.sigexp__botanical--tl { top: 0; left: 0; }
.sigexp__botanical--tr { top: 0; right: 0; transform: scaleX(-1); }
.sigexp__header { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.sigexp__eyebrow { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; color: var(--amber); display: block; margin-bottom: 0.9rem; }
.sigexp__title { font-family: var(--font-serif); font-size: clamp(2.4rem,5.5vw,4.2rem); font-weight: 700; color: var(--cream); line-height: 1.1; margin-bottom: 1rem; }
.sigexp__subtitle { font-size: 0.88rem; line-height: 1.72; color: var(--cream-muted); margin-bottom: 1.2rem; }
.sigexp__divider { width: 80px; margin: 0 auto; }
.sigexp__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; max-width: 1140px; margin: 0 auto; }
.sigexp__card {
  background: rgba(13,51,38,0.7); border: 1px solid rgba(196,165,90,0.15);
  border-radius: 18px; overflow: hidden; cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.sigexp__card:hover { border-color: rgba(196,165,90,0.35); box-shadow: 0 24px 60px rgba(0,0,0,0.45); transform: translateY(-8px); }
.sigexp__card-img-wrap { position: relative; height: 230px; overflow: hidden; }
.sigexp__card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.sigexp__card:hover .sigexp__card-img { transform: scale(1.06); }
.sigexp__card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,51,38,0.05) 0%, rgba(13,51,38,0.92) 100%); }
.sigexp__card-badge { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 50%; background: var(--amber); display: flex; align-items: center; justify-content: center; color: #0d3326; padding: 9px; box-shadow: 0 4px 16px rgba(196,165,90,0.4); }
.sigexp__card-badge svg { width: 100%; height: 100%; }
.sigexp__card-body { padding: 1.4rem 1.5rem 1.5rem; }
.sigexp__card-title { font-family: var(--font-serif); font-size: 1.65rem; font-weight: 700; color: var(--cream); margin-bottom: 0.35rem; }
.sigexp__card-location { font-size: 0.75rem; color: var(--amber); margin-bottom: 0.9rem; }
.sigexp__card-desc { font-size: 0.8rem; line-height: 1.65; color: var(--cream-muted); margin-bottom: 1.1rem; }
.sigexp__card-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.4rem; padding: 0.9rem 0; border-top: 1px solid rgba(196,165,90,0.1); border-bottom: 1px solid rgba(196,165,90,0.1); margin-bottom: 1.1rem; }
.sigexp__stat { display: flex; flex-direction: column; gap: 0.25rem; }
.sigexp__stat-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cream-dim); }
.sigexp__stat-val { font-size: 0.72rem; color: var(--cream-muted); }
.sigexp__card-footer { display: flex; align-items: center; justify-content: space-between; }
.sigexp__price-label { font-size: 0.68rem; color: var(--cream-dim); margin-bottom: 0.15rem; }
.sigexp__price { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--amber); }
.sigexp__arrow { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(196,165,90,0.35); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--cream); transition: all 0.3s ease; }
.sigexp__arrow:hover { background: var(--amber); border-color: var(--amber); color: #0d3326; }
.sigexp__closing { text-align: center; margin-top: 3rem; font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; color: var(--amber); }
@media (max-width: 1024px) { .sigexp__cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 650px) { .sigexp { padding: 4rem 1.5rem; } .sigexp__cards { grid-template-columns: 1fr; } }

/* =============================================================
   TREK EXPLORE
   ============================================================= */
.texplore {
  position: relative; background-color: #261a0e;
  padding: 4rem; overflow: hidden; min-height: 70vh;
  display: flex; align-items: center;
}
.texplore__mountains { position: absolute; bottom: 0; left: 0; right: 0; width: 100%; pointer-events: none; }
.texplore__botanical { position: absolute; pointer-events: none; width: 120px; height: 200px; }
.texplore__botanical--tl { top: 0; left: 0; }
.texplore__botanical--br { bottom: 0; right: 0; }
.texplore__grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; max-width: 1100px; margin: 0 auto; text-align: center; }
.texplore__col { display: flex; flex-direction: column; align-items: center; }
.texplore__icon { width: 72px; height: 72px; color: rgba(196,165,90,0.65); margin-bottom: 1.6rem; }
.texplore__icon svg { width: 100%; height: 100%; }
.texplore__title { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: var(--cream); margin-bottom: 0.6rem; }
.texplore__ornament { width: 70px; color: rgba(196,165,90,0.4); margin: 0.6rem auto 1.2rem; }
.texplore__desc { font-family: 'Courier New', monospace; font-size: 0.82rem; line-height: 1.78; color: rgba(196,165,90,0.6); max-width: 270px; }
@media (max-width: 900px) { .texplore__grid { grid-template-columns: 1fr; gap: 3rem; } .texplore { padding: 5rem 2rem 6rem; } }

/* =============================================================
   LOCAL WALKS
   ============================================================= */
.localwalks {
  position: relative; background-color: #24190c;
  padding: 4rem 5rem 4.5rem; overflow: hidden; color: #e8d5b0;
}
.localwalks__bg-element { position: absolute; pointer-events: none; z-index: 0; }
.localwalks__bg-tl { top: 0; left: 0; width: 250px; height: 350px; }
.localwalks__bg-br { bottom: -10px; right: 0; width: 350px; height: 450px; }
.localwalks__header { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; max-width: 1000px; margin: 0 auto 5rem; padding: 0 2rem; }
.localwalks__title-container { display: flex; flex-direction: column; gap: 0.5rem; }
.localwalks__title-wrapper { position: relative; display: inline-block; padding: 1.5rem 3.5rem; transform: rotate(-6deg); }
.localwalks__title-oval { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; transform: scale(1.1); }
.localwalks__title { font-family: 'Cabin Sketch', cursive; font-size: clamp(3.5rem,7vw,5.5rem); font-weight: 700; color: #e1cfb0; letter-spacing: 0.05em; line-height: 1; text-transform: uppercase; position: relative; z-index: 2; }
.localwalks__tagline { font-family: 'Courier New', monospace; font-size: 0.85rem; color: rgba(225,207,176,0.65); margin-left: 2rem; transform: rotate(-1deg); }
.localwalks__header-desc { display: flex; align-items: flex-start; gap: 1.5rem; padding-top: 1.5rem; }
.localwalks__swirl { width: 80px; height: 80px; margin-top: -15px; margin-left: -20px; }
.localwalks__header-text { font-family: 'Courier New', monospace; font-size: 0.85rem; line-height: 1.8; color: rgba(225,207,176,0.65); }
.localwalks__rows { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 5rem; max-width: 900px; margin: 0 auto; }
.localwalks__row { display: flex; align-items: center; gap: 3rem; }
.localwalks__row--left { flex-direction: row; }
.localwalks__row--right { flex-direction: row-reverse; }
.localwalks__text-container { display: flex; flex-direction: column; gap: 1rem; max-width: 380px; }
.localwalks__text-header { display: flex; align-items: center; gap: 0.8rem; }
.localwalks__item-icon { width: 32px; height: 32px; color: rgba(180,80,40,0.8); }
.localwalks__walk-title { font-family: var(--font-serif); font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 500; color: #e1cfb0; }
.localwalks__walk-desc { font-family: 'Courier New', monospace; font-size: 0.85rem; line-height: 1.8; color: rgba(225,207,176,0.55); }
.localwalks__photo-wrap { position: relative; flex: 0 0 380px; }
.localwalks__photo { position: relative; width: 100%; aspect-ratio: 1.6/1; background: #e1cfb0; padding: 4px; clip-path: polygon(1% 1%,5% 0%,15% 1%,25% 0%,35% 1%,45% 0%,55% 1%,65% 0%,75% 1%,85% 0%,95% 1%,99% 1%,100% 5%,99% 15%,100% 25%,99% 35%,100% 45%,99% 55%,100% 65%,99% 75%,100% 85%,99% 95%,99% 99%,95% 100%,85% 99%,75% 100%,65% 99%,55% 100%,45% 99%,35% 100%,25% 99%,15% 100%,5% 99%,1% 99%,0% 95%,1% 85%,0% 75%,1% 65%,0% 55%,1% 45%,0% 35%,1% 25%,0% 15%,1% 5%); box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
.localwalks__photo img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.2) contrast(1.1) brightness(0.9); }
.localwalks__row:nth-child(1) .localwalks__photo-wrap { transform: rotate(-1deg); }
.localwalks__row:nth-child(2) .localwalks__photo-wrap { transform: rotate(1deg); }
.localwalks__row:nth-child(3) .localwalks__photo-wrap { transform: rotate(-0.5deg); }
.localwalks__scribble { position: absolute; width: 60px; height: 40px; z-index: 10; pointer-events: none; }
.localwalks__scribble--left  { bottom: -10px; left: -15px; }
.localwalks__scribble--right { top: -10px; right: -15px; }
@media (max-width: 1024px) {
  .localwalks { padding: 4rem 1.5rem; }
  .localwalks__header { flex-direction: column; }
  .localwalks__row { flex-direction: column !important; gap: 2rem; }
  .localwalks__photo-wrap { width: 100%; flex: auto; max-width: 500px; }
}

/* =============================================================
   GROUPS SECTION
   ============================================================= */
.grp { position: relative; background: #0c2218; padding: 5rem 4rem; overflow: hidden; }
.grp__botanical { position: absolute; pointer-events: none; }
.grp__botanical--tl { top: 0; left: 0; width: 160px; height: 350px; }
.grp__top { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: 1200px; margin: 0 auto 4rem; }
.grp__heading { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: var(--cream); line-height: 1.2; margin-bottom: 1rem; }
.grp__gold { color: var(--amber); }
.grp__divider { width: 100px; margin-bottom: 1rem; }
.grp__body { font-size: 0.88rem; line-height: 1.75; color: var(--cream-muted); }
.grp__photo-wrap { position: relative; }
.grp__photo-outline { position: absolute; inset: -8px; width: calc(100% + 16px); height: calc(100% + 16px); pointer-events: none; }
.grp__photo img { width: 100%; height: 400px; object-fit: cover; border-radius: 2px; }
.grp__cols { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; max-width: 1200px; margin: 0 auto 4rem; padding: 3rem 0; border-top: 1px solid rgba(196,165,90,0.1); border-bottom: 1px solid rgba(196,165,90,0.1); }
.grp__col { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 2rem; }
.grp__vdivider { width: 1px; background: rgba(196,165,90,0.2); margin: 1rem 0; }
.grp__col-icon { width: 40px; height: 40px; color: var(--amber); margin-bottom: 1rem; }
.grp__col-icon svg { width: 100%; height: 100%; }
.grp__col-title { font-family: var(--font-serif); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; color: var(--cream); margin-bottom: 1rem; }
.grp__col-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.grp__col-list li { font-size: 0.8rem; color: var(--cream-muted); line-height: 1.5; }
.grp__polaroids-container { max-width: 1200px; margin: 0 auto 3rem; position: relative; }
.grp__polaroids { display: flex; gap: 1.5rem; overflow-x: auto; padding: 2rem 0.5rem; scrollbar-width: none; }
.grp__polaroids::-webkit-scrollbar { display: none; }
.grp__polaroid { flex: 0 0 160px; background: #f5f0e8; padding: 10px 10px 30px; transform: rotate(var(--rot)); transition: transform 0.3s ease; position: relative; box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.grp__polaroid:hover { transform: rotate(0deg) scale(1.05); z-index: 5; }
.grp__tape { position: absolute; top: -8px; left: 50%; transform: translateX(-50%); width: 40px; height: 14px; background: rgba(196,165,90,0.4); border-radius: 2px; }
.grp__polaroid-img { width: 100%; aspect-ratio: 1; overflow: hidden; margin-bottom: 8px; }
.grp__polaroid-img img { width: 100%; height: 100%; object-fit: cover; }
.grp__polaroid-caption { font-family: 'Caveat', cursive; font-size: 0.8rem; color: #3e3020; text-align: center; line-height: 1.3; }
.grp__footer { max-width: 1200px; margin: 0 auto; text-align: center; }
.grp__quote-wrap { margin-bottom: 2rem; }
.grp__qmark { font-family: var(--font-serif); font-size: 2rem; color: var(--amber); }
.grp__quote-text { font-family: var(--font-serif); font-size: clamp(1.2rem,2.5vw,1.8rem); font-style: italic; color: var(--cream); line-height: 1.4; display: inline; }
.grp__footer-divider { width: 60px; height: 1px; background: rgba(196,165,90,0.3); margin: 2rem auto; }
.grp__signoff-name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--cream); }
.grp__signoff-sub { font-size: 0.8rem; color: var(--cream-muted); }
@media (max-width: 900px) {
  .grp { padding: 4rem 1.5rem; }
  .grp__top { grid-template-columns: 1fr; }
  .grp__cols { grid-template-columns: 1fr; }
  .grp__vdivider { width: 60px; height: 1px; margin: 0 auto; }
}

/* =============================================================
   GALLERY
   ============================================================= */
.gallery { position: relative; background-color: #0e2b1f; padding: 4rem 3rem 3rem; overflow: hidden; }
.gallery__topo { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.gallery__header { position: relative; z-index: 2; margin-bottom: 2.5rem; max-width: 1140px; margin-left: auto; margin-right: auto; }
.gallery__eyebrow-wrap { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.gallery__eyebrow { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; color: var(--amber); }
.gallery__eyebrow-line { height: 1px; width: 60px; background: rgba(196,165,90,0.5); }
.gallery__title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem,5vw,4.2rem); font-weight: 600; color: #f2ede5; margin-bottom: 0.8rem; }
.gallery__subtitle { font-size: 0.85rem; color: rgba(242,237,229,0.8); }
.gallery__card { position: relative; z-index: 2; background-color: #f2ede5; border-radius: 12px; padding: 2rem; max-width: 1140px; margin: 0 auto; }
.gallery__grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 1.5rem; }
.gallery__col-left, .gallery__col-right { display: flex; flex-direction: column; gap: 1.5rem; }
.gallery__row-mid { display: grid; grid-template-columns: 1fr 0.8fr 1.15fr; gap: 1rem; align-items: end; }
.gallery__item { display: flex; flex-direction: column; }
.gallery__img-wrap { overflow: hidden; border-radius: 8px; margin-bottom: 0.75rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.gallery__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: contrast(1.05) saturate(1.1); }
.gallery__img-wrap:hover img { transform: scale(1.03); }
.gallery__img-wrap--tall { height: 420px; }
.gallery__img-wrap--wide { height: 260px; }
.gallery__img-wrap--hero { height: 220px; }
.gallery__img-wrap--sq   { height: 140px; }
.gallery__img-wrap--vert { height: 240px; }
.gallery__caption { font-weight: 600; font-size: 0.75rem; color: #3e3831; margin-bottom: 0.35rem; }
.gallery__caption-line { width: 24px; height: 1.5px; background-color: #d1985f; border-radius: 1px; }
@media (max-width: 900px) { .gallery__grid { grid-template-columns: 1fr; } .gallery__img-wrap--tall { height: 300px; } }
@media (max-width: 600px) { .gallery__row-mid { grid-template-columns: 1fr; } .gallery { padding: 4rem 1.5rem; } .gallery__card { padding: 1.5rem; } }

/* =============================================================
   CONTACT
   ============================================================= */
.contact {
  position: relative; background: #0d2218;
  padding: 5rem 4rem; overflow: hidden;
}
.contact__botanical-left { position: absolute; left: 0; top: 0; width: 160px; height: 300px; pointer-events: none; }
.contact__inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 1rem; display: block; }
.contact__title { font-family: var(--font-serif); font-size: clamp(2.5rem,5vw,4rem); font-weight: 600; color: var(--cream); line-height: 1.1; margin-bottom: 1.2rem; }
.contact__body { font-size: 0.88rem; line-height: 1.75; color: var(--cream-muted); margin-bottom: 2rem; }
.contact__details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact__detail { display: flex; align-items: center; gap: 0.8rem; font-size: 0.88rem; color: var(--cream-muted); }
.contact__detail-icon { font-size: 1rem; }
.contact__socials { display: flex; gap: 1rem; }
.contact__social { font-size: 0.78rem; color: var(--cream-muted); padding: 0.4rem 1rem; border: 1px solid rgba(196,165,90,0.3); border-radius: 100px; transition: all 0.3s ease; }
.contact__social:hover { color: var(--amber); border-color: var(--amber); }
.contact__form-wrapper { background: rgba(255,255,255,0.03); border: 1px solid rgba(196,165,90,0.12); border-radius: 16px; padding: 2.5rem; }
.contact__form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact__field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact__field label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.05em; color: var(--cream-muted); }
.contact__field input,
.contact__field select,
.contact__field textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(196,165,90,0.2);
  border-radius: 8px; padding: 0.75rem 1rem; color: var(--cream);
  font-family: var(--font-sans); font-size: 0.88rem; transition: border-color 0.3s ease; outline: none;
}
.contact__field input::placeholder, .contact__field textarea::placeholder { color: rgba(232,213,176,0.3); }
.contact__field input:focus, .contact__field select:focus, .contact__field textarea:focus { border-color: rgba(196,165,90,0.5); }
.contact__field select option { background: #0d2218; }
.contact__submit {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2rem; background: var(--amber); color: #0d2218;
  border-radius: 100px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s ease; border: none;
}
.contact__submit:hover { background: #d4b56a; transform: translateY(-2px); }
.contact__success { text-align: center; padding: 3rem; }
.contact__success-icon { font-size: 2.5rem; color: var(--amber); margin-bottom: 1rem; }
.contact__success h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--cream); margin-bottom: 0.8rem; }
.contact__success p { color: var(--cream-muted); font-size: 0.88rem; }
@media (max-width: 900px) { .contact { padding: 4rem 1.5rem; } .contact__inner { grid-template-columns: 1fr; } .contact__form-row { grid-template-columns: 1fr; } }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: var(--brown-deep); padding: 5rem 4rem 3rem; position: relative; overflow: hidden; border-top: 1px solid rgba(196,165,90,0.1); }
.footer__botanical-top { position: absolute; top: 0; left: 0; right: 0; width: 100%; pointer-events: none; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 4rem; }
.footer__logo { display: flex; align-items: baseline; gap: 1px; margin-bottom: 1rem; }
.footer__logo-text { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--cream); }
.footer__logo-dot { font-size: 2.4rem; font-weight: 900; color: var(--amber); line-height: 1; }
.footer__tagline { font-style: italic; font-size: 1rem; color: var(--amber); margin-bottom: 0.8rem; }
.footer__desc { font-size: 0.82rem; line-height: 1.7; color: var(--cream-muted); margin-bottom: 1.5rem; max-width: 280px; }
.footer__certifications { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer__cert { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); padding: 0.3rem 0.7rem; border: 1px solid rgba(196,165,90,0.3); border-radius: 100px; }
.footer__col-heading { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.2rem; }
.footer__col-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__link { font-size: 0.84rem; color: var(--cream-muted); transition: color 0.3s ease; }
.footer__link:hover { color: var(--cream); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(196,165,90,0.1); }
.footer__copy { font-size: 0.78rem; color: var(--cream-dim); }
.footer__sign { font-style: italic; font-size: 0.85rem; color: var(--cream-dim); text-align: center; }
.footer__sign-name { font-style: italic; font-size: 1.3rem; color: var(--cream-muted); }
.amber { color: var(--amber); }
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer { padding: 4rem 1.5rem 2rem; } .footer__inner { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; text-align: center; } }
