:root {
  --burgundy-950: #230910;
  --burgundy-900: #35101a;
  --burgundy-800: #4b1524;
  --burgundy-700: #671f31;
  --wine: #7a2c3f;
  --gold: #bd8c3e;
  --gold-soft: #d7b878;
  --ivory: #f8f2e9;
  --ivory-2: #eee2d5;
  --paper: #fffaf3;
  --ink: #221819;
  --muted: #746669;
  --line: rgba(75, 21, 36, .18);
  --shadow: 0 24px 70px rgba(53, 16, 26, .16);
  --header-height: 76px;
  --page: min(1180px, calc(100vw - 34px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--burgundy-900);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--burgundy-950);
  pointer-events: none;
  animation: loader-auto-away .36s ease 1.25s forwards;
}
.site-loader.is-gone { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(215, 184, 120, .38);
  border-top-color: var(--gold-soft);
  border-radius: 50%;
  animation: loader-spin .9s linear infinite;
}
@keyframes loader-spin { to { transform: rotate(360deg); } }
@keyframes loader-auto-away { to { opacity: 0; visibility: hidden; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px max(17px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(35, 9, 16, .93);
  color: var(--paper);
  backdrop-filter: blur(16px);
}
.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 680;
  letter-spacing: .02em;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: contain;
}
.brand span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}
.primary-nav a,
.footer-nav a {
  position: relative;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .025em;
}
.primary-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold-soft);
  transition: right .28s 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 {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease;
}
.nav-toggle span:first-child { transform: translateY(-4px); }
.nav-toggle span:last-child { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: min(900px, calc(100svh - var(--header-height)));
  overflow: hidden;
  background: var(--burgundy-950);
  color: var(--paper);
}
.hero-image-wrap,
.hero-shade,
.hero-ornament { position: absolute; inset: 0; }
.hero-image-wrap { left: 38%; }
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 53%;
  filter: saturate(.78) contrast(1.03);
  transform: scale(1.02);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.hero:hover .hero-image { transform: scale(1.055); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(35,9,16,1) 0%, rgba(35,9,16,.96) 31%, rgba(35,9,16,.46) 59%, rgba(35,9,16,.20) 100%),
    linear-gradient(0deg, rgba(35,9,16,.58), transparent 48%);
}
.hero-ornament {
  width: 48vw;
  height: 72vw;
  max-width: 610px;
  max-height: 760px;
  top: 12%;
  left: -14vw;
  border: 1px solid rgba(215,184,120,.35);
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  transform: rotate(8deg);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: inherit;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  align-items: end;
  gap: clamp(30px, 7vw, 110px);
  padding: clamp(76px, 10vw, 126px) 0 clamp(58px, 8vw, 94px);
}
.hero-logo-frame {
  align-self: center;
  width: min(100%, 350px);
  padding: 18px;
  border: 1px solid rgba(215,184,120,.45);
  border-radius: 47% 47% 18px 18px / 26% 26% 18px 18px;
  background: rgba(75,21,36,.36);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-logo-frame img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 40% 40% 13px 13px / 20% 20% 13px 13px;
  object-fit: contain;
}
.hero-copy { max-width: 710px; }
.hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.055em;
  overflow-wrap: anywhere;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: clamp(32px, 5vw, 58px);
}
.button {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 760;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--paper); color: var(--burgundy-900); box-shadow: 0 16px 40px rgba(0,0,0,.19); }
.button-light:hover { box-shadow: 0 22px 48px rgba(0,0,0,.26); }
.button-dark { background: var(--burgundy-900); color: var(--paper); box-shadow: 0 16px 40px rgba(53,16,26,.18); }
.button-dark:hover { background: var(--burgundy-800); }
.text-link {
  color: var(--paper);
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  font-size: .86rem;
  font-weight: 670;
}
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: currentColor;
  opacity: .15;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple .58s ease-out;
}
@keyframes ripple { to { transform: translate(-50%, -50%) scale(1); opacity: 0; } }

.editorial-section,
.services-section,
.features-section,
.why-section,
.contact-section {
  width: var(--page);
  margin-inline: auto;
}
.section-index,
.contact-kicker {
  color: var(--gold);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .15em;
}
.editorial-section {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: 90px minmax(210px, .72fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(22px, 5vw, 72px);
  padding: 110px 0;
}
.section-heading-wrap h2,
.services-heading h2,
.features-title-block h2,
.why-title-wrap h2,
.contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.04em;
}
.section-heading-wrap h2 { font-size: clamp(4rem, 9vw, 8rem); writing-mode: vertical-rl; transform: rotate(180deg); }
.arched-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 48% 48% 2px 2px / 24% 24% 2px 2px;
  box-shadow: var(--shadow);
}
.arched-figure::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(215,184,120,.55);
  border-radius: inherit;
  pointer-events: none;
}
.arched-figure img { width: 100%; aspect-ratio: .78; object-fit: cover; transition: transform .8s ease; }
.arched-figure:hover img { transform: scale(1.045); }
.vertical-rule { width: 1px; height: 62%; background: var(--line); justify-self: end; }

.services-section {
  padding: 72px 0 116px;
  border-top: 1px solid var(--line);
}
.services-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 40px;
}
.services-heading h2,
.features-title-block h2,
.why-title-wrap h2 { font-size: clamp(4rem, 9vw, 8.4rem); line-height: .92; }
.image-ribbon {
  display: grid;
  grid-template-columns: 1.55fr .62fr;
  gap: 16px;
  align-items: stretch;
}
.image-ribbon figure { margin: 0; overflow: hidden; background: var(--ivory-2); }
.image-ribbon img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease, filter .8s ease; }
.image-ribbon figure:hover img { transform: scale(1.035); filter: saturate(.86); }
.ribbon-main { min-height: 470px; border-radius: 2px 80px 2px 2px; }
.ribbon-side { min-height: 470px; border-radius: 80px 2px 2px 2px; }

.features-section {
  position: relative;
  min-height: 800px;
  margin-bottom: 110px;
  display: grid;
  grid-template-columns: 1fr minmax(290px, .72fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  padding: 82px clamp(22px, 6vw, 82px);
  overflow: hidden;
  background: var(--burgundy-900);
  color: var(--paper);
}
.features-title-block { position: relative; z-index: 2; }
.features-title-block .section-index { color: var(--gold-soft); }
.feature-figure {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  min-height: 570px;
  border-radius: 48% 48% 0 0 / 22% 22% 0 0;
  box-shadow: 0 28px 70px rgba(0,0,0,.27);
}
.feature-figure img { width: 100%; height: 100%; min-height: 570px; object-fit: cover; transition: transform .9s ease; }
.feature-figure:hover img { transform: scale(1.04); }
.feature-arch { position: absolute; inset: 0; pointer-events: none; }
.feature-arch span { position: absolute; border: 1px solid rgba(215,184,120,.14); border-radius: 50% 50% 0 0 / 28% 28% 0 0; }
.feature-arch span:nth-child(1) { width: 62%; height: 105%; left: -19%; top: 16%; }
.feature-arch span:nth-child(2) { width: 52%; height: 90%; left: -13%; top: 24%; }
.feature-arch span:nth-child(3) { width: 42%; height: 76%; left: -7%; top: 32%; }

.why-section {
  min-height: 500px;
  display: grid;
  grid-template-columns: 90px 1fr 240px;
  align-items: center;
  gap: 36px;
  padding: 80px 0 120px;
}
.why-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  color: var(--ivory-2);
  -webkit-text-stroke: 1px var(--gold);
}
.why-title-wrap { padding-left: clamp(0px, 4vw, 60px); }
.why-decoration { display: grid; place-items: center; min-height: 240px; position: relative; }
.why-decoration span {
  position: absolute;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.why-decoration span:first-child { width: 210px; height: 210px; }
.why-decoration span:last-child { width: 122px; height: 122px; border-color: var(--burgundy-700); transform: translate(42px, -26px); }

.contact-section {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 28px;
  margin-bottom: 92px;
  padding: clamp(42px, 6vw, 72px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(53,16,26,.07);
}
.contact-section h2 { font-size: clamp(3.4rem, 7vw, 6rem); }
.contact-name { margin: 10px 0 0; color: var(--muted); overflow-wrap: anywhere; }

.site-footer {
  padding: 46px max(17px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  background: var(--burgundy-950);
  color: var(--paper);
}
.footer-brand { display: flex; align-items: center; gap: 13px; font-size: .88rem; font-weight: 700; }
.footer-brand img { width: 54px; height: 54px; object-fit: contain; border-radius: 14px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px 26px; }
.footer-email { grid-column: 1 / -1; width: fit-content; color: var(--gold-soft); text-underline-offset: 5px; overflow-wrap: anywhere; }

.scroll-top {
  position: fixed;
  z-index: 900;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--burgundy-800);
  color: var(--paper);
  box-shadow: 0 14px 35px rgba(53,16,26,.24);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  overflow: hidden;
}
.scroll-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* Progressive enhancement: content is always visible; JavaScript only adds movement. */
.enhanced .reveal { transform: translateY(14px); transition: transform .72s cubic-bezier(.2,.7,.2,1); }
.enhanced .reveal.is-visible { transform: translateY(0); }

/* Privacy policy */
.policy-page { background: #f4ede5; }
.policy-header { background: rgba(35,9,16,.98); }
.policy-shell {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) 0 110px;
}
.policy-hero {
  display: grid;
  grid-template-columns: 138px minmax(0,1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  margin-bottom: 54px;
}
.policy-seal {
  position: sticky;
  top: calc(var(--header-height) + 26px);
}
.policy-seal img {
  width: 116px;
  height: 116px;
  border-radius: 28px;
  object-fit: contain;
  box-shadow: var(--shadow);
}
.policy-article {
  min-width: 0;
  background: var(--paper);
  border: 1px solid rgba(75,21,36,.13);
  box-shadow: 0 30px 90px rgba(53,16,26,.09);
}
.policy-title-block {
  padding: clamp(34px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(189,140,62,.13), transparent 32%),
    var(--paper);
}
.policy-title-block h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .93;
  font-weight: 400;
  letter-spacing: -.05em;
}
.policy-meta {
  margin-top: 30px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.65;
}
.policy-meta p { margin: 0; overflow-wrap: anywhere; }
.policy-meta a { color: var(--burgundy-700); text-underline-offset: 4px; }
.policy-body { padding: 0 clamp(24px, 6vw, 72px) 64px; }
.policy-section {
  position: relative;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, padding .25s ease, margin .25s ease;
}
.policy-section:last-child { border-bottom: 0; }
.policy-section::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 54px;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height .25s ease;
}
.policy-section.is-active::before { height: 42px; }
.policy-section h2 {
  margin: 0 0 22px;
  color: var(--burgundy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.policy-section p,
.policy-section li {
  font-size: 1rem;
  line-height: 1.8;
}
.policy-section p { margin: 0 0 16px; }
.policy-section ul { margin: 14px 0 22px; padding-left: 22px; }
.policy-section li + li { margin-top: 8px; }
.policy-section a { color: var(--burgundy-700); text-underline-offset: 4px; overflow-wrap: anywhere; }
.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--burgundy-900);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .nav-toggle { display: grid; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 17px 16px;
    background: rgba(35,9,16,.98);
    border-bottom: 1px solid rgba(255,255,255,.10);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform .24s ease, opacity .24s ease;
  }
  .primary-nav.is-open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .primary-nav a { padding: 13px 4px; font-size: .9rem; }
  .primary-nav a::after { bottom: 8px; }

  .hero-content { grid-template-columns: minmax(180px, 280px) 1fr; gap: 36px; }
  .hero h1 { font-size: clamp(2.65rem, 6vw, 3.8rem); }
  .editorial-section { grid-template-columns: 60px .55fr 1fr; min-height: 650px; gap: 26px; }
  .features-section { min-height: 680px; padding: 62px 34px; }
  .feature-figure, .feature-figure img { min-height: 480px; }
  .why-section { grid-template-columns: 70px 1fr; }
  .why-decoration { display: none; }
  .contact-section { grid-template-columns: 54px 1fr; }
  .contact-section .button { grid-column: 2; width: fit-content; max-width: 100%; overflow-wrap: anywhere; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .footer-email { grid-column: auto; }
}

@media (max-width: 680px) {
  :root { --page: min(100% - 26px, 1180px); }
  .brand span { max-width: 50vw; }
  .hero { min-height: 820px; }
  .hero-image-wrap { left: 0; top: 33%; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(35,9,16,1) 0%, rgba(35,9,16,.97) 31%, rgba(35,9,16,.55) 62%, rgba(35,9,16,.52) 100%),
      linear-gradient(0deg, rgba(35,9,16,.7), transparent 38%);
  }
  .hero-ornament { width: 82vw; height: 112vw; left: -41vw; top: 4%; }
  .hero-content {
    grid-template-columns: 1fr;
    align-content: start;
    align-items: start;
    gap: 28px;
    padding-top: 52px;
    padding-bottom: 46px;
  }
  .hero-logo-frame { width: 138px; padding: 8px; border-radius: 42% 42% 10px 10px / 22% 22% 10px 10px; }
  .hero h1 { font-size: clamp(2.45rem, 10.5vw, 2.9rem); line-height: .9; overflow-wrap: normal; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 28px; }
  .button { max-width: 100%; overflow-wrap: anywhere; text-align: center; }

  .editorial-section {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 78px 0;
  }
  .section-heading-wrap h2 { writing-mode: initial; transform: none; font-size: 4.4rem; }
  .vertical-rule { display: none; }
  .arched-figure { max-width: 88%; margin-left: auto; }
  .services-section { padding: 30px 0 82px; }
  .services-heading { align-items: start; flex-direction: column; }
  .services-heading h2,
  .features-title-block h2,
  .why-title-wrap h2 { font-size: clamp(3.7rem, 18vw, 5.6rem); }
  .image-ribbon { grid-template-columns: 1fr; }
  .ribbon-main { min-height: 340px; border-radius: 2px 52px 2px 2px; }
  .ribbon-side { width: 72%; min-height: 330px; margin-left: auto!important; border-radius: 52px 2px 2px 2px; }

  .features-section {
    width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 78px;
    padding: 64px 24px 34px;
  }
  .feature-figure { width: 78%; min-height: 410px; margin-left: auto; }
  .feature-figure img { min-height: 410px; }
  .why-section { min-height: 380px; grid-template-columns: 1fr; gap: 10px; padding: 48px 0 82px; }
  .why-number { font-size: 3.8rem; }
  .why-title-wrap { padding-left: 0; }
  .contact-section { grid-template-columns: 1fr; gap: 18px; margin-bottom: 56px; padding: 34px 24px; }
  .contact-section .button { grid-column: auto; width: 100%; }
  .contact-kicker { order: -1; }
  .site-footer { padding-top: 38px; padding-bottom: 38px; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; }

  .policy-shell { padding-top: 34px; }
  .policy-hero { grid-template-columns: 1fr; gap: 18px; }
  .policy-seal { position: static; }
  .policy-seal img { width: 84px; height: 84px; border-radius: 20px; }
  .policy-title-block { padding: 34px 24px; }
  .policy-title-block h1 { font-size: clamp(2.7rem, 13vw, 4.7rem); overflow-wrap: anywhere; }
  .policy-body { padding: 0 24px 42px; }
  .policy-section { padding: 38px 0; }
  .policy-section::before { left: -24px; }
  .policy-section p,
  .policy-section li { font-size: .96rem; line-height: 1.75; overflow-wrap: anywhere; }
}

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