/* ===== Base ===== */
:root {
  --bg: #0a0a0c;
  --bg-deep: #050507;
  --surface: #14110d;
  --surface-2: #1a1612;
  --line: rgba(212,175,95,.18);
  --gold: #d4af5f;
  --gold-bright: #ecc784;
  --gold-soft: rgba(212,175,95,.55);
  --cream: #f5eede;
  --cream-dim: #d9d0bc;
  --muted: #a89b80;
  --crimson: #8b1a1a;
  --shadow-1: 0 8px 32px rgba(0,0,0,.55);
  --shadow-2: 0 24px 80px rgba(0,0,0,.65);
  --maxw: 1240px;
  --pad: clamp(16px, 4vw, 56px);
  --radius: 14px;
  --serif: "Noto Serif KR", "Cormorant Garamond", "Apple SD Gothic Neo", "Malgun Gothic", serif;
  --sans: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* Background ambient gradient + grain */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60vw 50vh at 80% -10%, rgba(212,175,95,.10), transparent 60%),
    radial-gradient(50vw 40vh at -10% 20%, rgba(139,26,26,.10), transparent 60%),
    radial-gradient(80vw 60vh at 50% 110%, rgba(212,175,95,.07), transparent 65%),
    linear-gradient(180deg, #0a0a0c 0%, #07060a 60%, #050407 100%);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.012) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  opacity: .4;
}

.ag-particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  width: 100%; height: 100%;
}

/* ===== Top bar ===== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px var(--pad);
  background: linear-gradient(180deg, rgba(8,8,10,.92) 0%, rgba(8,8,10,.72) 80%, rgba(8,8,10,0) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.topbar.scrolled {
  background: rgba(8,8,10,.96);
  border-bottom-color: rgba(212,175,95,.28);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--gold); }
.brand__hex { display: inline-flex; align-items: center; justify-content: center; }
.brand__txt { font-family: var(--serif); font-weight: 700; font-size: 17px; letter-spacing: .01em; color: var(--cream); white-space: nowrap; }
.topnav { margin-left: auto; display: flex; gap: 22px; flex-wrap: wrap; }
.topnav a { font-size: 14px; color: var(--cream-dim); position: relative; padding: 6px 2px; transition: color .2s; }
.topnav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.topnav a:hover { color: var(--gold-bright); }
.topnav a:hover::after { transform: scaleX(1); }
.topcall {
  display: inline-flex; flex-direction: column; padding: 9px 16px;
  border: 1px solid var(--gold-soft); border-radius: 999px;
  background: rgba(212,175,95,.06);
  transition: background .25s, border-color .25s, transform .25s;
}
.topcall:hover { background: rgba(212,175,95,.14); border-color: var(--gold); transform: translateY(-1px); }
.topcall span { font-size: 10px; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; }
.topcall strong { font-family: var(--serif); font-size: 14px; color: var(--cream); letter-spacing: .02em; }

@media (max-width: 980px) {
  .topnav { display: none; }
  .brand__txt { font-size: 15px; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 14px; letter-spacing: .02em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.7,.3,1.3), background .25s, border-color .25s, box-shadow .3s;
  position: relative;
}
.btn--gold {
  color: #1a140a;
  background: linear-gradient(135deg, #f0d28a 0%, #d4af5f 50%, #b88a3d 100%);
  box-shadow: 0 10px 30px rgba(212,175,95,.18), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(212,175,95,.32), inset 0 1px 0 rgba(255,255,255,.55); }
.btn--ghost {
  color: var(--cream); background: rgba(245,238,222,.04);
  border-color: rgba(245,238,222,.22);
}
.btn--ghost:hover { background: rgba(245,238,222,.10); border-color: var(--gold); transform: translateY(-3px); }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 18px 34px; font-size: 16px; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 120px var(--pad) 80px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: -10% -5% -5% -5%; z-index: -1; will-change: transform; }
.hero__bg img { width: 100%; height: 110%; object-fit: cover; }
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60vw 80vh at 20% 50%, rgba(0,0,0,.85), rgba(0,0,0,.4) 60%, rgba(0,0,0,.6)),
    linear-gradient(180deg, rgba(8,8,10,.5) 0%, rgba(8,8,10,.65) 60%, rgba(8,8,10,.95) 100%);
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; width: 100%; position: relative; }
.hero__eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: .35em; color: var(--gold);
  padding: 8px 18px; border: 1px solid var(--gold-soft); border-radius: 999px;
  background: rgba(212,175,95,.05); backdrop-filter: blur(6px);
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(40px, 6.8vw, 96px); line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--cream);
  text-shadow: 0 8px 40px rgba(0,0,0,.55);
  background: linear-gradient(180deg, #f9f1dd 0%, #d4b977 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__title span { display: inline-block; }
.hero__title span + span { margin-top: 4px; }
@media (min-width: 1080px) {
  .hero__title { display: flex; flex-direction: column; gap: 4px; }
}
.hero__sub {
  max-width: 720px; font-size: clamp(15px, 1.25vw, 19px);
  color: var(--cream-dim); margin: 0 0 36px; line-height: 1.75;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__chips {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  max-width: 980px;
}
.hero__chips li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 14px 18px; border: 1px solid var(--line);
  background: rgba(20,17,13,.6); backdrop-filter: blur(8px);
  border-radius: 12px; color: var(--cream-dim);
  font-size: 14px;
}
.hero__chips li span { color: var(--gold); font-size: 11px; letter-spacing: .22em; min-width: 32px; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 1px solid var(--gold-soft); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 8px;
}
.hero__scroll span { display: block; width: 2px; height: 8px; background: var(--gold); border-radius: 2px; animation: scrolldown 2s ease-in-out infinite; }
@keyframes scrolldown { 0%{transform:translateY(0); opacity:1} 60%{transform:translateY(14px); opacity:0} 100%{opacity:0} }

/* ===== Ribbon ===== */
.ribbon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(20,17,13,.0), rgba(20,17,13,.6) 20%, rgba(20,17,13,.6) 80%, rgba(20,17,13,.0));
  overflow: hidden;
  padding: 16px 0;
}
.ribbon__track { display: inline-flex; gap: 60px; white-space: nowrap; padding-left: 60px; animation: ribbon 60s linear infinite; }
.ribbon__track span { font-family: var(--serif); font-weight: 500; font-size: 15px; color: var(--cream-dim); letter-spacing: .02em; }
.ribbon__track span::after { content: "·"; margin-left: 60px; color: var(--gold); }
@keyframes ribbon { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Section heads ===== */
.section-head { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); text-align: center; margin-bottom: 56px; }
.kicker {
  display: inline-block; font-size: 11px; letter-spacing: .42em;
  color: var(--gold); margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
}
.kicker::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 0; width: 30px; height: 1px; background: var(--gold);
}
.section-head h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(28px, 4.6vw, 56px); line-height: 1.18;
  letter-spacing: -0.015em; margin: 0;
  color: var(--cream);
}
.section-head h2 em { font-style: normal; color: var(--gold); }
.section-head__lead { color: var(--muted); margin-top: 18px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ===== Story ===== */
.story { position: relative; padding: 140px var(--pad); overflow: hidden; }
.story__bg { position: absolute; inset: 0; z-index: 0; }
.story__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .25; filter: saturate(.7) blur(2px); }
.story__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,.85), rgba(8,8,10,.95)); }
.story__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
.story__copy h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(28px, 4vw, 48px); line-height: 1.2; margin: 16px 0 24px;
}
.story__copy h2 em { font-style: italic; color: var(--gold); font-weight: 600; }
.story__copy p { color: var(--cream-dim); margin: 0 0 18px; max-width: 580px; font-size: 16px; }
.story__copy strong { color: var(--cream); font-weight: 600; }
.story__quote {
  margin-top: 28px; padding: 22px 26px;
  border-left: 2px solid var(--gold);
  background: rgba(212,175,95,.06);
  font-family: var(--serif); font-style: italic;
  color: var(--cream); font-size: 17px; line-height: 1.65;
  position: relative;
}
.story__quote-mark { color: var(--gold); font-size: 36px; line-height: 0; vertical-align: -8px; margin-right: 6px; font-family: serif; }

.story__art { position: relative; min-height: 480px; }
.float-card {
  position: absolute; margin: 0;
  width: 56%; aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
}
.float-card img { width: 100%; height: 100%; object-fit: cover; }
.float-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.85));
  color: var(--cream); font-family: var(--serif); font-size: 14px;
  letter-spacing: .02em;
}
.float-card--a { left: 4%;  top: 3%;  z-index: 3; animation: bob1 7s ease-in-out infinite; }
.float-card--b { right: 0;  top: 18%; width: 50%; z-index: 2; animation: bob2 8s ease-in-out infinite; }
.float-card--c { left: 18%; bottom: 0; width: 52%; z-index: 1; animation: bob3 9s ease-in-out infinite; }

@keyframes bob1 { 0%,100%{ transform: translateY(0) rotate(-1.5deg) } 50%{ transform: translateY(-14px) rotate(-2deg) } }
@keyframes bob2 { 0%,100%{ transform: translateY(0) rotate(2deg) }    50%{ transform: translateY(-18px) rotate(2.6deg) } }
@keyframes bob3 { 0%,100%{ transform: translateY(0) rotate(-1deg) }   50%{ transform: translateY(-10px) rotate(-1.4deg) } }

@media (max-width: 880px) {
  .story__inner { grid-template-columns: 1fr; gap: 40px; }
  .story__art { min-height: 560px; }
}

/* ===== Pillars ===== */
.pillars { padding: 120px var(--pad); background: linear-gradient(180deg, transparent, rgba(212,175,95,.04), transparent); }
.pillars__grid {
  list-style: none; padding: 0; margin: 0;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  counter-reset: pillar;
}
.pillar {
  position: relative;
  padding: 40px 32px 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20,17,13,.85), rgba(12,10,8,.85));
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.3,1.2), box-shadow .5s, border-color .5s;
}
.pillar:hover { transform: translateY(-10px); border-color: var(--gold-soft); box-shadow: var(--shadow-2); }
.pillar::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(212,175,95,.18), transparent 70%);
  opacity: 0; transition: opacity .5s;
}
.pillar:hover::before { opacity: 1; }
.pillar__no {
  font-family: "Cormorant Garamond", var(--serif);
  font-weight: 600; font-size: 64px; color: var(--gold);
  display: block; line-height: 1; margin-bottom: 18px;
  text-shadow: 0 0 30px rgba(212,175,95,.3);
}
.pillar__img {
  width: 100%; aspect-ratio: 16/10;
  border-radius: 10px; overflow: hidden; margin-bottom: 22px;
  border: 1px solid var(--line);
}
.pillar__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s ease; }
.pillar:hover .pillar__img img { transform: scale(1.08); }
.pillar h3 { font-family: var(--serif); font-weight: 700; font-size: 22px; margin: 0 0 12px; color: var(--cream); }
.pillar p { color: var(--cream-dim); margin: 0; font-size: 15px; line-height: 1.7; }
.pillar p strong { color: var(--gold-bright); font-weight: 600; }

@media (max-width: 920px) {
  .pillars__grid { grid-template-columns: 1fr; }
}

/* ===== Signature ===== */
.signature { padding: 120px var(--pad); }
.sig { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; gap: 80px; }
.sig__row {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
}
.sig__row--b .sig__media { order: 2; }
.sig__row--b .sig__copy { order: 1; }
.sig__media {
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-2);
  position: relative;
  aspect-ratio: 4/5; max-height: 640px;
  border: 1px solid var(--line);
  transform: translateZ(0);
}
.sig__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.sig__row:hover .sig__media img { transform: scale(1.05); }
.sig__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.5));
  pointer-events: none;
}
.sig__copy { padding: 8px 0; }
.sig__tag {
  display: inline-block; font-size: 11px; letter-spacing: .25em; color: var(--gold);
  padding: 7px 14px; border: 1px solid var(--gold-soft); border-radius: 999px;
  margin-bottom: 18px;
}
.sig__copy h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.15; letter-spacing: -.015em;
  margin: 0 0 18px;
  color: var(--cream);
}
.sig__copy p { color: var(--cream-dim); margin: 0 0 22px; font-size: 16px; line-height: 1.75; max-width: 560px; }
.sig__price { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sig__price li {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 14px 0; border-top: 1px solid var(--line);
  color: var(--cream-dim); font-size: 15px;
  max-width: 460px;
}
.sig__price li em {
  font-style: normal; font-family: var(--serif); font-weight: 600;
  font-size: 22px; color: var(--gold-bright);
}

@media (max-width: 880px) {
  .sig__row, .sig__row--b { grid-template-columns: 1fr; gap: 28px; }
  .sig__row--b .sig__media, .sig__row--b .sig__copy { order: initial; }
}

/* ===== Menu posters ===== */
.menu { padding: 120px var(--pad); background: linear-gradient(180deg, transparent, rgba(20,17,13,.5), transparent); }
.menu__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.menu__card {
  position: relative; display: block;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
  aspect-ratio: 3/4;
  transition: transform .5s cubic-bezier(.2,.7,.3,1.3), box-shadow .5s, border-color .5s;
}
.menu__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.menu__card span {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  padding: 10px 14px;
  background: rgba(8,6,4,.78); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 12px; letter-spacing: .04em;
  color: var(--cream); font-family: var(--serif); font-weight: 500;
}
.menu__card:hover { transform: translateY(-8px); border-color: var(--gold-soft); box-shadow: var(--shadow-2); }
.menu__card:hover img { transform: scale(1.08); }

@media (max-width: 1080px) { .menu__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .menu__grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Audience ===== */
.audience { padding: 120px var(--pad); }
.audience__grid {
  max-width: 1100px; margin: 0 auto;
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.audience__grid li {
  padding: 38px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20,17,13,.6), rgba(8,6,4,.6));
  color: var(--cream-dim); font-size: 16px; line-height: 1.75;
  position: relative;
  transition: transform .4s, border-color .4s;
}
.audience__grid li:hover { transform: translateY(-6px); border-color: var(--gold-soft); }
.audience__grid li::before {
  content: ""; position: absolute; left: 28px; top: -1px;
  width: 36px; height: 2px; background: var(--gold);
}
.audience__grid li strong { color: var(--gold-bright); font-weight: 600; }

@media (max-width: 880px) { .audience__grid { grid-template-columns: 1fr; } }

/* ===== Gallery ===== */
.gallery { padding: 120px var(--pad); }
.gallery__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.g-item {
  display: block; overflow: hidden; border-radius: 12px;
  border: 1px solid var(--line); background: var(--surface-2);
  position: relative;
  transition: transform .4s cubic-bezier(.2,.7,.3,1.3), box-shadow .4s, border-color .4s;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.g-item--tall { grid-row: span 2; }
.g-item--wide { grid-column: span 2; }
.g-item:hover { transform: translateY(-6px) scale(1.01); border-color: var(--gold-soft); box-shadow: var(--shadow-2); z-index: 2; }
.g-item:hover img { transform: scale(1.08); }

@media (max-width: 1080px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }

/* ===== Info ===== */
.info { padding: 120px var(--pad); background: linear-gradient(180deg, transparent, rgba(212,175,95,.03), transparent); }
.info__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  grid-auto-rows: minmax(220px, auto);
}
.info-card {
  position: relative;
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20,17,13,.85), rgba(8,6,4,.85));
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s, border-color .4s, box-shadow .4s;
}
.info-card:hover { transform: translateY(-6px); border-color: var(--gold-soft); box-shadow: var(--shadow-2); }
.info-card__label {
  font-size: 11px; letter-spacing: .32em; color: var(--gold); text-transform: uppercase;
}
.info-card__big {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px); line-height: 1.2;
  color: var(--cream); letter-spacing: -.01em;
  margin: 0;
}
.info-card__big--sm { font-size: clamp(18px, 1.6vw, 22px); }
.info-card__sub { color: var(--cream-dim); font-size: 14px; line-height: 1.7; margin: 0; }
.info-card__sub strong { color: var(--gold-bright); font-weight: 600; }
.info-card .btn { align-self: flex-start; margin-top: auto; }
.info-card--accent {
  background: linear-gradient(135deg, rgba(212,175,95,.18) 0%, rgba(20,17,13,.9) 50%);
  border-color: rgba(212,175,95,.35);
}
.info-card--accent .info-card__big {
  font-size: clamp(28px, 3vw, 40px);
  background: linear-gradient(180deg, #f5e6b6, #d4af5f);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.info-card--wide { grid-column: span 2; }
.info-card--map { grid-column: span 3; padding: 0; overflow: hidden; min-height: 380px; }
.info-card--map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.35) contrast(1.05); }

@media (max-width: 980px) {
  .info__grid { grid-template-columns: repeat(2, 1fr); }
  .info-card--wide { grid-column: span 2; }
  .info-card--map { grid-column: span 2; }
}
@media (max-width: 640px) {
  .info__grid { grid-template-columns: 1fr; }
  .info-card--wide, .info-card--map { grid-column: span 1; }
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 140px var(--pad);
  text-align: center;
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(212,175,95,.14), transparent 70%),
    linear-gradient(180deg, transparent, rgba(20,17,13,.85), transparent);
  overflow: hidden;
}
.cta__inner { max-width: 920px; margin: 0 auto; }
.cta h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(28px, 4.2vw, 52px); line-height: 1.18;
  margin: 0 0 18px; color: var(--cream);
  letter-spacing: -.015em;
}
.cta p { color: var(--cream-dim); font-size: 17px; margin: 0 0 38px; }
.cta__buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ===== Footer ===== */
.footer { padding: 80px var(--pad) 48px; background: var(--bg-deep); border-top: 1px solid var(--line); }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; }
.footer__brand { display: flex; flex-direction: column; gap: 10px; color: var(--gold); }
.footer__brandtxt { font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--cream); }
.footer__lead { color: var(--muted); font-size: 14px; line-height: 1.75; max-width: 360px; margin: 0; }
.footer__contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__contact li { color: var(--cream-dim); font-size: 14px; }
.footer__contact li span { display: inline-block; min-width: 48px; color: var(--gold); font-size: 11px; letter-spacing: .22em; }
.footer__contact li a { color: var(--cream); }
.footer__links { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer__links a { color: var(--cream-dim); font-size: 14px; padding-bottom: 4px; border-bottom: 1px solid transparent; transition: color .25s, border-color .25s; }
.footer__links a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.footer__legal {
  max-width: var(--maxw); margin: 56px auto 0;
  border-top: 1px solid var(--line); padding-top: 28px;
  color: var(--muted); font-size: 13px; line-height: 1.8;
}
.footer__legal p { margin: 0; }
.footer__legal .copy { margin-top: 14px; color: rgba(168,155,128,.6); font-size: 12px; }

@media (max-width: 880px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } }

/* ===== Anti-gravity reveal ===== */
.ag-rise {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(.2,.7,.3,1);
  transition-delay: 0ms;
  will-change: transform, opacity;
}
.ag-rise.is-in { opacity: 1; transform: translateY(0); }

/* Continuous subtle hover lift on big interactive cards */
@media (prefers-reduced-motion: reduce) {
  .float-card--a, .float-card--b, .float-card--c { animation: none; }
  .ribbon__track { animation: none; }
  .ag-rise { opacity: 1; transform: none; transition: none; }
}
