/* ============================================================
   SKYVIEW RECEPTION — SHARED STYLESHEET
   Used by index.html, about.html, functions.html,
   testimonials.html, gallery.html, contact.html
============================================================ */

/* ============================================================
   TOKENS
============================================================ */
:root {
  --ink:        #0E1922;
  --ink-soft:   #18242F;
  --cream:      #F4ECDF;
  --cream-soft: #FAF4E9;
  --paper:      #FFFFFF;
  --brass:      #B5894C;
  --brass-deep: #8B6535;
  --brass-soft: #D5B47C;
  --line:       rgba(14,25,34,0.12);
  --line-dark:  rgba(244,236,223,0.16);
  --mute:       #5C6772;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;

  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --subnav-h: 64px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ============================================================
   RESET / BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--subnav-h) + 12px);
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

.kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
}

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.6rem;
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--brass);
  background: var(--brass);
  color: var(--cream-soft);
  transition: background .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: transparent; color: var(--brass); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(244,236,223,0.45); }
.btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-dark { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.btn-dark:hover { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-sm { padding: .65rem 1.3rem; font-size: .68rem; }

.container { max-width: var(--max); margin: 0 auto; }
section.block { padding: clamp(5rem, 10vw, 8rem) var(--gutter); }

/* ============================================================
   HERO  —  full version (homepage)
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid; place-items: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #1a2b3a 0%, #0e1922 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 110%, rgba(181,137,76,0.30), transparent 60%),
    linear-gradient(180deg, rgba(14,25,34,.55) 0%, rgba(14,25,34,.30) 35%, rgba(14,25,34,.85) 100%);
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-header {
  position: absolute;
  inset: 0 0 auto 0;
  padding: 1.5rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  z-index: 5;
}
.brand { display: flex; align-items: baseline; gap: .55rem; color: var(--cream); }
.brand .mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .22em;
  font-weight: 500;
  text-transform: uppercase;
}
.brand .sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: .8;
}
.hero-nav { display: flex; gap: 1.75rem; align-items: center; }
.hero-nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.hero-nav li { list-style: none; }
.hero-nav a {
  position: relative;
  color: var(--cream);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .25rem 0;
  text-decoration: none;
}
.hero-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px;
  height: 1px; background: var(--brass);
  transition: right .35s var(--ease);
}
.hero-nav a:hover::after,
.hero-nav a[aria-current="page"]::after { right: 0; }
.hero-nav a[aria-current="page"] { color: var(--brass-soft); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(244,236,223,0.4);
  border-radius: 50%;
  color: var(--cream);
  align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.hero-inner {
  padding: 6rem var(--gutter) 6rem;
  max-width: 1100px;
}
.hero .kicker {
  display: inline-block;
  color: var(--brass-soft);
  margin-bottom: 2rem;
  opacity: 0;
  animation: rise .9s var(--ease) .25s forwards;
}
.hero h1 {
  font-size: clamp(3rem, 9.5vw, 8.5rem);
  letter-spacing: .03em;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0;
  animation: rise 1.1s var(--ease) .5s forwards;
  text-wrap: balance;
}
.hero h1 .em {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: 0.42em;
  letter-spacing: .12em;
  margin-top: .35em;
  color: var(--brass-soft);
  text-transform: lowercase;
}
.hero p.lede {
  margin: 2rem auto 0;
  max-width: 540px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  opacity: 0;
  animation: rise 1.1s var(--ease) .75s forwards;
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: rise 1.1s var(--ease) 1s forwards;
}
.scroll-hint {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--cream); opacity: .65;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 36px; background: var(--cream);
  animation: bob 2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes bob {
  0%, 100% { transform: scaleY(.4); opacity: .3; }
  50%      { transform: scaleY(1);  opacity: 1; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PAGE HERO  —  smaller hero for inner pages
============================================================ */
.page-hero {
  position: relative;
  min-height: 60vh;
  min-height: 60dvh;
  display: grid; place-items: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #1a2b3a 0%, #0e1922 100%);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.03);
  animation: heroZoom 16s ease-out forwards;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 110%, rgba(181,137,76,0.25), transparent 60%),
    linear-gradient(180deg, rgba(14,25,34,.55) 0%, rgba(14,25,34,.40) 50%, rgba(14,25,34,.85) 100%);
}
.page-hero-inner {
  padding: 7rem var(--gutter) 5rem;
  max-width: 900px;
}
.page-hero .kicker {
  display: inline-block;
  color: var(--brass-soft);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: rise .9s var(--ease) .25s forwards;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  letter-spacing: .015em;
  font-weight: 300;
  line-height: 1.05;
  opacity: 0;
  animation: rise 1.1s var(--ease) .45s forwards;
  text-wrap: balance;
}
.page-hero h1 em { font-style: italic; color: var(--brass-soft); font-weight: 400; }
.page-hero p.lede {
  margin: 1.75rem auto 0;
  max-width: 520px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(244,236,223,0.88);
  opacity: 0;
  animation: rise 1.1s var(--ease) .65s forwards;
}

/* ============================================================
   STICKY SUB-NAV
============================================================ */
.subnav {
  position: sticky; top: 0;
  z-index: 40;
  background: rgba(250, 244, 233, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
}
.subnav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--subnav-h);
}
.subnav-brand {
  display: flex; align-items: baseline; gap: .5rem;
  color: var(--ink);
}
.subnav-brand .mark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .22em;
  font-weight: 500;
  text-transform: uppercase;
}
.subnav-brand .sub {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
}
.subnav-links {
  display: flex; gap: 2rem;
  flex: 1;
  justify-content: center;
}
.subnav-links a {
  display: inline-block;
  padding: 1.25rem 0;
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.subnav-links a:hover { color: var(--brass-deep); border-bottom-color: var(--brass); }
.subnav-links a[aria-current="page"] {
  color: var(--brass-deep);
  border-bottom-color: var(--brass);
}

/* ============================================================
   MOBILE MENU OVERLAY
============================================================ */
.menu-panel {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--cream);
  z-index: 1000;
  padding: 5rem var(--gutter) 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
  display: flex; flex-direction: column; gap: 2rem;
}
.menu-panel.is-open { opacity: 1; visibility: visible; }
.menu-close {
  position: absolute; top: 1.5rem; right: var(--gutter);
  width: 44px; height: 44px;
  border: 1px solid rgba(244,236,223,0.35);
  border-radius: 50%;
  color: var(--cream);
  font-size: 1.1rem;
  display: grid; place-items: center;
}
.menu-panel nav ul { display: flex; flex-direction: column; gap: 1.25rem; }
.menu-panel nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
}
.menu-panel nav a:hover,
.menu-panel nav a[aria-current="page"] { color: var(--brass-soft); }
.menu-panel .menu-foot {
  margin-top: auto;
  font-size: .85rem;
  color: rgba(244,236,223,0.7);
  display: flex; flex-direction: column; gap: .4rem;
}
.menu-panel .menu-foot a { color: var(--brass-soft); }

/* ============================================================
   INTRO  (two-column with image)
============================================================ */
.intro { background: var(--cream); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.intro-grid.reverse { direction: rtl; }
.intro-grid.reverse > * { direction: ltr; }
.intro-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom-right-radius: 30%;
  background-color: #2a3a48;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px -25px rgba(14,25,34,0.35);
}
.intro-image.shape-tl { border-bottom-right-radius: 0; border-top-left-radius: 30%; }
.intro-image::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,25,34,.45));
}
.intro-image .stamp {
  position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--cream-soft);
  max-width: 75%;
}
.intro-image .stamp span {
  display: block;
  font-size: .7rem;
  font-family: var(--font-body);
  font-style: normal;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  color: var(--brass-soft);
}
.intro-text h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  margin: 1.25rem 0 1.75rem;
  text-wrap: balance;
}
.intro-text h2 em { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.intro-text p {
  margin: 0 0 1.25rem;
  color: #3a4651;
  font-size: 1.02rem;
}
.read-more {
  display: inline-flex; align-items: center; gap: .75rem;
  margin-top: 1.5rem;
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 600; color: var(--brass-deep);
  border-bottom: 1px solid var(--brass);
  padding-bottom: .35rem;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.read-more::after { content: "→"; transition: transform .3s var(--ease); }
.read-more:hover { gap: 1.1rem; color: var(--ink); }
.read-more:hover::after { transform: translateX(3px); }

/* ============================================================
   STATS
============================================================ */
.stats {
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 5rem) var(--gutter);
}
.stats-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute;
  left: 0; top: 20%; height: 60%; width: 1px;
  background: var(--line);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
}
.stat .num small {
  font-size: 0.42em;
  color: var(--brass);
  margin-left: .12em;
  vertical-align: super;
  font-weight: 400;
}
.stat .label {
  margin-top: 1rem;
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 500; color: var(--mute);
}

/* ============================================================
   EVENTS GRID  (homepage)
============================================================ */
.events { background: var(--cream); }
.events-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 2rem; margin-bottom: 3.5rem; flex-wrap: wrap;
}
.events-head h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  max-width: 18ch;
  margin-top: 1rem;
}
.events-head h2 em { font-style: italic; color: var(--brass-deep); }
.events-head p { color: var(--mute); max-width: 38ch; margin: 0; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.event-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-soft);
  border-top-left-radius: 50% 22%;
  display: block;
}
.event-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: var(--ink-soft);
  transition: transform .8s var(--ease), filter .8s var(--ease);
  filter: brightness(.82) saturate(1.05);
}
.event-card:hover .img { transform: scale(1.06); filter: brightness(.95); }
.event-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,25,34,.85));
}
.event-card .label {
  position: absolute; left: 1.5rem; right: 1.5rem; bottom: 1.5rem;
  z-index: 1; color: var(--cream-soft);
}
.event-card .label h3 {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: .35rem;
}
.event-card .label span {
  font-size: .66rem; letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass-soft);
  display: inline-flex; align-items: center; gap: .5rem;
}
.event-card .label span::after { content: "→"; transition: transform .3s var(--ease); }
.event-card:hover .label span::after { transform: translateX(4px); }

/* ============================================================
   FUNCTION BLOCKS  (functions page — alternating image/text rows)
============================================================ */
.fn-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.fn-block:last-child { margin-bottom: 0; }
.fn-block.reverse { direction: rtl; }
.fn-block.reverse > * { direction: ltr; }
.fn-media {
  aspect-ratio: 5 / 4;
  background-color: var(--ink-soft);
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
  border-top-right-radius: 30% 22%;
}
.fn-block.reverse .fn-media { border-top-right-radius: 0; border-top-left-radius: 30% 22%; }
.fn-body .kicker { display: inline-block; margin-bottom: 1rem; }
.fn-body h3 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 1.25rem;
}
.fn-body h3 em { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.fn-body p {
  margin: 0 0 1.1rem;
  color: #3a4651;
}

/* ============================================================
   PACKAGES (about page two-column features)
============================================================ */
.feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin-top: 0;
}
.feature {
  background: var(--cream);
  padding: clamp(2.5rem, 5vw, 4rem);
}
.feature .kicker { display: block; margin-bottom: 1rem; }
.feature h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 1rem;
}
.feature h3 em { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.feature p { color: #3a4651; margin: 0; }
.feature .tags {
  margin-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.feature .tag {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  padding: .35rem .65rem;
}

/* ============================================================
   GALLERY  —  rail (homepage) + grid (gallery page)
============================================================ */
.gallery {
  background: var(--cream-soft);
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
}
.gallery-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; justify-content: space-between; align-items: end;
  gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.gallery-head h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  margin-top: 1rem;
}
.gallery-head h2 em { font-style: italic; color: var(--brass-deep); }
.gallery-controls { display: flex; gap: .65rem; }
.gctl {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.05rem; color: var(--ink);
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.gctl:hover { background: var(--brass); border-color: var(--brass); color: var(--cream-soft); }
.gallery-rail {
  display: flex;
  gap: 1rem;
  padding: 0 var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.gallery-rail::-webkit-scrollbar { display: none; }
.gallery-tile {
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  background-color: var(--ink-soft);
  background-size: cover; background-position: center;
}
.gallery-rail .gallery-tile {
  flex: 0 0 calc(28% - 0.5rem);
  min-width: 280px;
  aspect-ratio: 3 / 4;
}
.gallery-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,25,34,.55));
  transition: opacity .4s var(--ease);
  opacity: 0;
}
.gallery-tile:hover::after { opacity: 1; }
.gallery-tile .cap {
  position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  color: var(--cream-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  z-index: 1;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery-tile:hover .cap { opacity: 1; transform: translateY(0); }

/* Gallery PAGE — full grid (masonry-ish via aspect variations) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
}
.gallery-grid .gallery-tile { aspect-ratio: 4 / 5; }
.gallery-grid .gallery-tile.span-4 { grid-column: span 4; }
.gallery-grid .gallery-tile.span-6 { grid-column: span 6; aspect-ratio: 5 / 4; }
.gallery-grid .gallery-tile.span-8 { grid-column: span 8; aspect-ratio: 16 / 9; }
.gallery-grid .gallery-tile.span-3 { grid-column: span 3; aspect-ratio: 3 / 4; }

/* ============================================================
   TESTIMONIALS  —  carousel (homepage) + grid (testimonials page)
============================================================ */
.testimonials {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: ""; position: absolute; inset: 0; opacity: .08;
  background:
    radial-gradient(60% 60% at 20% 20%, var(--brass) 0%, transparent 60%),
    radial-gradient(50% 50% at 80% 80%, var(--brass) 0%, transparent 60%);
  pointer-events: none;
}
.testimonials-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonials .kicker { margin-bottom: 1.5rem; }
.quote-mark {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 0.4;
  color: var(--brass);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-track { display: grid; }
.testi-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  pointer-events: none;
}
.testi-slide.is-active {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.testi-slide blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  line-height: 1.5;
  color: var(--cream-soft);
}
.testi-slide cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--brass-soft);
}
.testi-controls {
  margin-top: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.testi-arrows { display: flex; gap: .5rem; }
.testi-arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(244,236,223,0.25);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--cream);
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.testi-arrow:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.testi-dots { display: flex; gap: .55rem; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(244,236,223,0.25);
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
  padding: 0;
  border: 0;
}
.testi-dot.is-active { background: var(--brass); transform: scale(1.3); }

/* Testimonials PAGE — masonry grid (CSS columns) */
.testi-grid {
  column-count: 3;
  column-gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}
.testi-card {
  break-inside: avoid;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--brass);
  line-height: 1;
}
.testi-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.55;
  color: #2a3540;
}
.testi-card .by {
  display: block;
  margin-top: 1.25rem;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
}

/* ============================================================
   CONTACT  (info + form + map)
============================================================ */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--max);
  margin: 0 auto;
}
.contact-info h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin: 1rem 0 1.5rem;
}
.contact-info h2 em { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.contact-info p { color: #3a4651; max-width: 38ch; margin: 0 0 2rem; }
.contact-rows { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-of-type { border-bottom: 0; }
.contact-row .key {
  flex: 0 0 70px;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
  margin-top: .25rem;
}
.contact-row .val { font-size: 1rem; color: var(--ink); }
.contact-row .val a:hover { color: var(--brass-deep); }
.contact-socials {
  margin-top: 1.75rem;
  display: flex; gap: .65rem;
}
.contact-socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.contact-socials a:hover { background: var(--brass); border-color: var(--brass); color: var(--cream-soft); }
.contact-socials svg { width: 17px; height: 17px; fill: currentColor; }

/* Form */
.contact-form {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
}
.contact-form h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: .5rem;
}
.contact-form h3 em { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.contact-form > p {
  color: var(--mute);
  margin: 0 0 1.75rem;
  font-size: .95rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-grid .full { grid-column: span 2; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label {
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
}
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  background: var(--cream-soft);
  color: var(--ink);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--brass);
  background: var(--paper);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-actions { margin-top: 1.5rem; }
.form-success {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--cream-soft);
  border-left: 3px solid var(--brass);
  color: var(--ink);
  font-size: .95rem;
}
.form-success strong { color: var(--brass-deep); margin-right: .35rem; }

.map-wrap {
  margin-top: clamp(3.5rem, 6vw, 5rem);
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-wrap iframe { display: block; width: 100%; height: 460px; border: 0; }

/* ============================================================
   CTA PAIR
============================================================ */
.cta-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-soft);
}
.cta-card {
  position: relative;
  min-height: 480px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  background-color: var(--ink-soft);
}
.cta-card .bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.02);
  transition: transform .8s var(--ease);
}
.cta-card:hover .bg { transform: scale(1.08); }
.cta-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14,25,34,.25), rgba(14,25,34,.78));
}
.cta-card h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  font-weight: 400;
  margin-bottom: .75rem;
}
.cta-card h3 strong { font-style: normal; font-weight: 500; }
.cta-card p {
  color: rgba(244,236,223,0.85);
  margin: 0 0 1.75rem;
  max-width: 38ch;
}
.cta-card .btn { align-self: flex-start; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(244,236,223,0.78);
  padding: clamp(4rem, 7vw, 6rem) var(--gutter) 1.5rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-grid h6 {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 1.5rem;
}
.footer-grid li { margin-bottom: .6rem; font-size: .92rem; }
.footer-grid a { transition: color .3s var(--ease); }
.footer-grid a:hover { color: var(--brass-soft); }
.mark-block .mark {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: .22em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-block;
}
.mark-block .sub {
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brass);
  margin: .5rem 0 1.5rem;
}
.mark-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(244,236,223,0.7);
  max-width: 30ch;
  margin: 0;
}
.contact-block .row { display: flex; gap: .65rem; align-items: flex-start; }
.contact-block .row strong { font-weight: 500; color: var(--cream); min-width: 56px; }
.socials {
  margin-top: 1.25rem;
  display: flex; gap: .65rem;
}
.socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  color: rgba(244,236,223,0.78);
}
.socials a:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(244,236,223,0.5);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 980px) {
  .hero-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .subnav-brand { display: none; }
  .subnav-links {
    flex: 1;
    justify-content: flex-start;
    gap: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(to right, black 90%, transparent);
            mask-image: linear-gradient(to right, black 90%, transparent);
  }
  .subnav-links::-webkit-scrollbar { display: none; }
  .subnav-links a { white-space: nowrap; padding: 1rem 0; }
  .intro-grid, .intro-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .intro-image { aspect-ratio: 4 / 3; max-width: 560px; margin: 0 auto; }
  .fn-block, .fn-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .fn-media { aspect-ratio: 4 / 3; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .events-head { flex-direction: column; align-items: flex-start; }
  .feature-pair { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-pair { grid-template-columns: 1fr; }
  .gallery-rail .gallery-tile { flex: 0 0 calc(80% - 0.5rem); min-width: 240px; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .gallery-grid .gallery-tile { grid-column: span 3 !important; aspect-ratio: 4 / 5 !important; }
  .gallery-grid .gallery-tile.span-6,
  .gallery-grid .gallery-tile.span-8 { grid-column: span 6 !important; aspect-ratio: 5 / 4 !important; }
  .testi-grid { column-count: 2; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stat + .stat::before { display: none; }
  .stat + .stat { padding-top: 2rem; border-top: 1px solid var(--line); }
  .events-grid { grid-template-columns: 1fr; }
  .event-card { aspect-ratio: 4 / 3; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn-ghost { display: none; }
  .brand .sub { display: none; }
  .gallery-rail .gallery-tile { flex: 0 0 calc(85% - 0.5rem); }
  .hero-header { padding: 1rem var(--gutter); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-tile,
  .gallery-grid .gallery-tile.span-6,
  .gallery-grid .gallery-tile.span-8 { grid-column: span 1 !important; aspect-ratio: 4 / 3 !important; }
  .testi-grid { column-count: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg, .page-hero-bg { transform: none; }
}
