:root {
  --ink: #241f1b;
  --paper: #f4efe6;
  --paper-2: #ebe2d5;
  --wine: #6f2434;
  --wine-dark: #481622;
  --moss: #254c3b;
  --gold: #c19a63;
  --line: rgba(36, 31, 27, .18);
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(39, 25, 20, .16);
  --sans: "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.source-bar { background: var(--ink); color: rgba(255,255,255,.74); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.source-bar .container { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.source-bar a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,.35); }

.header { position: sticky; top: 0; z-index: 40; background: rgba(244,239,230,.93); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.nav { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: var(--wine); border-radius: 50% 50% 14% 50%; font-family: var(--serif); font-size: 19px; }
.brand-copy strong { display: block; font-family: var(--serif); font-size: 21px; font-weight: 500; line-height: 1; }
.brand-copy small { display: block; margin-top: 5px; color: #6e625a; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.navlinks { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.navlinks a { position: relative; padding: 8px 0; }
.navlinks a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 1px; height: 1px; background: var(--wine); transition: right .25s ease; }
.navlinks a:hover::after, .navlinks a[aria-current="page"]::after { right: 0; }
.nav-cta { padding: 11px 16px; color: var(--white); background: var(--wine); border: 1px solid var(--wine); border-radius: 999px; font-size: 13px; transition: .25s ease; }
.nav-cta:hover { background: var(--wine-dark); transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); font-weight: 600; }

.hero { position: relative; min-height: 760px; padding: 82px 0 66px; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid var(--line); border-radius: 50%; left: -210px; top: 105px; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 62px; align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--wine); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, .display { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
h1 { margin-bottom: 28px; font-size: clamp(64px, 7.2vw, 108px); line-height: .88; }
h1 em, h2 em { color: var(--wine); font-weight: 400; }
.lead { max-width: 610px; color: #5d534c; font-size: 19px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 20px; border: 1px solid var(--ink); border-radius: 999px; background: transparent; color: var(--ink); cursor: pointer; transition: .25s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(36,31,27,.12); }
.btn.primary { color: var(--white); background: var(--wine); border-color: var(--wine); }
.btn.light { color: var(--ink); background: var(--white); border-color: var(--white); }
.btn.ghost-light { color: var(--white); border-color: rgba(255,255,255,.55); }
.hero-media { position: relative; min-height: 565px; }
.hero-media .frame-main { position: absolute; inset: 0 64px 0 0; overflow: hidden; border-radius: 48% 48% 8px 8px; box-shadow: var(--shadow); }
.hero-media .frame-main img { height: 100%; object-fit: cover; }
.swatch { position: absolute; right: 0; top: 72px; width: 126px; padding: 18px 12px; background: var(--moss); color: var(--white); box-shadow: var(--shadow); transform: rotate(3deg); }
.swatch strong { display: block; font-family: var(--serif); font-size: 30px; }
.swatch span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.media-caption { position: absolute; left: -34px; bottom: 42px; max-width: 245px; padding: 17px 20px; background: var(--white); box-shadow: var(--shadow); font-size: 12px; }
.media-caption b { display: block; margin-bottom: 4px; color: var(--wine); letter-spacing: .08em; text-transform: uppercase; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 58px; border: 1px solid var(--line); background: var(--line); }
.hero-facts div { min-height: 104px; padding: 22px; background: var(--paper); }
.hero-facts b { display: block; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.hero-facts span { color: #70655d; font-size: 12px; }

.section { padding: 105px 0; }
.section.compact { padding: 72px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-head h2, .split h2, .cta h2 { margin-bottom: 0; font-size: clamp(45px, 5vw, 76px); line-height: .98; }
.section-head > p { max-width: 420px; margin-bottom: 4px; color: #655a52; }
.ink { color: var(--white); background: var(--ink); }
.ink .eyebrow { color: #dcb887; }
.ink p { color: rgba(255,255,255,.68); }

.package-preview { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 12px; }
.package-card { min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; background: var(--paper-2); border: 1px solid var(--line); transition: .3s ease; }
.package-card:first-child { background: var(--wine); color: var(--white); }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package-card .code { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; opacity: .7; }
.package-card h3 { margin: auto 0 16px; font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1.02; }
.package-card p { margin-bottom: 20px; opacity: .72; }
.package-card .price { font-family: var(--serif); font-size: 27px; }
.price-note { margin-top: 18px; color: #70655d; font-size: 12px; }

.visual-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
.visual-card { position: relative; min-height: 610px; overflow: hidden; }
.visual-card + .visual-card { min-height: 480px; align-self: end; }
.visual-card img { height: 100%; object-fit: cover; transition: transform .65s ease; }
.visual-card:hover img { transform: scale(1.025); }
.visual-label { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 16px 18px; color: var(--ink); background: rgba(255,253,248,.92); backdrop-filter: blur(8px); font-size: 12px; }
.visual-label strong { display: block; font-family: var(--serif); font-size: 22px; font-weight: 400; }
.proof-note { margin-top: 22px; padding-left: 20px; border-left: 2px solid var(--gold); color: rgba(255,255,255,.65); font-size: 13px; }

.split { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; }
.sticky { align-self: start; position: sticky; top: 130px; }
.principles { border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 62px 1fr; gap: 18px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.principle span { color: var(--wine); font-family: var(--serif); font-size: 18px; }
.principle h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.principle p { margin-bottom: 0; color: #6c6159; }

.status-panel { display: grid; grid-template-columns: .55fr 1.45fr; border: 1px solid var(--line); }
.status-score { display: grid; place-items: center; min-height: 310px; background: var(--moss); color: var(--white); text-align: center; }
.status-score strong { display: block; font-family: var(--serif); font-size: 62px; font-weight: 400; line-height: 1; }
.status-score span { font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.status-copy { padding: 46px; background: var(--paper-2); }
.status-copy h3 { font-family: var(--serif); font-size: 40px; font-weight: 400; }

.cta { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 52px; color: var(--white); background: var(--wine); border-radius: 2px 64px 2px 2px; }
.cta .eyebrow { color: #ebcfa9; }
.cta .actions { margin-top: 0; }

.page-hero { padding: 86px 0 70px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 970px; font-size: clamp(60px, 8vw, 112px); }
.page-hero .lead { max-width: 720px; }
.crumb { margin-bottom: 25px; color: #74695f; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-btn { padding: 10px 16px; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; }
.filter-btn.active, .filter-btn:hover { color: var(--white); background: var(--wine); border-color: var(--wine); }
.service-list { display: grid; gap: 16px; }
.service-item { display: grid; grid-template-columns: 130px 1fr 210px; gap: 30px; align-items: start; padding: 36px; border: 1px solid var(--line); background: rgba(255,255,255,.2); transition: .3s ease; }
.service-item:hover { background: var(--paper-2); }
.service-item[hidden] { display: none; }
.service-item .service-code { color: var(--wine); font-size: 12px; font-weight: 700; letter-spacing: .15em; }
.service-item h2 { margin-bottom: 12px; font-size: 39px; }
.service-item ul { margin: 18px 0 0; padding-left: 18px; color: #5f554d; }
.service-price { text-align: right; }
.service-price strong { display: block; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.service-price span { color: #756a61; font-size: 12px; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gallery-card { grid-column: span 6; position: relative; min-height: 600px; padding: 0; overflow: hidden; border: 0; background: #ddd; cursor: zoom-in; }
.gallery-card:nth-child(2), .gallery-card:nth-child(3) { min-height: 480px; }
.gallery-card img { height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-card:hover img { transform: scale(1.025); }
.gallery-card span { position: absolute; left: 14px; bottom: 14px; padding: 9px 12px; background: rgba(255,253,248,.94); color: var(--ink); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.lightbox { display: none; position: fixed; inset: 0; z-index: 100; padding: 28px; background: rgba(20,16,14,.94); }
.lightbox.open { display: grid; place-items: center; }
.lightbox img { width: auto; max-width: min(94vw, 1080px); max-height: 84vh; object-fit: contain; }
.lightbox-close { position: absolute; right: 25px; top: 20px; width: 46px; height: 46px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; cursor: pointer; font-size: 22px; }
.lightbox-caption { max-width: 900px; margin-top: 12px; color: rgba(255,255,255,.75); font-size: 12px; text-align: center; }

.bio-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 74px; align-items: start; }
.bio-aside { padding: 32px; color: var(--white); background: var(--moss); }
.bio-aside strong { display: block; margin-bottom: 10px; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.bio-copy h2 { font-size: clamp(46px, 5vw, 73px); }
.evidence { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 38px; }
.evidence article { padding: 25px; border: 1px solid var(--line); }
.evidence h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.evidence p { margin-bottom: 0; color: #6b6058; }

.contact-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; }
.contact-card { min-height: 420px; padding: 42px; border: 1px solid var(--line); background: var(--paper-2); }
.contact-card.dark { color: var(--white); background: var(--ink); }
.contact-card h2 { font-size: clamp(42px, 5vw, 67px); }
.contact-list { list-style: none; margin: 28px 0 0; padding: 0; }
.contact-list li { display: flex; justify-content: space-between; gap: 28px; padding: 15px 0; border-bottom: 1px solid currentColor; border-color: rgba(127,110,98,.28); }
.contact-list span { color: #786c63; }
.dark .contact-list span { color: rgba(255,255,255,.55); }
.schedule { display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; margin-top: 30px; }
.schedule span:nth-child(even) { text-align: right; }

.footer { padding: 58px 0 100px; color: rgba(255,255,255,.68); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; }
.footer .brand-copy strong { color: var(--white); }
.footer h3 { color: var(--white); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }
.footer a { display: block; width: fit-content; margin: 8px 0; }
.footer a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); font-size: 12px; }
.mobile-actions { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .navlinks, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .navlinks.open { display: flex; position: fixed; inset: 112px 0 auto; height: calc(100vh - 112px); padding: 34px 24px 120px; align-items: flex-start; flex-direction: column; background: var(--paper); font-family: var(--serif); font-size: 30px; overflow: auto; }
  .hero { min-height: 0; }
  .hero-grid, .split, .bio-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 620px; }
  .hero-copy { order: 1; }
  .hero-media { order: 2; }
  .package-preview { grid-template-columns: 1fr 1fr; }
  .package-card:first-child { grid-column: span 2; }
  .sticky { position: static; }
  .status-panel { grid-template-columns: 1fr; }
  .status-score { min-height: 200px; }
  .service-item { grid-template-columns: 90px 1fr; }
  .service-price { grid-column: 2; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  body { padding-bottom: 66px; }
  .container { width: min(100% - 28px, 1180px); }
  .source-bar .container { min-height: 40px; justify-content: center; text-align: center; }
  .source-bar span:last-child { display: none; }
  .nav { min-height: 68px; }
  .brand-copy strong { font-size: 18px; }
  .brand-mark { width: 36px; height: 36px; }
  .header { top: 0; }
  .navlinks.open { inset: 108px 0 auto; height: calc(100vh - 108px); }
  .hero { padding: 55px 0 42px; }
  h1 { font-size: clamp(54px, 16vw, 76px); }
  .lead { font-size: 17px; }
  .hero-grid { gap: 44px; }
  .hero-media { min-height: 500px; }
  .hero-media .frame-main { right: 28px; }
  .swatch { width: 100px; padding: 13px 10px; }
  .media-caption { left: 10px; bottom: 18px; max-width: 225px; }
  .hero-facts { grid-template-columns: 1fr; margin-top: 34px; }
  .hero-facts div { min-height: 80px; }
  .section { padding: 72px 0; }
  .section-head { display: block; }
  .section-head > p { margin-top: 20px; }
  .section-head h2, .split h2 { font-size: 46px; }
  .cta h2 { font-size: 39px; }
  .package-preview { grid-template-columns: 1fr; }
  .package-card:first-child { grid-column: auto; }
  .package-card { min-height: 300px; }
  .visual-grid { grid-template-columns: 1fr; }
  .visual-card, .visual-card + .visual-card { min-height: 520px; }
  .status-copy { padding: 30px 24px; }
  .status-copy h3 { font-size: 32px; }
  .cta { display: block; padding: 38px 24px; border-radius: 2px 40px 2px 2px; }
  .cta .actions { margin-top: 28px; }
  .page-hero { padding: 58px 0 50px; }
  .page-hero h1 { font-size: 56px; }
  .service-item { grid-template-columns: 1fr; padding: 26px 20px; }
  .service-price { grid-column: auto; }
  .service-item h2 { font-size: 34px; }
  .gallery-grid { display: block; }
  .gallery-card, .gallery-card:nth-child(2), .gallery-card:nth-child(3) { width: 100%; min-height: 500px; margin-bottom: 14px; }
  .evidence { grid-template-columns: 1fr; }
  .contact-card { min-height: 0; padding: 30px 22px; }
  .contact-list li { display: block; }
  .contact-list span { display: block; margin-bottom: 3px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .mobile-actions { display: grid; position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; grid-template-columns: repeat(3, 1fr); min-height: 66px; color: var(--white); background: var(--wine-dark); box-shadow: 0 -10px 30px rgba(0,0,0,.2); }
  .mobile-actions a { display: grid; place-items: center; padding: 8px 5px; border-right: 1px solid rgba(255,255,255,.18); font-size: 12px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
