/* ---------- tokens ---------- */
:root{
  --bg: #F7F1E6;
  --bg-soft: #FBF7F0;
  --panel: #EBDCD1;
  --panel-deep: #DEC9BB;
  --ink: #2A231C;
  --ink-soft: #6E5D4E;
  --ink-faint: #97887A;
  --accent: #5B5C3B;
  --accent-deep: #40401F;
  --line: #AD8355;
  --rose: #C9A093;
  --white: #FFFDF9;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --font-display: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --font-script: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Be Vietnam Pro', -apple-system, 'Segoe UI', sans-serif;

  color-scheme: light;
}

@media (prefers-color-scheme: dark){
  :root{
    --bg: #1E1A15;
    --bg-soft: #241F19;
    --panel: #4E4232;
    --panel-deep: #5F503B;
    --ink: #F1E7DA;
    --ink-soft: #C8B9A9;
    --ink-faint: #8C7C6C;
    --accent: #ABAF7C;
    --accent-deep: #C9CD9E;
    --line: #D6A876;
    --rose: #D3AA9D;
    --white: #FFFDF9;
    color-scheme: dark;
  }
}
:root[data-theme="dark"]{
  --bg: #1E1A15;
  --bg-soft: #241F19;
  --panel: #4E4232;
  --panel-deep: #5F503B;
  --ink: #F1E7DA;
  --ink-soft: #C8B9A9;
  --ink-faint: #8C7C6C;
  --accent: #ABAF7C;
  --accent-deep: #C9CD9E;
  --line: #D6A876;
  --rose: #D3AA9D;
  --white: #FFFDF9;
  color-scheme: dark;
}
:root[data-theme="light"]{
  --bg: #F7F1E6;
  --bg-soft: #FBF7F0;
  --panel: #EBDCD1;
  --panel-deep: #DEC9BB;
  --ink: #2A231C;
  --ink-soft: #6E5D4E;
  --ink-faint: #97887A;
  --accent: #5B5C3B;
  --accent-deep: #40401F;
  --line: #AD8355;
  --rose: #C9A093;
  --white: #FFFDF9;
  color-scheme: light;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; }

/* ---------- global smooth motion ---------- */
a, button, input, select, textarea,
.btn, .teaser-card, .service-card, .exp-card, .contact-card, .media-card .frame,
.gallery-grid img, .album-row img, .photo-break img, .strip img, .hero-frame,
.nav-links a, .footer-links a, .contact-links a{
  transition: transform .35s cubic-bezier(.22,.61,.36,1),
              box-shadow .35s ease,
              border-color .3s ease,
              background .3s ease,
              color .25s ease;
}
.gallery-grid figure, .album-row, .photo-break figure, .page-hero, .hero-media{
  overflow: hidden;
}
.gallery-grid img:hover, .album-row img:hover, .photo-break img:hover{
  transform: scale(1.035);
}

.wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

/* ---------- type helpers ---------- */
.eyebrow{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--line);
}
h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}
.script{
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
}
.rule{
  width: 46px;
  height: 1px;
  background: var(--line);
  border: none;
  margin: 0;
}
.rule.center{ margin-inline: auto; }

/* ---------- reveal ---------- */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}

/* ---------- nav ---------- */
.nav{
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
}
.nav .wrap{
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 20px;
}
.nav .brand{
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.05rem; letter-spacing: 0.03em;
  text-decoration: none; white-space: nowrap;
}
.nav-links{
  display: flex; align-items: center; gap: clamp(14px, 2.4vw, 28px);
  list-style: none; margin: 0; padding: 0; flex: 1; justify-content: center;
}
.nav-links a{
  text-decoration: none; font-size: 0.86rem; font-weight: 500;
  color: var(--ink-soft); letter-spacing: 0.01em;
  padding-bottom: 3px; border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav-links a:hover{ color: var(--ink); }
.nav-links a[aria-current="page"]{
  color: var(--ink); border-color: var(--line);
}
.nav .cta{
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 9px 20px; border-radius: var(--radius-pill);
  background: var(--accent); color: var(--bg-soft);
  text-decoration: none; white-space: nowrap;
  transition: background .25s ease;
}
.nav .cta:hover{ background: var(--accent-deep); }
.nav-toggle{ display: none; }

@media (max-width: 760px){
  .nav-links{
    display: none;
  }
  .nav .cta{
    display: none;
  }
  .nav-toggle{
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border: 1px solid var(--ink-faint);
    background: none; border-radius: var(--radius-sm); color: var(--ink);
  }
  .nav.menu-open .nav-links{
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg-soft); padding: 18px clamp(20px,5vw,56px) 24px;
    border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
    gap: 14px;
  }
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 13px 26px; border-radius: var(--radius-pill);
  text-decoration: none; border: 1px solid transparent;
  transition: transform .2s ease, background .25s ease, border-color .25s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-solid{ background: var(--accent); color: var(--bg-soft); }
.btn-solid:hover{ background: var(--accent-deep); }
.btn-line{ border-color: var(--ink-faint); color: var(--ink); }
.btn-line:hover{ border-color: var(--ink); }

/* ---------- hero (home only) ---------- */
.hero{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 6vw, 64px);
  padding-block: clamp(40px, 7vw, 80px);
}
.hero-copy{ position: relative; }
.hero-copy .eyebrow{ margin-bottom: 18px; }
.hero-copy h1{
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.hero-copy .subtitle{
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  color: var(--accent);
  margin-top: 10px;
}
.hero-copy .rule{ margin: 22px 0; }
.hero-quote{
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--ink);
  line-height: 1.5;
  max-width: 30ch;
}
.hero-copy .support{
  margin-top: 16px;
  color: var(--ink-soft);
  max-width: 42ch;
  font-size: 0.97rem;
}
.hero-actions{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-meta{
  margin-top: 32px; display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--ink-faint); letter-spacing: 0.02em;
}
.hero-meta span{ display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg{ width: 14px; height: 14px; flex: none; }

.hero-frame{
  position: relative;
  background:
    radial-gradient(120% 90% at 30% 10%, color-mix(in srgb, var(--rose) 35%, var(--panel)) 0%, var(--panel) 60%),
    var(--panel);
  border-radius: 220px 220px 20px 20px;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--line) 45%, transparent);
}
.hero-frame img,
.hero-frame video{
  border-radius: 210px 210px 14px 14px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-frame img{ aspect-ratio: 900 / 2000; }
.hero-frame video{ aspect-ratio: 9 / 16; }
.hero-frame::after{
  content: "";
  position: absolute; inset: 6px;
  border: 1px solid color-mix(in srgb, var(--line) 30%, transparent);
  border-radius: 216px 216px 16px 16px;
  pointer-events: none;
}

@media (max-width: 860px){
  .hero{ grid-template-columns: 1fr; }
  .hero-frame{ order: -1; max-width: 320px; margin-inline: auto; }
  .hero-copy{ text-align: center; }
  .hero-copy .support{ display: none; }
  .hero-quote{ max-width: none; margin-inline: auto; }
  .hero-actions{ justify-content: center; }
  .hero-meta{ justify-content: center; }
}

/* ---------- home teaser links ---------- */
.teaser-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: color-mix(in srgb, var(--ink) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.teaser-card{
  background: var(--bg-soft); padding: clamp(26px, 3vw, 34px) clamp(20px,2.6vw,26px);
  text-decoration: none; color: inherit; display: block;
  transition: background .25s ease;
}
.teaser-card:hover{ background: var(--panel); transform: translateY(-4px); }
.teaser-card .eyebrow{ margin-bottom: 12px; }
.teaser-card h3{ font-size: 1.15rem; margin-bottom: 10px; }
.teaser-card p{ margin: 0; font-size: 0.88rem; color: var(--ink-soft); }
.teaser-card .go{
  display: inline-block; margin-top: 16px; font-size: 0.78rem;
  letter-spacing: 0.04em; color: var(--line); font-weight: 600;
}
@media (max-width: 900px){ .teaser-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .teaser-grid{ grid-template-columns: 1fr; } }

/* ---------- page hero banner (image, no overlay text) ---------- */
.page-hero-wrap{
  max-width: 1180px; margin: clamp(20px, 4vw, 40px) auto 0;
  padding: 0 clamp(20px, 5vw, 56px);
}
.page-hero{
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--panel);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.4);
}
.page-hero img{
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
}
@media (max-width: 700px){ .page-hero{ aspect-ratio: 4 / 5; } }

/* ---------- page head (inner pages) ---------- */
.page-head{
  background: var(--panel);
  padding-block: clamp(48px, 8vw, 84px);
}
.page-head .eyebrow{ margin-bottom: 14px; }
.page-head h1{ font-size: clamp(2.1rem, 4.6vw, 3.2rem); }
.page-head p{
  margin-top: 16px; color: var(--ink-soft); max-width: 56ch;
  font-size: 1.02rem;
}
.breadcrumb{
  font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.breadcrumb a{ text-decoration: none; color: var(--ink-faint); }
.breadcrumb a:hover{ color: var(--ink); }

/* ---------- section shells ---------- */
section{ padding-block: clamp(56px, 8vw, 96px); }
.section-head{ max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head .eyebrow{ margin-bottom: 14px; }
.section-head h2{ font-size: clamp(1.7rem, 3.2vw, 2.35rem); }
.section-head p{ color: var(--ink-soft); margin-top: 14px; font-size: 1rem; max-width: 56ch; }

.panel-section{ background: var(--panel); }

/* ---------- about ---------- */
.about{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.about p.lede{
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink);
}
.trait-list{ list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.trait-list li{
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.96rem; color: var(--ink-soft);
}
.trait-list svg{
  flex: none; width: 20px; height: 20px; margin-top: 2px;
  color: var(--accent);
}
@media (max-width: 780px){ .about{ grid-template-columns: 1fr; } }

/* ---------- experience cards ---------- */
.exp-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: color-mix(in srgb, var(--ink) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.exp-card{
  background: var(--bg-soft);
  padding: clamp(26px, 3vw, 36px);
  position: relative;
}
.exp-card:hover{
  background: var(--panel);
  box-shadow: inset 0 2px 0 var(--line);
}
.exp-card .num{
  font-family: var(--font-script); font-style: italic;
  color: var(--line); font-size: 1.5rem; display: block; margin-bottom: 10px;
}
.exp-card h3{ font-size: 1.28rem; margin-bottom: 14px; }
.exp-card ul{ margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.exp-card li{
  font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6;
  padding-left: 16px; position: relative;
}
.exp-card li::before{
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 6px; height: 1px; background: var(--line);
}
@media (max-width: 900px){ .exp-grid{ grid-template-columns: 1fr; } }

/* ---------- service link grid (overview -> detail pages) ---------- */
.service-link-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: color-mix(in srgb, var(--ink) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-link-card{
  display: block; text-decoration: none; color: inherit;
  background: var(--bg-soft);
  padding: clamp(26px, 3vw, 34px) clamp(20px, 2.4vw, 24px);
}
.service-link-card:hover{ background: var(--panel); }
.service-link-card svg{
  width: 28px; height: 28px; color: var(--accent); margin-bottom: 16px;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.service-link-card:hover svg{ transform: scale(1.1); }
.service-link-card h3{ font-size: 1.08rem; margin-bottom: 10px; }
.service-link-card p{ font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 16px; line-height: 1.55; }
.service-link-card .go{
  font-size: 0.76rem; letter-spacing: 0.05em; color: var(--line); font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 900px){ .service-link-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .service-link-grid{ grid-template-columns: 1fr; } }

/* ---------- service detail page ---------- */
.service-detail p.lead{
  font-size: clamp(1.02rem, 1.6vw, 1.15rem); color: var(--ink); max-width: 62ch;
  margin: 0 0 28px;
}
.service-detail ul{
  list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 14px; max-width: 62ch;
}
.service-detail li{
  font-size: 0.98rem; color: var(--ink-soft); line-height: 1.65;
  padding-left: 20px; position: relative;
}
.service-detail li::before{
  content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 1px; background: var(--line);
}
.service-nav{
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: clamp(32px, 5vw, 48px); padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}
.service-nav a{
  font-size: 0.86rem; color: var(--ink-soft); text-decoration: none;
  border-bottom: 1px solid transparent; transition: color .2s ease, border-color .2s ease;
}
.service-nav a:hover{ color: var(--ink); border-color: var(--line); }

/* ---------- style banner ---------- */
.style-banner{
  position: relative;
  background-image:
    linear-gradient(180deg, color-mix(in srgb, #100D08 55%, transparent), color-mix(in srgb, #100D08 75%, transparent)),
    url('assets/ceremony-beach.jpg');
  background-size: cover;
  background-position: center 20%;
  color: #F6EFE4;
  padding-block: clamp(56px, 9vw, 110px);
}
.style-banner .wrap{ text-align: center; }
.style-banner .eyebrow{ color: #E7C89A; }
.style-banner h2{
  color: #FBF5EC;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-top: 14px;
}
.style-pills{
  margin-top: 30px;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 10px;
  font-family: var(--font-script); font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: #F1E4D2;
}
.style-pills span:not(.dot){ padding: 0 4px; }
.style-pills .dot{ opacity: 0.5; }
.style-caption{
  margin-top: 26px; font-size: 0.82rem; letter-spacing: 0.03em;
  color: #CBB89E; font-style: normal; font-family: var(--font-body);
}

/* ---------- services ---------- */
.service-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card{
  text-align: center; padding: 28px 14px;
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: var(--radius-md);
}
.service-card:hover{
  border-color: var(--line);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -20px rgba(0,0,0,0.35);
}
.service-card svg{
  width: 30px; height: 30px; color: var(--accent); margin: 0 auto 16px;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.service-card:hover svg{ transform: scale(1.12); }
.service-card span{ font-size: 0.92rem; font-weight: 500; }
@media (max-width: 760px){ .service-grid{ grid-template-columns: repeat(2, 1fr); } }

/* ---------- media / TVC ---------- */
.media-intro{
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px,5vw,56px);
  align-items: end; margin-bottom: clamp(32px, 5vw, 50px);
}
.media-quote{
  font-family: var(--font-script); font-style: italic; color: var(--ink);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.6;
  border-left: 2px solid var(--line); padding-left: 20px;
}
.media-quote cite{
  display: block; margin-top: 12px; font-style: normal; font-family: var(--font-body);
  font-size: 0.8rem; color: var(--ink-faint); letter-spacing: 0.02em;
}
.media-grid{
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(20px, 3vw, 32px);
}
.media-card figure{ margin: 0; }
.media-card .frame{
  background: #0E0C09; border-radius: var(--radius-md); padding: 0;
  box-shadow: 0 18px 40px -18px rgba(20,14,8,0.45);
  overflow: hidden; position: relative;
}
.media-card .frame:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -18px rgba(20,14,8,0.55);
}
.media-card video{
  width: 100%; aspect-ratio: 1080/608; object-fit: cover;
  border-radius: 0; background: #000;
  display: block;
}
.media-card .frame .expand-btn{
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px; border-radius: var(--radius-pill);
  background: rgba(14,12,9,0.55); border: 1px solid rgba(255,255,255,0.25);
  color: #F4EEE1; display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(3px);
  transition: background .25s ease, transform .25s ease;
}
.media-card .frame .expand-btn:hover{ background: rgba(14,12,9,0.8); transform: scale(1.08); }
.media-card .frame .expand-btn svg{ width: 16px; height: 16px; }
.media-card figcaption{
  margin-top: 14px; font-size: 0.88rem; color: var(--ink-soft);
}
@media (max-width: 760px){
  .media-intro{ grid-template-columns: 1fr; }
  .media-grid{ grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ---------- why choose ---------- */
.why{
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px,5vw,64px);
}
.why-num-list{ list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.why-num-list li{ display: grid; grid-template-columns: auto 1fr; gap: 18px; }
.why-num-list .n{
  font-family: var(--font-display); font-size: 1.4rem; color: var(--line);
  line-height: 1;
}
.why-num-list p{ margin: 0; color: var(--ink-soft); font-size: 0.97rem; }
.why-num-list strong{ color: var(--ink); font-weight: 600; }
@media (max-width: 780px){ .why{ grid-template-columns: 1fr; } }

/* ---------- photo break ---------- */
.photo-break{ padding-block: 0 clamp(56px,8vw,96px); }
.photo-break figure{ margin: 0; }
.photo-break img{
  width: 100%; max-height: 480px; object-fit: cover; object-position: center 30%;
  border-radius: var(--radius-lg);
}
.photo-break figcaption{
  margin-top: 14px; font-size: 0.85rem; color: var(--ink-faint); text-align: center;
}

/* ---------- photo gallery ---------- */
.gallery-grid{
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}
.gallery-grid figure{ margin: 0; }
.gallery-grid img{
  width: 100%; height: 100%; object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--line) 35%, transparent);
  border-radius: var(--radius-md);
}
.gallery-grid .tall img{ aspect-ratio: 900 / 2000; }
.gallery-grid .wide img{ aspect-ratio: 3 / 4; }
.gallery-grid figcaption{
  margin-top: 12px; font-size: 0.85rem; color: var(--ink-soft);
}
@media (max-width: 700px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-grid .tall{ max-width: 260px; margin-inline: auto; }
}

/* ---------- event albums ---------- */
.album{ margin-top: clamp(32px, 5vw, 48px); }
.album:first-of-type{ margin-top: 0; }
.album h3{
  font-size: 1rem; font-weight: 600; margin: 0 0 16px;
  color: var(--ink-soft); letter-spacing: 0.01em;
}
.album-row{
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.album-row img{
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--line) 35%, transparent);
}
.album-row.single{ grid-template-columns: minmax(180px, 320px); }
.album-row.single img{ aspect-ratio: 3/4; }

/* ---------- contact page bits ---------- */
.contact-grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px);
}
.contact-card{
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  padding: clamp(26px,3vw,36px); background: var(--bg-soft);
}
.contact-card:hover{
  border-color: var(--line);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -20px rgba(0,0,0,0.35);
}
.contact-card h3{ font-size: 1.1rem; margin-bottom: 16px; }
.contact-card .links{ display: grid; gap: 14px; }
.contact-card a{
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-size: 0.95rem; color: var(--ink);
  border-bottom: 1px solid transparent; width: fit-content;
  transition: border-color .2s ease, color .2s ease;
}
.contact-card a:hover{ border-color: var(--line); }
.contact-card svg{ width: 18px; height: 18px; color: var(--accent); flex: none; }
@media (max-width: 780px){ .contact-grid{ grid-template-columns: 1fr; } }

/* ---------- booking form ---------- */
.booking-form{
  display: grid; gap: 18px; max-width: 640px;
  background: var(--bg-soft);
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
}
.booking-form .row2{
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.booking-form label{
  display: grid; gap: 8px; font-size: 0.86rem; color: var(--ink-soft); font-weight: 500;
}
.booking-form input,
.booking-form select,
.booking-form textarea{
  font-family: var(--font-body); font-size: 0.96rem; color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
}
.booking-form textarea{ resize: vertical; min-height: 100px; font-family: var(--font-body); }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
  outline: none; border-color: var(--line);
}
.booking-form .form-actions{
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  justify-content: center; margin-top: 8px; text-align: center;
}
.booking-form button{
  font-family: var(--font-body); cursor: pointer;
}
.booking-form .btn-submit{
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
  padding: 15px 32px;
}
.booking-form .form-note{
  font-size: 0.8rem; color: var(--ink-faint); margin: 0; text-align: center;
}
@media (max-width: 560px){ .booking-form .row2{ grid-template-columns: 1fr; } }

/* ---------- footer / contact band (every page) ---------- */
.contact-band{
  background: var(--accent-deep);
  color: #F4EEE1;
}
.contact-band .wrap{
  text-align: center;
  padding-block: clamp(56px, 9vw, 96px);
}
.contact-band .eyebrow{ color: #D9CB9E; }
.contact-band h2{
  color: var(--bg-soft); font-size: clamp(1.9rem, 4vw, 3rem); margin-top: 16px;
}
.contact-links{
  margin-top: 34px; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}
.contact-links a{
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid transparent;
  padding: 13px 24px; border-radius: var(--radius-pill);
  text-decoration: none; font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em;
  background: var(--accent); color: var(--bg-soft);
  transition: background .25s ease;
}
.contact-links a:hover{ background: var(--accent-deep); }
.contact-links svg{ width: 17px; height: 17px; }

/* ---------- site footer ---------- */
.site-foot{
  background: var(--bg); padding-block: 28px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
}
.site-foot .wrap{
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 0.78rem; color: var(--ink-faint); letter-spacing: 0.02em;
}

/* ---------- lightbox ---------- */
.gallery-grid img, .album-row img, .photo-break img{ cursor: zoom-in; }
.lightbox{
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,8,6,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(20px, 5vw, 56px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease;
}
.lightbox.open{ opacity: 1; visibility: visible; }
.lightbox img{
  max-width: 92vw; max-height: 90vh; width: auto; height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
}
.lightbox-close{
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  color: #F4EEE1; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox-close:hover{ background: rgba(255,255,255,0.2); }
.lightbox-close svg{ width: 20px; height: 20px; }

:focus-visible{ outline: 2px solid var(--line); outline-offset: 3px; }
