:root {
  --black: #050505;
  --bg: #050505;
  --surface: #0b0b0b;
  --surface2: #11100d;
  --ink: #f2f0ec;
  --ink2: #9a9890;
  --ink3: #555350;
  --gold: #c9a96e;
  --silver: #c0c4cc;
  --chrome: linear-gradient(135deg,#e8eaed,#a8acb4,#d4d8e0,#8c9099);
  --border: rgba(242,240,236,0.07);
  --border2: rgba(242,240,236,0.14);
  --glow: 0 0 34px rgba(201,169,110,0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Outfit", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(to right,rgba(255,255,255,0.025) 1px,transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom,black 0%,transparent 65%);
  -webkit-mask-image: linear-gradient(to bottom,black 0%,transparent 65%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background:
    radial-gradient(circle at 74% 12%,rgba(201,169,110,0.09),transparent 22rem),
    linear-gradient(118deg,transparent 0%,transparent 47%,rgba(10,14,20,0.16) 47.2%,rgba(10,14,20,0.06) 60%,transparent 60.4%);
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  min-height: 88px;
  padding: 0.25rem 5vw 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(5,5,6,0.84);
  backdrop-filter: blur(20px);
  overflow: visible;
}

.brand img {
  display: block;
  width: auto;
  height: 112px;
  margin-top: -22px;
  margin-bottom: -24px;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.58));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink2);
}

.nav a {
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav a:hover { color: var(--ink); }

.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-left: auto;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #050506;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  box-shadow: var(--glow);
}

.order-btn:hover { opacity: 0.85; }

.policy-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 10rem 5vw 6rem;
  border-bottom: 1px solid var(--border);
}

.policy-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.policy-hero {
  position: sticky;
  top: 8.5rem;
  min-width: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.96;
  font-weight: 300;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

h1 em {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.intro {
  max-width: 520px;
  margin: 1.45rem 0 0;
  color: var(--ink2);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
}

.policy-card {
  min-width: 0;
  padding: clamp(1.35rem, 3.8vw, 2.15rem);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg,rgba(255,255,255,0.035),rgba(255,255,255,0.012));
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
}

.policy-section + .policy-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.policy-section h2 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.05rem);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.policy-section p,
.policy-section li {
  color: var(--ink2);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.82;
  overflow-wrap: anywhere;
}

.policy-section p { margin: 0.45rem 0; }
.policy-section ul { margin: 0.65rem 0 0; padding-left: 1.05rem; }
.policy-section li + li { margin-top: 0.45rem; }
.policy-section strong { color: var(--silver); font-weight: 400; }

.contact-line {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--ink2);
  font-size: 0.92rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.contact-line a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer {
  position: relative;
  z-index: 1;
  padding: 2rem 5vw;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-bottom {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--ink3);
  font-size: 0.72rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a { transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 980px) {
  .nav { gap: 1.25rem; }
  .policy-shell {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .policy-hero {
    position: static;
  }
  .intro {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 88px;
    padding: 0.25rem 5vw 0.65rem;
    gap: 1rem;
  }

  .brand img {
    height: 96px;
    margin-top: -15px;
    margin-bottom: -18px;
  }
  .nav { display: none; }
  .order-btn {
    min-height: 36px;
    padding: 0.58rem 0.78rem;
    font-size: 0.62rem;
    flex-shrink: 0;
  }
  .policy-page {
    padding: 8.2rem 5vw 4rem;
  }
  h1 {
    font-size: clamp(2.75rem, 14vw, 4.35rem);
    line-height: 0.98;
  }
  .intro {
    margin-top: 1.15rem;
    font-size: 0.94rem;
    line-height: 1.78;
  }
  .policy-card {
    border-radius: 16px;
    padding: 1.2rem;
  }
  .policy-section + .policy-section {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
  .policy-section p,
  .policy-section li,
  .contact-line {
    font-size: 0.88rem;
    line-height: 1.72;
  }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 420px) {
  .site-header { padding-left: 4.5vw; padding-right: 4.5vw; }
  .brand img { height: 96px; }
  .order-btn {
    max-width: 148px;
    padding-left: 0.78rem;
    padding-right: 0.78rem;
    letter-spacing: 0.08em;
  }
  .policy-page {
    padding-left: 4.5vw;
    padding-right: 4.5vw;
  }
  h1 { font-size: clamp(2.35rem, 13vw, 3.45rem); }
  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
  }
}
