:root {
  --ink: #082d32;
  --ink-deep: #041f23;
  --ink-soft: #13474b;
  --gold: #caa559;
  --gold-light: #e3c783;
  --ivory: #f6f0e6;
  --paper: #fbf8f2;
  --warm: #d9c7ac;
  --line: rgba(8, 45, 50, .18);
  --shadow: 0 28px 70px rgba(4, 31, 35, .18);
  --shadow-soft: 0 18px 42px rgba(4, 31, 35, .11);
  --header-h: 78px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  color: var(--ink-deep);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { background: var(--gold); color: var(--ink-deep); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink-deep);
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  background: var(--ink-deep);
  pointer-events: auto;
  animation: loader-away .45s ease 1.1s forwards;
}
.site-loader img { width: 92px; height: 92px; object-fit: contain; border-radius: 20px; }
.site-loader span {
  position: absolute;
  width: min(250px, 54vw);
  height: 1px;
  overflow: hidden;
  transform: translateY(72px);
  background: rgba(246,240,230,.16);
}
.site-loader span::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: var(--gold);
  animation: loader-line 1s var(--ease) infinite;
}
.site-loader.is-hidden { display: none; }
@keyframes loader-away { to { opacity: 0; visibility: hidden; pointer-events: none; } }
@keyframes loader-line { from { transform: translateX(-120%); } to { transform: translateX(330%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(4,31,35,.92);
  border-bottom: 1px solid rgba(227,199,131,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 36px rgba(4,31,35,.18); background: rgba(4,31,35,.97); }
.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 0;
}
.brand img { width: 42px; height: 42px; object-fit: contain; flex: 0 0 auto; border-radius: 11px; }
.brand span {
  color: var(--ivory);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  white-space: nowrap;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}
.primary-nav a {
  position: relative;
  color: rgba(246,240,230,.82);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 0;
  transition: color .2s ease;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: var(--gold);
  transition: right .25s var(--ease);
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--gold-light); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  background:
    radial-gradient(circle at 18% 12%, rgba(202,165,89,.13), transparent 27rem),
    linear-gradient(120deg, var(--ink-deep), var(--ink) 58%, #0c3d41);
  color: var(--ivory);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(227,199,131,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227,199,131,.07) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to right, black, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  width: min(1280px, calc(100% - 32px));
  min-height: calc(100svh - var(--header-h));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  padding: 72px 0 82px;
}
.hero-copy { position: relative; z-index: 2; padding-left: clamp(0px, 2vw, 24px); }
.hero-logo {
  width: clamp(86px, 10vw, 126px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  margin-bottom: 32px;
}
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7.2vw, 7.4rem);
  line-height: .88;
  letter-spacing: -.055em;
  overflow-wrap: anywhere;
}
.hero-mark { position: absolute; left: -38px; top: 2px; width: 16px; display: grid; gap: 8px; }
.hero-mark span { display: block; height: 2px; background: var(--gold); }
.hero-mark span:nth-child(2) { width: 60%; }
.hero-mark span:nth-child(3) { width: 35%; }
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-gold { background: var(--gold); color: var(--ink-deep); box-shadow: 0 15px 36px rgba(202,165,89,.2); }
.button-gold:hover { background: var(--gold-light); box-shadow: 0 19px 42px rgba(202,165,89,.26); }
.button-ivory { background: var(--ivory); color: var(--ink-deep); border-color: rgba(246,240,230,.5); }
.button-ivory:hover { background: #fff; }
.ripple-ink {
  position: absolute;
  z-index: -1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: translate(-50%,-50%) scale(0);
  animation: ripple .6s ease-out;
  pointer-events: none;
}
@keyframes ripple { to { transform: translate(-50%,-50%) scale(14); opacity: 0; } }
.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.hero-frame {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  aspect-ratio: 4/5;
  margin: 0;
  overflow: hidden;
  border-radius: 46% 46% 12px 12px;
  border: 1px solid rgba(227,199,131,.42);
  box-shadow: 0 34px 80px rgba(0,0,0,.35);
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,31,35,.28), transparent 48%);
  pointer-events: none;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.hero-frame:hover img { transform: scale(1.035); }
.hero-orbit {
  position: absolute;
  z-index: 1;
  width: 84%;
  aspect-ratio: 1;
  border: 1px solid rgba(227,199,131,.26);
  border-radius: 50%;
  right: -22%;
  top: 2%;
}
.hero-orbit::before, .hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(227,199,131,.15);
}
.hero-orbit::before { inset: 8%; }
.hero-orbit::after { inset: 17%; }
.hero-plaque {
  position: absolute;
  z-index: 3;
  left: -2%;
  bottom: 8%;
  width: 106px;
  height: 106px;
  background: var(--gold);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.hero-plaque span { position: absolute; width: 52%; height: 1px; background: var(--ink-deep); }
.hero-plaque span:first-child { transform: rotate(45deg); }
.hero-plaque span:last-child { transform: rotate(-45deg); }

.section { position: relative; padding: clamp(86px, 11vw, 152px) 0; }
.reveal-target { transition: transform .7s var(--ease); }
.reveal-target.reveal-ready { transform: translateY(18px); }
.reveal-target.reveal-ready.is-visible { transform: translateY(0); }
.section-heading-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(42px, 6vw, 72px);
  display: flex;
  align-items: end;
  gap: 24px;
}
.section-heading-wrap h2,
.why-heading h2,
.contact-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 6.2rem);
  line-height: .94;
  letter-spacing: -.04em;
  font-weight: 500;
}
.heading-rule { display: block; width: min(260px, 30vw); height: 1px; margin-bottom: 10px; background: var(--gold); }
.section-number { position: absolute; right: 6vw; top: 5vw; width: 84px; height: 84px; border: 1px solid var(--line); border-radius: 50%; }
.section-number::before { content: ""; position: absolute; inset: 15px; border: 1px solid rgba(202,165,89,.42); border-radius: 50%; }

.about-section { background: var(--paper); }
.about-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
}
.about-art-block {
  min-height: 440px;
  border: 1px solid var(--line);
  position: relative;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(8,45,50,.14) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(8,45,50,.14) 50%, transparent 50.2%);
}
.about-art-block::before, .about-art-block::after {
  content: "";
  position: absolute;
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.about-art-block::before { left: 14%; top: 12%; }
.about-art-block::after { right: 11%; bottom: 12%; }
.about-art-block span { position: absolute; display: block; background: var(--ink); }
.about-art-block span:nth-child(1) { width: 1px; height: 70%; left: 50%; top: 15%; }
.about-art-block span:nth-child(2) { width: 70%; height: 1px; left: 15%; top: 50%; }
.about-art-block span:nth-child(3) { width: 13px; height: 13px; border-radius: 50%; left: calc(50% - 6px); top: calc(50% - 6px); background: var(--gold); }
.image-panel { margin: 0; overflow: hidden; box-shadow: var(--shadow-soft); }
.image-panel-tall { min-height: 560px; border-radius: 2px 160px 2px 2px; }
.image-panel img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .7s ease; }
.image-panel:hover img { transform: scale(1.03); filter: saturate(1.04); }

.services-section { background: var(--ink-deep); color: var(--ivory); overflow: hidden; }
.services-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(202,165,89,.16);
  border-radius: 50%;
  right: -230px;
  top: -220px;
}
.section-heading-inverse .heading-rule { background: rgba(227,199,131,.45); }
.services-canvas {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, .7fr);
  gap: 0;
  align-items: stretch;
}
.service-photo { margin: 0; min-height: 560px; overflow: hidden; border-radius: 2px 2px 100px 2px; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease); }
.service-photo:hover img { transform: scale(1.035); }
.service-lines { position: relative; border-top: 1px solid rgba(227,199,131,.32); border-bottom: 1px solid rgba(227,199,131,.32); }
.service-lines i { position: absolute; left: 0; height: 1px; background: rgba(227,199,131,.3); transform-origin: left; }
.service-lines i:nth-child(1) { width: 84%; top: 18%; }
.service-lines i:nth-child(2) { width: 64%; top: 34%; }
.service-lines i:nth-child(3) { width: 93%; top: 50%; }
.service-lines i:nth-child(4) { width: 52%; top: 66%; }
.service-lines i:nth-child(5) { width: 74%; top: 82%; }

.features-section { background: var(--ivory); }
.features-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  grid-template-rows: auto minmax(260px, auto);
  column-gap: clamp(32px, 6vw, 82px);
  align-items: start;
}
.features-grid .section-heading-wrap { width: auto; margin: 0; display: block; }
.features-grid .heading-rule { margin-top: 28px; }
.feature-photo {
  grid-row: span 2;
  margin: 0;
  height: 690px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
  box-shadow: var(--shadow-soft);
}
.feature-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.feature-photo:hover img { transform: scale(1.035); }
.feature-grid-art {
  align-self: end;
  margin-top: 50px;
  min-height: 250px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}
.feature-grid-art span { border: .5px solid var(--line); position: relative; }
.feature-grid-art span:nth-child(1)::after,
.feature-grid-art span:nth-child(4)::after {
  content: "";
  position: absolute;
  inset: 26%;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.why-section { background: var(--paper); }
.why-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}
.why-photo { margin: 0; min-height: 620px; overflow: hidden; border-radius: 150px 2px 2px 2px; box-shadow: var(--shadow-soft); }
.why-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.why-photo:hover img { transform: scale(1.035); }
.why-heading { padding: 30px 0; }
.why-deco { margin-top: 54px; display: grid; gap: 16px; }
.why-deco span { display: block; height: 1px; background: var(--line); }
.why-deco span:nth-child(1) { width: 100%; }
.why-deco span:nth-child(2) { width: 72%; background: var(--gold); }
.why-deco span:nth-child(3) { width: 43%; }

.contact-section { background: var(--gold); padding-block: clamp(74px, 10vw, 126px); }
.contact-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-head { position: relative; min-height: 210px; display: flex; align-items: center; }
.contact-head h2 { position: relative; z-index: 2; color: var(--ink-deep); }
.contact-arc { position: absolute; width: 210px; height: 210px; border: 1px solid rgba(4,31,35,.38); border-radius: 50%; right: 4%; }
.contact-arc::after { content: ""; position: absolute; inset: 25px; border: 1px solid rgba(4,31,35,.22); border-radius: 50%; }
.contact-details { border-left: 1px solid rgba(4,31,35,.3); padding-left: clamp(30px, 5vw, 70px); overflow-wrap: anywhere; }
.contact-name { margin: 0 0 15px; font-size: clamp(1.2rem, 2.2vw, 1.8rem); font-weight: 850; }
.contact-email { display: inline-block; font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 700; text-underline-offset: 5px; overflow-wrap: anywhere; }

.site-footer { background: #02181b; color: rgba(246,240,230,.78); padding: 58px 0; }
.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 40px;
  align-items: start;
}
.footer-brand img { width: 56px; height: 56px; object-fit: contain; border-radius: 14px; }
.footer-brand span { color: var(--ivory); font-size: 13px; font-weight: 800; letter-spacing: .08em; overflow-wrap: anywhere; }
.footer-email { justify-self: start; color: var(--gold-light); font-size: 14px; font-weight: 750; text-underline-offset: 4px; overflow-wrap: anywhere; }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px 18px; }
.footer-nav a { color: rgba(246,240,230,.72); font-size: 13px; text-decoration: none; }
.footer-nav a:hover { color: var(--gold-light); }
.scroll-top {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(246,240,230,.25);
  background: var(--ink-deep);
  color: var(--ivory);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(4,31,35,.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  overflow: hidden;
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Privacy Policy */
.policy-page { background: var(--paper); }
.policy-main { min-height: 100vh; padding: 68px 0 120px; position: relative; }
.policy-masthead {
  width: min(1180px, calc(100% - 32px));
  height: 82px;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}
.policy-masthead span { display: block; width: 36px; height: 3px; background: var(--gold); }
.policy-masthead span:nth-child(2) { width: 14px; background: var(--ink); }
.policy-masthead span:nth-child(3) { width: 6px; background: var(--ink-soft); }
.policy-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0,1fr);
  gap: clamp(42px, 7vw, 94px);
  align-items: start;
}
.policy-toc-wrap { position: sticky; top: calc(var(--header-h) + 28px); max-height: calc(100vh - var(--header-h) - 56px); overflow: auto; scrollbar-width: thin; }
.policy-toc { border-left: 1px solid var(--line); padding: 4px 0 4px 18px; }
.policy-toc p { margin: 0 0 16px; color: var(--ink); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.policy-toc a {
  display: block;
  padding: 6px 9px;
  margin-left: -9px;
  color: rgba(4,31,35,.66);
  font-size: 12.5px;
  line-height: 1.35;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.policy-toc a:hover, .policy-toc a.is-active { color: var(--ink-deep); border-left-color: var(--gold); background: rgba(202,165,89,.10); }
.policy-article {
  min-width: 0;
  background: #fffdf9;
  border: 1px solid rgba(8,45,50,.09);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 6vw, 78px);
}
.policy-article h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 500;
}
.policy-article .effective-date { display: inline-block; margin: 0 0 42px; padding: 9px 12px; background: rgba(202,165,89,.16); border-left: 3px solid var(--gold); }
.policy-section { padding-top: 20px; margin-top: 26px; }
.policy-section + .policy-section { border-top: 1px solid rgba(8,45,50,.10); padding-top: 42px; }
.policy-article h2 { margin: 0 0 20px; font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.2; color: var(--ink); }
.policy-article p, .policy-article li { font-size: 15.5px; line-height: 1.82; color: #28484b; }
.policy-article p { margin: 0 0 17px; }
.policy-article ul { margin: -2px 0 22px; padding-left: 22px; }
.policy-article li { margin: 6px 0; padding-left: 4px; }
.policy-article li::marker { color: var(--gold); }
.policy-article a { color: #0a5b61; font-weight: 760; text-underline-offset: 3px; overflow-wrap: anywhere; word-break: break-word; }
.policy-article strong { color: var(--ink-deep); }
.policy-footer { margin-top: 0; }

@media (max-width: 1040px) {
  :root { --header-h: 72px; }
  .brand span { display: none; }
  .hero-grid { grid-template-columns: .86fr 1.14fr; }
  .hero-visual { min-height: 520px; }
  .hero-frame { width: 100%; }
  .primary-nav { gap: 16px; }
  .primary-nav a { font-size: 12px; }
  .policy-layout { grid-template-columns: 235px minmax(0,1fr); gap: 38px; }
}

@media (max-width: 820px) {
  .header-inner { width: min(100% - 24px, 1180px); }
  .brand span { display: inline; font-size: 11px; max-width: 48vw; overflow: hidden; text-overflow: ellipsis; }
  .nav-toggle {
    position: relative;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(227,199,131,.35);
    background: transparent;
    color: var(--ivory);
    cursor: pointer;
    overflow: hidden;
  }
  .nav-toggle span { position: absolute; width: 18px; height: 1.5px; background: currentColor; transition: transform .25s ease, top .25s ease; }
  .nav-toggle span:first-child { top: 18px; }
  .nav-toggle span:last-child { top: 26px; }
  .nav-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 12px;
    right: 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(4,31,35,.98);
    border: 1px solid rgba(227,199,131,.18);
    box-shadow: 0 24px 50px rgba(0,0,0,.28);
    transform: translateY(-10px) scale(.985);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s var(--ease), visibility .2s;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .primary-nav a { padding: 14px 12px; border-bottom: 1px solid rgba(246,240,230,.08); font-size: 14px; }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a::after { display: none; }

  .hero-grid { grid-template-columns: 1fr; padding: 54px 0 72px; }
  .hero-copy { padding-left: 4px; }
  .hero-mark { display: none; }
  .hero-logo { margin-bottom: 24px; }
  .hero h1 { font-size: clamp(3.1rem, 14vw, 6rem); max-width: 95%; }
  .hero-visual { min-height: auto; }
  .hero-frame { aspect-ratio: 4/4.8; width: 88%; justify-self: end; }
  .hero-plaque { width: 82px; height: 82px; left: 2%; bottom: 4%; }
  .hero-orbit { right: -28%; }

  .about-layout, .features-grid, .why-layout, .contact-shell { grid-template-columns: 1fr; }
  .about-art-block { min-height: 270px; }
  .image-panel-tall { min-height: 460px; }
  .services-canvas { grid-template-columns: 1fr; }
  .service-lines { min-height: 190px; border-top: 0; }
  .feature-photo { grid-row: auto; height: 500px; order: 2; margin-top: 36px; }
  .feature-grid-art { order: 3; }
  .why-photo { min-height: 500px; border-radius: 90px 2px 2px 2px; }
  .why-heading { order: -1; }
  .contact-details { border-left: 0; border-top: 1px solid rgba(4,31,35,.3); padding: 30px 0 0; }
  .contact-head { min-height: 150px; }
  .contact-arc { width: 150px; height: 150px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-column: 1/-1; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc-wrap { position: relative; top: auto; max-height: 190px; overflow: auto; scrollbar-width: thin; }
  .policy-toc { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 2px 16px; border-left: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; }
  .policy-toc p { grid-column: 1/-1; }
  .policy-toc a { border-left: 0; border-bottom: 1px solid transparent; margin: 0; padding-inline: 0; }
  .policy-toc a:hover, .policy-toc a.is-active { border-left: 0; border-bottom-color: var(--gold); background: transparent; }
}

@media (max-width: 560px) {
  .brand span { max-width: 58vw; font-size: 10.5px; }
  .brand img { width: 39px; height: 39px; }
  .hero-grid { width: min(100% - 24px, 1280px); }
  .hero h1 { font-size: clamp(2.65rem, 15vw, 4.8rem); }
  .button { min-height: 50px; padding-inline: 20px; }
  .section { padding-block: 78px; }
  .section-heading-wrap { width: min(100% - 24px,1180px); align-items: center; }
  .heading-rule { flex: 1; }
  .about-layout, .services-canvas, .features-grid, .why-layout, .contact-shell, .footer-grid, .policy-layout, .policy-masthead { width: min(100% - 24px,1180px); }
  .about-art-block { min-height: 220px; }
  .image-panel-tall, .service-photo, .why-photo { min-height: 380px; }
  .service-lines { min-height: 150px; }
  .feature-photo { height: 400px; }
  .feature-grid-art { min-height: 180px; }
  .contact-head { min-height: 120px; }
  .contact-arc { width: 116px; height: 116px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-column: auto; grid-template-columns: 1fr 1fr; }
  .scroll-top { right: 14px; bottom: 14px; }
  .policy-main { padding-top: 42px; }
  .policy-masthead { height: 50px; }
  .policy-toc { grid-template-columns: 1fr; }
  .policy-article { padding: 26px 20px; }
  .policy-article h1 { font-size: clamp(2.3rem, 12vw, 3.8rem); overflow-wrap: anywhere; }
  .policy-article p, .policy-article li { font-size: 15px; line-height: 1.75; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .site-loader { display: none !important; }
  .reveal-target, .reveal-target.reveal-ready { transform: none !important; }
}
