:root {
  --ink: #2c170e;
  --brown: #4a2411;
  --brown-2: #6b3c20;
  --wood: #9b6035;
  --gold: #f4c84b;
  --gold-deep: #d8a73d;
  --cream: #f6efe3;
  --paper: #fffaf1;
  --white: #ffffff;
  --muted: #735c4e;
  --line: rgba(74, 36, 17, 0.16);
  --shadow: 0 24px 64px rgba(55, 28, 13, 0.18);
  --shadow-soft: 0 14px 38px rgba(55, 28, 13, 0.12);
  --shell: min(1180px, calc(100vw - 36px));
  --header-h: 74px;
  --focus: #1c6f8c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  min-width: 280px;
  background: var(--cream);
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 9999;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 750;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: var(--brown);
  pointer-events: none;
  animation: loader-dismiss 420ms ease 1.05s forwards;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  position: relative;
  width: 58px;
  aspect-ratio: 1;
  border: 8px solid var(--gold);
  border-radius: 50%;
  animation: loader-turn 900ms cubic-bezier(.55,.1,.25,1) infinite;
}

.loader-mark::before,
.loader-mark span:first-child {
  content: "";
  position: absolute;
  inset: 10px;
  border: 6px solid rgba(244, 200, 75, 0.78);
  border-radius: 50%;
}

.loader-mark span:last-child {
  position: absolute;
  width: 18px;
  height: 18px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loader-mark span:last-child::before,
.loader-mark span:last-child::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 2px;
}

.loader-mark span:last-child::before {
  width: 18px;
  height: 6px;
  left: 0;
  top: 6px;
}

.loader-mark span:last-child::after {
  width: 6px;
  height: 18px;
  left: 6px;
  top: 0;
}

@keyframes loader-turn {
  to { transform: rotate(360deg); }
}

@keyframes loader-dismiss {
  to { opacity: 0; visibility: hidden; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  background: rgba(246, 239, 227, 0.92);
  border-bottom: 1px solid rgba(74, 36, 17, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 10px 30px rgba(55, 28, 13, 0.08);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  text-decoration: none;
  font-weight: 790;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 11px;
  box-shadow: 0 6px 18px rgba(55, 28, 13, 0.14);
  flex: 0 0 auto;
}

.brand span {
  overflow-wrap: anywhere;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.primary-nav a,
.footer-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
}

.primary-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--gold-deep);
  transition: right 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease;
}

.js-ready .nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.js-ready .nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100svh - var(--header-h));
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 200, 75, 0.16), transparent 34%),
    linear-gradient(135deg, #fffaf1 0%, #f6efe3 52%, #ead8c2 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 44px solid rgba(244, 200, 75, 0.18);
  border-radius: 50%;
  left: -290px;
  bottom: -260px;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    radial-gradient(ellipse 65% 4% at 16% 20%, transparent 58%, rgba(107, 60, 32, 0.13) 59%, transparent 61%),
    radial-gradient(ellipse 65% 4% at 70% 55%, transparent 58%, rgba(107, 60, 32, 0.1) 59%, transparent 61%),
    radial-gradient(ellipse 75% 5% at 30% 78%, transparent 58%, rgba(107, 60, 32, 0.11) 59%, transparent 61%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  padding-block: 52px 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 42px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3.6rem, 8.3vw, 8rem);
  line-height: 0.84;
  letter-spacing: -0.075em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-logo-orbit {
  width: 86px;
  aspect-ratio: 1;
  border: 13px solid var(--gold);
  border-radius: 50%;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
}

.hero-logo-orbit span {
  width: 36px;
  aspect-ratio: 1;
  border: 9px solid var(--gold-deep);
  border-radius: 50%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.005em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(74, 36, 17, 0.22);
}

.button-primary:hover {
  box-shadow: 0 17px 34px rgba(74, 36, 17, 0.28);
}

.button-ghost {
  border-color: rgba(74, 36, 17, 0.24);
  background: rgba(255, 250, 241, 0.54);
  color: var(--brown);
}

.ripple-wave {
  position: absolute;
  z-index: -1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 520ms ease-out forwards;
  pointer-events: none;
}

.button-ghost .ripple-wave {
  background: rgba(74, 36, 17, 0.12);
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

.hero-visual {
  position: relative;
  min-height: min(72svh, 720px);
}

.hero-image-wrap {
  position: absolute;
  z-index: 2;
  inset: 5% 4% 3% 12%;
  overflow: hidden;
  border-radius: 180px 18px 180px 18px;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(.2,.75,.25,1);
}

.hero-image-wrap:hover img {
  transform: scale(1.035);
}

.hero-ring {
  position: absolute;
  border: 22px solid var(--gold);
  border-radius: 50%;
}

.hero-ring-a {
  z-index: 1;
  width: 230px;
  height: 230px;
  top: 1%;
  left: -6%;
}

.hero-ring-b {
  z-index: 3;
  width: 112px;
  height: 112px;
  right: -1%;
  bottom: 2%;
  border-width: 14px;
  border-color: var(--paper);
  box-shadow: 0 8px 24px rgba(55, 28, 13, 0.14);
}

.section {
  position: relative;
  padding-block: clamp(76px, 10vw, 138px);
}

.section-heading-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 44px;
}

.section-heading-row h2,
.feature-heading-block h2,
.why-heading h2,
.contact-shell > h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.heading-rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.heading-light h2 {
  color: var(--paper);
}

.heading-light .heading-rule {
  background: rgba(255, 250, 241, 0.23);
}

.about-composition {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.image-panel-square {
  width: min(100%, 560px);
  aspect-ratio: 1;
  border-radius: 20px 120px 20px 20px;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.75,.25,1);
}

.image-panel:hover img,
.feature-image:hover img,
.services-photo:hover img {
  transform: scale(1.035);
}

.about-emblem {
  position: relative;
  justify-self: center;
  width: clamp(210px, 28vw, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brown);
  box-shadow: var(--shadow);
}

.about-emblem::before,
.about-emblem::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74, 36, 17, 0.2);
}

.about-emblem::before {
  width: 126%;
  height: 126%;
}

.about-emblem::after {
  width: 148%;
  height: 148%;
}

.about-emblem img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  border-radius: 50%;
}

.about-lines {
  position: absolute;
  right: 0;
  bottom: 6%;
  width: 46%;
  height: 100px;
  pointer-events: none;
}

.about-lines i {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(107, 60, 32, 0.2);
  border-radius: 50%;
  transform: rotate(-6deg);
}

.about-lines i:nth-child(1) { top: 10%; }
.about-lines i:nth-child(2) { top: 46%; transform: rotate(3deg); }
.about-lines i:nth-child(3) { top: 82%; transform: rotate(-2deg); }

.section-services {
  overflow: hidden;
  background: var(--brown);
}

.section-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(244, 200, 75, 0.08) 58% 59%, transparent 59%),
    radial-gradient(circle at 90% 18%, rgba(244, 200, 75, 0.14), transparent 27%);
}

.services-stage {
  position: relative;
  min-height: 570px;
}

.services-photo {
  position: absolute;
  z-index: 2;
  margin: 0;
  inset: 4% 24% 0 0;
  overflow: hidden;
  border-radius: 14px 180px 14px 14px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
}

.services-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.75,.25,1);
}

.services-geometry {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 0;
  bottom: 0;
  width: 32%;
}

.geo-ring {
  position: absolute;
  width: min(24vw, 290px);
  aspect-ratio: 1;
  right: 0;
  top: 6%;
  border: clamp(22px, 3vw, 42px) solid var(--gold);
  border-radius: 50%;
}

.geo-ring::before {
  content: "";
  position: absolute;
  inset: 20%;
  border: clamp(12px, 2vw, 25px) solid rgba(244, 200, 75, 0.72);
  border-radius: 50%;
}

.geo-bar {
  position: absolute;
  right: 2%;
  bottom: 17%;
  width: 70%;
  height: 16px;
  background: var(--paper);
  transform: rotate(-13deg);
}

.geo-dot {
  position: absolute;
  right: 38%;
  bottom: 6%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
}

.section-features {
  background: var(--paper);
}

.features-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 560px;
  align-items: stretch;
  gap: clamp(28px, 5vw, 72px);
}

.feature-heading-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 0;
}

.feature-mark {
  position: relative;
  width: 160px;
  height: 160px;
  margin-top: 60px;
}

.feature-mark::before,
.feature-mark span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.feature-mark::before {
  inset: 0;
  border: 20px solid var(--gold);
}

.feature-mark span:first-child {
  inset: 34px;
  border: 13px solid var(--gold-deep);
}

.feature-mark span:last-child {
  width: 10px;
  height: 90px;
  background: var(--brown);
  border-radius: 10px;
  left: 75px;
  top: 35px;
  transform: rotate(45deg);
}

.feature-image {
  margin: 0;
  min-height: 540px;
  overflow: hidden;
  border-radius: 120px 16px 16px 16px;
  box-shadow: var(--shadow-soft);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.75,.25,1);
}

.section-why {
  overflow: hidden;
  background: linear-gradient(140deg, #eddfca 0%, #f8f1e6 54%, #fffaf1 100%);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  min-height: 420px;
}

.why-visual {
  position: relative;
  min-height: 420px;
}

.why-disc {
  position: absolute;
  left: 7%;
  top: 50%;
  width: min(52vw, 390px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
}

.why-disc img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  border-radius: 50%;
}

.why-arc {
  position: absolute;
  border: 2px solid rgba(74, 36, 17, 0.18);
  border-radius: 50%;
}

.why-arc-one {
  width: 500px;
  height: 170px;
  left: -10%;
  top: 35%;
  transform: rotate(-9deg);
}

.why-arc-two {
  width: 460px;
  height: 140px;
  left: 2%;
  top: 50%;
  transform: rotate(8deg);
}

.why-heading {
  position: relative;
  z-index: 2;
}

.why-heading h2 {
  max-width: 520px;
}

.section-contact {
  background: var(--paper);
}

.contact-shell > h2 {
  margin-bottom: 42px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 16px 110px 16px 16px;
  background: var(--cream);
}

.contact-panel::after {
  content: "";
  position: absolute;
  right: 7%;
  top: -62px;
  width: 140px;
  height: 140px;
  border: 22px solid rgba(244, 200, 75, 0.42);
  border-radius: 50%;
  pointer-events: none;
}

.contact-name,
.contact-email {
  position: relative;
  z-index: 1;
  overflow-wrap: anywhere;
}

.contact-name {
  font-weight: 850;
  letter-spacing: -0.025em;
}

.contact-email {
  color: var(--brown-2);
  text-underline-offset: 4px;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
}

.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-email {
  justify-self: end;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(55, 28, 13, 0.22);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top svg {
  width: 23px;
  fill: currentColor;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.25,1);
}

/* Privacy Policy */
.policy-page .site-loader { display: none; }

.policy-page {
  background: #eee0cc;
}

.policy-page .site-header {
  background: rgba(255, 250, 241, 0.96);
}

.policy-hero {
  padding: 56px 0 34px;
  background:
    radial-gradient(circle at 82% 30%, rgba(244, 200, 75, 0.18), transparent 28%),
    linear-gradient(120deg, #fffaf1, #f0dfc8);
  border-bottom: 1px solid rgba(74, 36, 17, 0.12);
}

.policy-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 34px;
  align-items: end;
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7.2vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.policy-hero-mark {
  width: 132px;
  aspect-ratio: 1;
  border: 18px solid var(--gold);
  border-radius: 50%;
  position: relative;
}

.policy-hero-mark::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 12px solid var(--gold-deep);
  border-radius: 50%;
}

.policy-main {
  padding-block: 52px 100px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  max-height: calc(100svh - var(--header-h) - 48px);
  overflow: auto;
  padding: 24px 20px;
  background: rgba(255, 250, 241, 0.8);
  border: 1px solid rgba(74, 36, 17, 0.12);
  border-radius: 14px 54px 14px 14px;
  box-shadow: var(--shadow-soft);
  scrollbar-width: thin;
}

.policy-toc h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.policy-toc a {
  display: block;
  padding: 8px 10px;
  border-left: 2px solid transparent;
  color: #6a5142;
  text-decoration: none;
  font-size: 0.84rem;
  line-height: 1.35;
  border-radius: 0 8px 8px 0;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.policy-toc a:hover,
.policy-toc a.is-active {
  background: rgba(244, 200, 75, 0.16);
  color: var(--ink);
  border-left-color: var(--gold-deep);
}

.policy-document {
  min-width: 0;
  padding: clamp(30px, 6vw, 72px);
  background: var(--paper);
  border-radius: 18px 86px 18px 18px;
  box-shadow: var(--shadow);
}

.policy-document-header {
  padding-bottom: 32px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.policy-document-header h2 {
  margin: 0 0 8px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.policy-document-header p {
  margin: 6px 0 0;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.policy-section {
  padding-top: 34px;
  scroll-margin-top: calc(var(--header-h) + 22px);
}

.policy-section + .policy-section {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.policy-section h3 {
  margin: 0 0 18px;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.policy-section p {
  margin: 0 0 16px;
}

.policy-section ul {
  margin: 0 0 18px;
  padding-left: 1.4rem;
}

.policy-section li {
  margin: 7px 0;
  padding-left: 4px;
}

.policy-section a {
  color: #6f3519;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.policy-contact-block {
  margin: 16px 0;
  padding: 18px 20px;
  background: #f5e8d6;
  border-left: 4px solid var(--gold-deep);
  border-radius: 0 12px 12px 0;
  overflow-wrap: anywhere;
}

.policy-contact-block p {
  margin: 2px 0;
}

.policy-back {
  font-weight: 800;
}

@media (max-width: 980px) {
  :root { --shell: min(100% - 30px, 900px); }

  .primary-nav { gap: 12px; }
  .primary-nav a { font-size: 0.8rem; }

  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
    gap: 28px;
  }

  .hero-copy h1 { font-size: clamp(3.3rem, 8vw, 6rem); }
  .about-composition { min-height: 500px; }
  .services-stage { min-height: 500px; }
  .features-grid { min-height: 480px; }
  .feature-image { min-height: 470px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-email { justify-self: center; }
  .footer-nav { justify-self: center; }

  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc {
    position: static;
    max-height: none;
  }
  .policy-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root { --header-h: 68px; --shell: calc(100vw - 28px); }

  .brand span { font-size: 0.9rem; }
  .brand img { width: 38px; height: 38px; }

  .primary-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-bottom: 15px;
  }

  .js-ready .nav-toggle { display: inline-flex; }
  .js-ready .home-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 250, 241, 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .js-ready .home-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .js-ready .home-nav a {
    padding: 10px 11px;
    border-radius: 9px;
  }

  .js-ready .home-nav a:hover { background: rgba(244, 200, 75, 0.12); }
  .js-ready .home-nav a::after { display: none; }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 46px 64px;
  }

  .hero-copy { padding-block: 10px 0; }
  .hero-copy h1 {
    font-size: clamp(3.25rem, 15vw, 5.7rem);
    line-height: 0.88;
  }
  .hero-logo-orbit { width: 70px; border-width: 10px; margin-bottom: 20px; }
  .hero-logo-orbit span { width: 30px; border-width: 7px; }
  .hero-actions { margin-top: 28px; }
  .hero-visual { min-height: 520px; }
  .hero-image-wrap { inset: 3% 5% 3% 7%; border-radius: 120px 16px 120px 16px; }
  .hero-ring-a { width: 150px; height: 150px; border-width: 17px; left: -2%; }
  .hero-ring-b { width: 86px; height: 86px; border-width: 11px; }

  .section { padding-block: 82px; }
  .section-heading-row { margin-bottom: 32px; gap: 16px; }

  .about-composition {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .image-panel-square { border-radius: 18px 88px 18px 18px; }
  .about-emblem { width: min(70vw, 300px); margin-block: 18px 40px; }
  .about-lines { width: 85%; right: -10%; bottom: 0; }

  .services-stage { min-height: 480px; }
  .services-photo { inset: 6% 10% 4% 0; border-radius: 14px 110px 14px 14px; }
  .services-geometry { width: 46%; }
  .geo-ring { width: 150px; border-width: 22px; right: -18px; }
  .geo-bar { width: 85%; right: -4%; }

  .features-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .feature-heading-block { min-height: 190px; }
  .feature-mark { width: 100px; height: 100px; margin-top: 28px; }
  .feature-mark::before { border-width: 13px; }
  .feature-mark span:first-child { inset: 22px; border-width: 8px; }
  .feature-mark span:last-child { width: 7px; height: 58px; left: 47px; top: 22px; }
  .feature-image { min-height: 360px; border-radius: 84px 14px 14px 14px; }

  .why-layout { grid-template-columns: 1fr; min-height: auto; }
  .why-visual { min-height: 350px; order: 2; }
  .why-heading { order: 1; }
  .why-disc { left: 50%; width: min(72vw, 320px); transform: translate(-50%, -50%); }
  .why-arc-one, .why-arc-two { left: 50%; transform: translateX(-50%) rotate(-7deg); width: 390px; max-width: 110vw; }
  .why-arc-two { transform: translateX(-50%) rotate(7deg); }

  .contact-panel {
    grid-template-columns: 1fr;
    border-radius: 14px 72px 14px 14px;
  }
  .contact-panel .button { justify-self: start; }

  .policy-page .header-inner { flex-wrap: wrap; padding-block: 9px; }
  .policy-page .primary-nav { padding-bottom: 0; }
  .policy-hero { padding-top: 38px; }
  .policy-hero-inner { grid-template-columns: 1fr 76px; gap: 20px; }
  .policy-hero-mark { width: 76px; border-width: 10px; }
  .policy-hero-mark::after { inset: 14px; border-width: 7px; }
  .policy-main { padding-block: 28px 70px; }
  .policy-toc ol { grid-template-columns: 1fr; }
  .policy-document { padding: 28px 22px; border-radius: 14px 50px 14px 14px; }
}

@media (max-width: 420px) {
  .brand span { max-width: 190px; }
  .hero-copy h1 { font-size: clamp(2.9rem, 14.5vw, 4.2rem); }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 440px; }
  .section-heading-row { align-items: flex-end; }
  .heading-rule { margin-bottom: 10px; }
  .contact-panel { padding: 24px 20px; }
  .policy-hero h1 { font-size: 2.8rem; }
  .policy-hero-inner { grid-template-columns: 1fr; }
  .policy-hero-mark { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .site-loader { opacity: 0; visibility: hidden; }
  .motion-ready [data-reveal] { opacity: 1; transform: none; }
}
