/* ==========================================================================
   Hanson's King Island Lodge — Design System
   POV: Heritage wilderness lodge. Warm, editorial, unhurried.
   Palette (restrained, 5): pine · cedar · brass · cream · ink
   Type: Fraunces (display serif) + Inter (humanist body)
   ========================================================================== */

:root {
  /* Brand colours */
  --pine:        #1e3a2c;   /* deep forest green — primary */
  --pine-deep:   #14261c;   /* near-black green */
  --pine-soft:   #2f5340;
  --cedar:       #9a5a2b;   /* warm wood */
  --cedar-light: #c17f4a;
  --brass:       #c39a52;   /* aged brass / gold accent */
  --brass-deep:  #a37e3a;

  /* Neutrals */
  --cream:       #f5efe3;   /* page paper */
  --cream-alt:   #efe7d6;   /* alt sections */
  --sand:        #e6dcc6;
  --paper-line:  #ddd0b6;
  --ink:         #241f18;   /* primary text */
  --ink-soft:    #4b4438;   /* secondary text */
  --stone:       #665d4c;   /* muted / captions (WCAG AA on cream & cream-alt) */
  --white:       #fffdf8;

  /* Type */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
  --step-3:  clamp(2rem, 1.7rem + 1.5vw, 3rem);
  --step-4:  clamp(2.6rem, 2rem + 3vw, 4.75rem);
  --step-5:  clamp(3.2rem, 2.3rem + 4.6vw, 6.5rem);

  /* Spacing */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;  --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.5rem;  --sp-6: 2rem;
  --sp-7: 3rem;     --sp-8: 4.5rem;  --sp-9: 7rem;

  --maxw: 1200px;
  --maxw-narrow: 760px;
  --radius: 3px;
  --radius-lg: 6px;
  --shadow-sm: 0 1px 3px rgba(20,15,8,.08);
  --shadow-md: 0 12px 30px -12px rgba(20,15,8,.28);
  --shadow-lg: 0 30px 60px -24px rgba(20,15,8,.4);
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; border-radius: 2px; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.5rem, var(--maxw-narrow)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-cream-alt { background: var(--cream-alt); }
.bg-pine { background: var(--pine-deep); color: var(--cream); }
.bg-pine .eyebrow { color: var(--brass); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
  color: var(--pine-deep);
}
.bg-pine h1, .bg-pine h2, .bg-pine h3 { color: var(--cream); }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { max-width: 68ch; }
strong { font-weight: 650; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cedar);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: .7;
}
.eyebrow--center::after {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: .7;
}
.lead { font-size: var(--step-1); line-height: 1.55; color: var(--ink-soft); font-family: var(--font-display); font-weight: 400; }
.muted { color: var(--stone); }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: var(--sp-3); }
.section-head p { margin-top: var(--sp-4); color: var(--ink-soft); }
.section-head.center p { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.9em 1.6em;
  font-weight: 600; font-size: var(--step--1);
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn svg { width: 1em; height: 1em; }
.btn--primary { background: var(--brass); color: var(--pine-deep); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--pine { background: var(--pine); color: var(--cream); }
.btn--pine:hover { background: var(--pine-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { border: 1.5px solid currentColor; color: var(--cream); }
.btn--ghost:hover { background: var(--cream); color: var(--pine-deep); }
.btn--outline { border: 1.5px solid var(--pine); color: var(--pine); }
.btn--outline:hover { background: var(--pine); color: var(--cream); transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.textlink {
  color: var(--cedar); font-weight: 600; border-bottom: 1.5px solid rgba(154,90,43,.35);
  padding-bottom: 1px; transition: border-color .3s;
}
.textlink:hover { border-color: var(--cedar); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .3s;
}
.site-header::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,38,28,.55), rgba(20,38,28,0));
  opacity: 1; transition: opacity .4s; pointer-events: none;
}
.site-header.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--paper-line), var(--shadow-sm);
  height: 66px;
}
.site-header.scrolled::before { opacity: 0; }
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--cream); z-index: 2; }
.scrolled .brand { color: var(--pine-deep); }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__mark .fill-brass { fill: var(--brass); }
.brand__mark .fill-cream { fill: var(--cream); transition: fill .4s; }
.scrolled .brand__mark .fill-cream { fill: var(--pine); }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; line-height: 1; letter-spacing: -0.01em; }
.brand__name small { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; opacity: .8; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: clamp(0.6rem, 1.4vw, 1.6rem); }
.nav__links a {
  color: var(--cream); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.02em;
  position: relative; padding: 0.4rem 0; transition: color .3s;
}
.scrolled .nav__links a { color: var(--ink-soft); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--brass); transition: width .3s var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--brass); }
.scrolled .nav__links a[aria-current="page"] { color: var(--cedar); }
.nav__cta { margin-left: 0.5rem; }

.nav__toggle { display: none; width: 46px; height: 46px; z-index: 2; position: relative; }
.nav__toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--cream); transition: transform .35s var(--ease), opacity .2s; }
.scrolled .nav__toggle span, .nav-open .nav__toggle span { background: var(--pine-deep); }
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 28px; }
.nav-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px);
    background: var(--cream); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 0.4rem; padding: 5rem 2.2rem 2rem;
    transform: translateX(100%); transition: transform .45s var(--ease);
    box-shadow: var(--shadow-lg); overflow-y: auto;
  }
  .nav-open .nav__links { transform: translateX(0); }
  .nav__links a { color: var(--ink) !important; font-size: 1.15rem; font-family: var(--font-display); padding: 0.5rem 0; width: 100%; border-bottom: 1px solid var(--paper-line); }
  .nav__links a::after { display: none; }
  .nav__cta { margin: 1rem 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(20,20,15,.5); opacity: 0; visibility: hidden; transition: opacity .4s; z-index: 99; }
  .nav-open .nav-scrim { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--cream); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(15,26,19,.9) 2%, rgba(15,26,19,.35) 42%, rgba(15,26,19,.55) 100%);
}
.hero__inner { padding-bottom: clamp(3rem, 8vh, 6rem); padding-top: 8rem; }
.hero__eyebrow { color: var(--brass); }
.hero h1 { color: var(--white); font-size: var(--step-5); max-width: 15ch; margin: 1rem 0 1.2rem; text-wrap: balance; }
.hero__sub { font-size: var(--step-1); max-width: 46ch; color: rgba(245,239,227,.9); font-family: var(--font-display); font-weight: 400; }
.hero .btn-row { margin-top: 2.2rem; }
.hero__scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 1; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: .8; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero__scroll::after { content: ""; width: 1px; height: 34px; background: currentColor; animation: scrolldrop 2.2s var(--ease) infinite; }
@keyframes scrolldrop { 0% { transform: scaleY(.2); transform-origin: top; opacity: 0; } 40% { opacity: 1; } 100% { transform: scaleY(1); transform-origin: top; opacity: 0; } }

/* Page hero (interior pages) */
.page-hero { position: relative; padding-top: calc(var(--header-h) + 4.5rem); padding-bottom: clamp(3rem, 7vw, 5.5rem); color: var(--cream); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(15,26,19,.85), rgba(15,26,19,.45)); }
.page-hero h1 { color: var(--white); max-width: 18ch; margin-top: 0.8rem; text-wrap: balance; }
.page-hero__sub { max-width: 52ch; margin-top: 1rem; font-family: var(--font-display); font-size: var(--step-1); color: rgba(245,239,227,.9); }
.breadcrumb { font-size: 0.8rem; color: rgba(245,239,227,.75); margin-bottom: 0.5rem; }
.breadcrumb a:hover { color: var(--brass); }
.breadcrumb span { opacity: .6; margin: 0 0.4rem; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3.2; object-fit: cover; }
.split__media--tall img { aspect-ratio: 4/4.6; }
.split__body h2 { margin-bottom: 1.2rem; }
.split__body p + p { margin-top: 1rem; }
.split__body .btn-row { margin-top: 1.8rem; }
.media-frame { position: relative; }
.media-frame::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1.5px solid var(--brass); border-radius: var(--radius-lg); z-index: -1; }
@media (max-width: 780px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse .split__media { order: 0; }
  .media-frame::before { inset: 10px -10px -10px 10px; }
}

/* ---------- Stat bar ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(195,154,82,.25); border-block: 1px solid rgba(195,154,82,.25); }
.stat { background: var(--pine-deep); padding: clamp(1.6rem, 3vw, 2.6rem) 1rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: var(--step-3); color: var(--brass); line-height: 1; }
.stat__label { display: block; margin-top: 0.6rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,239,227,.7); }
@media (max-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1.2rem, 2.5vw, 2rem); }
.card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--paper-line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card__img { aspect-ratio: 3/2; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.card__body p { font-size: 0.95rem; color: var(--ink-soft); }
.card__meta { margin-top: auto; padding-top: 1.1rem; display: flex; align-items: center; gap: 0.5rem; color: var(--cedar); font-weight: 600; font-size: 0.88rem; }
.card__tag { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); font-weight: 600; margin-bottom: 0.4rem; }

/* Feature list */
.feature-list { display: grid; gap: 1.1rem; }
.feature-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.feature-list .ico { flex: none; width: 34px; height: 34px; border-radius: 50%; background: rgba(195,154,82,.15); display: grid; place-items: center; color: var(--cedar); margin-top: 2px; }
.feature-list .ico svg { width: 17px; height: 17px; }
.feature-list strong { display: block; }
.feature-list p { font-size: 0.94rem; color: var(--ink-soft); margin-top: 2px; }

/* ---------- Species / fishing table ---------- */
.species-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.4rem; }
.species { background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); border-top: 3px solid var(--pine); }
.species h3 { font-size: var(--step-1); display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.species h3 .size { font-family: var(--font-body); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; color: var(--cedar); text-transform: uppercase; }
.species p { font-size: 0.93rem; color: var(--ink-soft); margin-top: 0.6rem; }
.species dl { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--paper-line); display: grid; gap: 0.35rem; font-size: 0.85rem; }
.species dl div { display: flex; justify-content: space-between; gap: 1rem; }
.species dt { color: var(--stone); }
.species dd { font-weight: 600; text-align: right; }

/* ---------- Rates ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.6rem; align-items: start; }
.plan { background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; }
.plan--featured { border: 1.5px solid var(--brass); box-shadow: var(--shadow-md); }
.plan__flag { position: absolute; top: -13px; left: 1.8rem; background: var(--brass); color: var(--pine-deep); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 2px; }
.plan h3 { font-size: var(--step-1); }
.plan__price { font-family: var(--font-display); font-size: var(--step-2); color: var(--pine); margin: 0.6rem 0 0.2rem; }
.plan__price .placeholder { color: var(--cedar); }
.plan__price span { font-family: var(--font-body); font-size: 0.8rem; color: var(--stone); font-weight: 500; }
.plan__desc { font-size: 0.92rem; color: var(--ink-soft); margin: 0.6rem 0 1.2rem; }
.plan ul.incl { display: grid; gap: 0.6rem; margin-bottom: 1.5rem; }
.plan ul.incl li { display: flex; gap: 0.6rem; font-size: 0.92rem; align-items: flex-start; }
.plan ul.incl svg { flex: none; width: 17px; height: 17px; color: var(--pine-soft); margin-top: 4px; }
.plan .btn { margin-top: auto; width: 100%; justify-content: center; }
.note-box { background: var(--cream-alt); border-left: 3px solid var(--brass); padding: 1.2rem 1.4rem; border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.92rem; color: var(--ink-soft); }
.note-box strong { color: var(--ink); }

/* ---------- Timeline (history) ---------- */
.timeline { position: relative; display: grid; gap: 2.5rem; }
.timeline::before { content: ""; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--brass), rgba(195,154,82,.2)); }
.tl-item { position: relative; padding-left: 3.4rem; }
.tl-item::before { content: ""; position: absolute; left: 8px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--cream); border: 3px solid var(--brass); }
.tl-year { font-family: var(--font-display); font-size: var(--step-1); color: var(--cedar); line-height: 1; }
.tl-item h3 { font-size: var(--step-1); margin: 0.3rem 0 0.5rem; }
.tl-item p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- Border / travel guide ---------- */
.guide-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.4rem; counter-reset: step; }
.guide-step { background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius-lg); padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm); position: relative; }
.guide-step::before { counter-increment: step; content: counter(step); position: absolute; top: 1.3rem; right: 1.4rem; font-family: var(--font-display); font-size: 2.2rem; color: rgba(195,154,82,.35); line-height: 1; }
.guide-step h3 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; font-size: 0.82rem; color: var(--cedar); margin-bottom: 0.5rem; }
.guide-step h4 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.guide-step p { font-size: 0.92rem; color: var(--ink-soft); }
.checklist { display: grid; gap: 0.8rem; }
.checklist li { display: flex; gap: 0.8rem; align-items: flex-start; padding: 0.9rem 1.1rem; background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius); }
.checklist svg { flex: none; width: 20px; height: 20px; color: var(--pine-soft); margin-top: 2px; }
.checklist strong { display: block; }
.checklist p { font-size: 0.9rem; color: var(--ink-soft); margin-top: 2px; }

/* ---------- Gallery ---------- */
.gallery { columns: 3 260px; column-gap: 1rem; }
.gallery figure { break-inside: avoid; margin-bottom: 1rem; position: relative; overflow: hidden; border-radius: var(--radius); cursor: zoom-in; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; transition: transform .7s var(--ease), filter .4s; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; padding: 1.4rem 1rem 0.8rem; background: linear-gradient(to top, rgba(15,26,19,.85), transparent); color: var(--cream); font-size: 0.82rem; opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s; }
.gallery figure:hover figcaption { opacity: 1; transform: none; }
.gallery .tag-historic { position: absolute; top: 0.7rem; left: 0.7rem; background: var(--brass); color: var(--pine-deep); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.55rem; border-radius: 2px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(12,20,14,.94); display: flex; align-items: center; justify-content: center; padding: 2rem; opacity: 0; visibility: hidden; transition: opacity .35s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(245,239,227,.12); color: var(--cream); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; transition: background .3s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--brass); color: var(--pine-deep); }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav svg, .lightbox__close svg { width: 22px; height: 22px; }
.lightbox__prev { left: 1.4rem; } .lightbox__next { right: 1.4rem; }
.lightbox__cap { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: rgba(245,239,227,.85); font-size: 0.86rem; text-align: center; max-width: 80vw; }
@media (max-width: 620px) { .lightbox__nav { top: auto; bottom: 1.4rem; transform: none; } .lightbox__prev { left: 25%; } .lightbox__next { right: 25%; } }

/* ---------- Quote ---------- */
.quote { max-width: 30ch; margin-inline: auto; text-align: center; }
.quote blockquote { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.35; font-weight: 400; font-style: italic; }
.quote cite { display: block; margin-top: 1.4rem; font-family: var(--font-body); font-style: normal; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: var(--cream); text-align: center; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(15,26,19,.82), rgba(15,26,19,.88)); }
.cta-band h2 { color: var(--white); max-width: 20ch; margin: 0.8rem auto 1.2rem; }
.cta-band p { max-width: 50ch; margin: 0 auto 2rem; color: rgba(245,239,227,.9); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); }
.field label .req { color: var(--cedar); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.95rem; padding: 0.8rem 0.9rem; border: 1.5px solid var(--paper-line);
  border-radius: var(--radius); background: var(--white); color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(195,154,82,.18); }
.field input:user-invalid, .field textarea:user-invalid, .field select:user-invalid { border-color: #b4442e; }
.field .err { font-size: 0.78rem; color: #b4442e; min-height: 1em; }
.form-note { font-size: 0.82rem; color: var(--stone); }
.form-success { display: none; padding: 1.2rem 1.4rem; background: rgba(47,83,64,.1); border: 1px solid var(--pine-soft); border-radius: var(--radius); color: var(--pine); font-weight: 500; }
.form-success.show { display: block; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* contact info list */
.contact-cards { display: grid; gap: 1rem; }
.contact-card { display: flex; gap: 1rem; padding: 1.2rem 1.3rem; background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius-lg); align-items: flex-start; }
.contact-card .ico { flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--pine); color: var(--brass); display: grid; place-items: center; }
.contact-card .ico svg { width: 20px; height: 20px; }
.contact-card h3 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 700; }
.contact-card a, .contact-card p { color: var(--ink-soft); font-size: 0.95rem; }
.contact-card a:hover { color: var(--cedar); }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-deep); color: rgba(245,239,227,.75); padding-top: clamp(3rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(245,239,227,.12); }
.footer-brand .brand__name { color: var(--cream); }
.footer-brand p { font-size: 0.9rem; margin-top: 1rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a, .footer-col li { font-size: 0.9rem; transition: color .3s; }
.footer-col a:hover { color: var(--cream); }
.social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.social a { width: 38px; height: 38px; border: 1px solid rgba(245,239,227,.2); border-radius: 50%; display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s; }
.social a:hover { background: var(--brass); color: var(--pine-deep); border-color: var(--brass); }
.social svg { width: 17px; height: 17px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: 1.6rem; font-size: 0.8rem; color: rgba(245,239,227,.55); }
.footer-bottom a:hover { color: var(--cream); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-bottom .credit-link { color: rgba(245,239,227,.78); font-weight: 600; border-bottom: 1px solid rgba(195,154,82,.45); padding-bottom: 1px; transition: color .3s, border-color .3s; white-space: nowrap; }
.footer-bottom .credit-link:hover { color: var(--brass); border-color: var(--brass); }

/* ---------- Utility ---------- */
.prose p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.prose h3 { margin: 2rem 0 0.8rem; }
.divider-mark { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--brass); margin: 0 auto; }
.divider-mark::before, .divider-mark::after { content: ""; height: 1px; width: 60px; background: currentColor; opacity: .5; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); }
@media (max-width: 720px) { .grid-2 { grid-template-columns: 1fr; } }
.pill { display: inline-block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--pine-deep); background: var(--brass); padding: 0.35rem 0.8rem; border-radius: 100px; }
.anchor { scroll-margin-top: 90px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 300; background: var(--brass); color: var(--pine-deep); padding: 0.7rem 1.2rem; font-weight: 600; border-radius: 0 0 var(--radius) 0; }
.skip-link:focus { left: 0; }
