@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Spectral:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Libre+Franklin:wght@400;500;600&display=swap');

:root {
  --bg: #0C2130;
  --bg-deep: #08192A;
  --bg-black: #071722;
  --ink: #EFE9DD;
  --ink-strong: #F6F1E7;
  --ink-soft: rgba(239,233,221,0.84);
  --ink-softer: rgba(239,233,221,0.66);
  --gold: #E9C88A;
  --gold-strong: #F6DCA6;
  --line: rgba(233,200,138,0.3);
  --line-soft: rgba(233,200,138,0.24);
  --line-faint: rgba(233,200,138,0.18);
  --panel: linear-gradient(180deg, rgba(233,200,138,0.06), rgba(233,200,138,0));
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Spectral', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration-color: rgba(233,200,138,0.45); text-underline-offset: 5px; }
a:hover { color: var(--gold-strong); text-decoration-color: var(--gold-strong); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition: none !important; }
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 22px; }
.wrap-mid { max-width: 940px; margin: 0 auto; padding: 0 22px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 20;
  background: rgba(12,33,48,0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
header.site .bar {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 30px;
}
header.site .logo {
  font-family: 'EB Garamond', Georgia, serif; font-size: 21px;
  letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; color: var(--ink);
  margin-right: auto;
}
header.site nav {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  font-family: 'Libre Franklin', sans-serif; font-weight: 500; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
}
header.site nav a { text-decoration: none; color: var(--ink); padding: 5px 0; border-bottom: 1px solid transparent; }
header.site nav a:hover, header.site nav a.current { border-bottom-color: var(--gold); color: var(--gold); }
header.site nav a.tel { color: var(--ink); text-transform: none; letter-spacing: 0.02em; font-size: 12px; }
header.site nav a.tel:hover { color: var(--gold); }

/* Buttons */
.btn {
  font-family: 'EB Garamond', Georgia, serif; font-size: clamp(18px,1.7vw,21px); letter-spacing: 0.06em;
  text-decoration: none; padding: 15px 34px; display: inline-block; border: 1px solid var(--gold);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.btn-solid { background: var(--gold); color: var(--bg); }
.btn-solid:hover { background: transparent; color: var(--gold); }
.btn-outline { border-color: rgba(233,200,138,0.5); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 30px 0 34px; }
.divider span.line { height: 1px; width: min(90px,16vw); background: rgba(233,200,138,0.5); }
.divider span.dot { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }

/* Hero */
.hero-outer { padding: clamp(26px,4vw,58px) 0 0; }
.hero-outer .frame-wrap {
  max-width: 1400px; margin: 0 auto; padding: clamp(10px,1.4vw,20px);
  border: 1px solid rgba(233,200,138,0.38); background: var(--panel);
}
.hero-frame {
  position: relative; width: 100%; aspect-ratio: 16/9; max-height: 74vh; overflow: hidden;
  background: var(--bg-black); border: 1px solid rgba(233,200,138,0.22);
}
.hero-frame .lamp {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(110% 85% at 50% 118%, rgba(238,199,124,0.14), rgba(238,199,124,0) 58%);
  box-shadow: inset 0 0 120px rgba(7,23,34,0.55);
}
.hero-frame .frame { position: absolute; inset: 0; opacity: 0; transition: opacity 1800ms ease-in-out; }
.hero-frame .frame.active { opacity: 1; }
.hero-frame .frame img, .hero-frame .frame .lampbg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.hero-copy { max-width: 1000px; margin: 0 auto; padding: clamp(30px,4vw,54px) 22px 0; text-align: center; }
.hero-copy h1 {
  margin: 0 auto; max-width: 20ch; font-family: 'EB Garamond', Georgia, serif; font-weight: 400;
  font-size: clamp(36px,6.4vw,82px); line-height: 1.1; color: var(--ink-strong); text-wrap: balance;
}
.hero-copy p { margin: 26px auto 0; max-width: 60ch; font-size: clamp(16.5px,1.6vw,20px); line-height: 1.72; color: var(--ink-soft); text-wrap: pretty; }
.hero-copy p.sub { margin: 18px auto 0; max-width: 56ch; font-size: clamp(16px,1.5vw,18.5px); color: var(--ink-softer); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; padding-top: 32px; }

/* Signature strip */
.montage-section { max-width: 1200px; margin: 0 auto; padding: clamp(60px,8vw,110px) 22px 0; }
.montage-head { text-align: center; margin-bottom: 34px; }
.montage-head .eyebrow { display: block; margin-bottom: 16px; }
.montage-head h2 { margin: 0; font-family: 'EB Garamond', Georgia, serif; font-size: clamp(30px,4.6vw,56px); line-height: 1.1; color: var(--ink-strong); }
.montage-head .meta { display: block; margin-top: 12px; font-family: 'Libre Franklin', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-softer); }

.montage-grid { display: grid; gap: 16px; }
.frame-large-wrap { padding: clamp(8px,1.1vw,16px); border: 1px solid var(--line); }
.frame-large { position: relative; width: 100%; aspect-ratio: 3/2; overflow: hidden; background: var(--bg-black); }
.frame-large img, .frame-large .lampbg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.frame-large .lamp { position: absolute; inset: 0; background: radial-gradient(100% 80% at 50% 115%, rgba(238,199,124,0.12), rgba(238,199,124,0) 60%); box-shadow: inset 0 0 100px rgba(7,23,34,0.5); pointer-events: none; }
.frame-large .meta { position: absolute; left: 0; bottom: 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px; padding: 20px 22px; z-index: 2; }
.frame-large .meta .year { font-family: 'EB Garamond', Georgia, serif; font-size: clamp(24px,3vw,40px); color: var(--ink-strong); line-height: 1; }
.frame-large .meta span:not(.year) { font-family: 'Libre Franklin', sans-serif; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(246,241,231,0.84); }
.frame-large .tc { position: absolute; right: 0; top: 0; padding: 20px 22px; z-index: 2; font-family: 'Libre Franklin', sans-serif; font-size: 11px; letter-spacing: 0.2em; color: rgba(246,241,231,0.6); }

.strip { display: flex; gap: 4px; touch-action: none; cursor: ew-resize; user-select: none; padding: 6px; border: 1px solid rgba(233,200,138,0.28); background: rgba(233,200,138,0.05); }
.strip .cell { flex: 1 1 0; min-width: 0; aspect-ratio: 3/2; position: relative; overflow: hidden; opacity: 0.5; transition: opacity 260ms ease; }
.strip .cell.active { opacity: 1; }
.strip .cell img, .strip .cell .lampbg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.strip .cell .ring { position: absolute; inset: 0; border: 2px solid transparent; }
.strip .cell.active .ring { border-color: var(--gold); }

.strip-range { display: flex; justify-content: space-between; margin-top: 10px; font-family: 'Libre Franklin', sans-serif; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(239,233,221,0.6); }

/* Two-up feature band */
.band-dark { background: var(--bg-deep); margin-top: clamp(64px,9vw,120px); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.band-dark .grid { padding: clamp(50px,7vw,96px) 22px; display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: clamp(36px,5vw,72px); }
.band-dark .col { display: grid; gap: 18px; align-content: start; }
.band-dark .eyebrow { color: var(--gold); }
.band-dark h3 { margin: 0; font-family: 'EB Garamond', Georgia, serif; font-size: clamp(26px,3.2vw,40px); line-height: 1.14; color: var(--ink-strong); }
.band-dark p { margin: 0; font-size: 17px; line-height: 1.74; color: var(--ink-soft); max-width: 46ch; text-wrap: pretty; }

/* Eyebrow (shared) */
.eyebrow { font-family: 'Libre Franklin', sans-serif; font-weight: 600; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }

/* Tiers */
.tiers-section { max-width: 1200px; margin: 0 auto; padding: clamp(56px,8vw,104px) 22px 0; }
.tiers-section .head { text-align: center; margin-bottom: 40px; }
.tiers-section h2 { margin: 0; font-family: 'EB Garamond', Georgia, serif; font-size: clamp(30px,4vw,50px); color: var(--ink-strong); }
.tiers-section .note { margin-top: 12px; font-family: 'Libre Franklin', sans-serif; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.tiers-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: clamp(14px,2vw,26px); }
.tier { border: 1px solid var(--line); background: var(--panel); padding: 30px 26px 32px; display: grid; gap: 16px; align-content: start; transition: border-color 200ms ease; }
.tier:hover { border-color: rgba(233,200,138,0.62); }
.tier h3 { margin: 0; font-family: 'EB Garamond', Georgia, serif; font-size: 30px; color: var(--ink-strong); }
.tier .price { font-family: 'EB Garamond', Georgia, serif; font-size: 27px; color: var(--gold); }
.tier .rule { height: 1px; background: rgba(233,200,138,0.28); }
.tier .spec { font-family: 'Libre Franklin', sans-serif; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-softer); }
.tier p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--ink-soft); text-wrap: pretty; }

/* Contact card */
.contact-card { max-width: 1200px; margin: 0 auto; padding: clamp(56px,8vw,104px) 22px clamp(70px,9vw,120px); }
.contact-card .inner {
  border: 1px solid rgba(233,200,138,0.32); padding: clamp(30px,5vw,72px); text-align: center;
  background: radial-gradient(90% 130% at 50% 130%, rgba(238,199,124,0.10), rgba(238,199,124,0) 60%);
}
.contact-card h2 { margin: 0 auto; max-width: 24ch; font-family: 'EB Garamond', Georgia, serif; font-size: clamp(28px,4vw,50px); line-height: 1.12; color: var(--ink-strong); }
.contact-card p { margin: 22px auto 0; max-width: 54ch; font-size: 17px; line-height: 1.72; color: var(--ink-soft); text-wrap: pretty; }
.contact-card .links { display: flex; flex-wrap: wrap; gap: 10px 30px; justify-content: center; margin-top: 28px; font-family: 'EB Garamond', Georgia, serif; font-size: clamp(20px,2.4vw,28px); }
.contact-card .links a { text-decoration: none; }

/* Article pages */
.article { padding: clamp(48px,7vw,104px) 22px clamp(70px,9vw,110px); text-align: center; }
.article h1 { margin: 18px 0 0; font-family: 'EB Garamond', Georgia, serif; font-size: clamp(34px,5.4vw,64px); line-height: 1.1; color: var(--ink-strong); text-wrap: balance; }
.article .body { display: grid; gap: 24px; font-size: clamp(17px,1.6vw,19.5px); line-height: 1.78; color: var(--ink-soft); max-width: 64ch; margin: 0 auto; text-align: left; }
.article .body p { margin: 0; text-wrap: pretty; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: clamp(12px,2vw,20px); margin-top: 56px; }
.stat-grid .stat { border: 1px solid rgba(233,200,138,0.28); padding: 26px 20px; text-align: center; background: var(--panel); }
.stat-grid .stat .num { font-family: 'EB Garamond', Georgia, serif; font-size: clamp(30px,3.6vw,44px); color: var(--gold); line-height: 1; }
.stat-grid .stat .label { font-family: 'Libre Franklin', sans-serif; font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-softer); margin-top: 12px; }

.rate-rows { display: grid; gap: clamp(10px,1.4vw,14px); margin-top: clamp(14px,2vw,20px); text-align: left; }
.rate-row { border: 1px solid rgba(233,200,138,0.26); padding: 20px 24px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px; background: var(--panel); }
.rate-row .rate { font-family: 'EB Garamond', Georgia, serif; font-size: clamp(20px,2.4vw,28px); color: var(--gold); }
.rate-row .spec { font-family: 'Libre Franklin', sans-serif; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-softer); }
.rate-row .note { margin-left: auto; font-size: 16px; line-height: 1.6; color: var(--ink-soft); }

.supplied { margin-top: 54px; border: 1px solid rgba(233,200,138,0.3); padding: clamp(26px,4vw,48px); background: var(--panel); text-align: left; }
.supplied .eyebrow { font-size: 18px; margin-bottom: 22px; display: block; }
.supplied .grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px 36px; font-size: 16.5px; line-height: 1.68; color: var(--ink-soft); }

.steps { display: grid; gap: clamp(10px,1.4vw,16px); margin-top: 52px; text-align: left; }
.step {
  border: 1px solid rgba(233,200,138,0.26); padding: clamp(24px,3vw,36px) clamp(24px,3vw,38px);
  display: grid; grid-template-columns: auto minmax(0,1fr); gap: clamp(20px,3vw,40px); align-items: start;
  background: var(--panel); transition: border-color 200ms ease;
}
.step:hover { border-color: rgba(233,200,138,0.55); }
.step .n { font-family: 'EB Garamond', Georgia, serif; font-size: clamp(48px,7vw,86px); line-height: 0.8; color: rgba(233,200,138,0.55); }
.step .col { display: grid; gap: 10px; }
.step .k { font-family: 'EB Garamond', Georgia, serif; font-size: clamp(24px,2.8vw,32px); line-height: 1.1; color: var(--ink-strong); }
.step .v { font-size: clamp(16px,1.5vw,18px); line-height: 1.7; color: var(--ink-soft); max-width: 56ch; text-wrap: pretty; }

.article .followup { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.article .footnote { margin: 36px auto 0; max-width: 58ch; text-align: center; font-size: 17px; line-height: 1.7; color: var(--ink-soft); text-wrap: pretty; }

/* Contact form */
.form-card { margin-top: clamp(48px,7vw,84px); border: 1px solid rgba(233,200,138,0.34); padding: clamp(28px,5vw,58px); background: radial-gradient(90% 130% at 50% 130%, rgba(238,199,124,0.09), rgba(238,199,124,0) 62%); }
.form-card .head { text-align: center; margin-bottom: clamp(26px,3.5vw,40px); }
.form-card .head h2 { margin: 16px 0 0; font-family: 'EB Garamond', Georgia, serif; font-size: clamp(28px,3.8vw,46px); line-height: 1.12; color: var(--ink-strong); }
.form-card .head p { margin: 14px auto 0; max-width: 50ch; font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); text-wrap: pretty; }
.form-card .thanks { text-align: center; display: grid; gap: 16px; justify-items: center; }
.form-card .thanks[hidden] { display: none; }
.form-card .thanks h2 { margin: 0; font-family: 'EB Garamond', Georgia, serif; font-size: clamp(26px,3.4vw,40px); line-height: 1.14; color: var(--ink-strong); }
.form-card .thanks p { margin: 0; max-width: 46ch; font-size: 17px; line-height: 1.7; color: var(--ink-soft); text-wrap: pretty; }

.lead-form { display: grid; gap: clamp(14px,2vw,20px); max-width: 660px; margin: 0 auto; text-align: left; }
.lead-form .row { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: clamp(14px,2vw,20px); }
.lead-form label { display: grid; gap: 8px; }
.lead-form label span { font-family: 'Libre Franklin', sans-serif; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-softer); }
.lead-form input, .lead-form select, .lead-form textarea {
  background: rgba(233,200,138,0.06); border: 1px solid rgba(233,200,138,0.3); color: var(--ink-strong);
  font-family: 'Spectral', Georgia, serif; font-size: 17px; padding: 14px 16px; width: 100%;
}
.lead-form select option { color: var(--bg); }
.lead-form textarea { line-height: 1.6; resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--gold); outline: none; }
.lead-form .submit-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; padding-top: 6px; }
.lead-form button {
  font-family: 'EB Garamond', Georgia, serif; font-size: clamp(18px,1.7vw,21px); letter-spacing: 0.06em;
  background: var(--gold); color: var(--bg); border: 1px solid var(--gold); padding: 15px 34px; cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.lead-form button:hover { background: transparent; color: var(--gold); }
.lead-form .callout { font-size: 15.5px; line-height: 1.6; color: var(--ink-softer); }

/* Footer */
footer.site { border-top: 1px solid var(--line-soft); }
footer.site .bar {
  max-width: 1200px; margin: 0 auto;
  padding: 32px 22px 54px; display: flex; flex-wrap: wrap; gap: 14px 32px; align-items: baseline;
  font-family: 'Libre Franklin', sans-serif; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-softer);
}
footer.site .bar a { text-decoration: none; }
footer.site .bar .tel { margin-left: auto; color: var(--ink); }
footer.site .bar .email { text-transform: none; letter-spacing: 0.06em; }
