@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-latin.woff2') format('woff2'),
       url('fonts/dm-sans-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gestura';
  src: url('fonts/gestura-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gestura';
  src: url('fonts/gestura-regular-italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --muted: #686868;
  --soft: #f5f5f5;
  --line: rgba(0,0,0,0.08);
  --dark: #0c0e0d;
  --orange: #C8501E;
  --accent: linear-gradient(135deg, #EFA08A 0%, #C8501E 100%);
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Gestura', Georgia, serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1060px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo span {
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { flex-shrink: 0; }
@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* ── Buttons ── */
.bust-btn-ring {
  display: inline-flex;
  border-radius: 100px;
  border: 1px solid rgba(239,160,138,0.35);
  padding: 5px;
  transition: transform 0.25s ease;
}
.bust-btn-ring:hover { transform: scale(1.04); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.bust-btn-inner { display: inline-flex; align-items: center; gap: 8px; }
.bust-btn-clone { display: none; }
.btn-logo { order: -1; }

/* ── Container ── */
.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── Legal Content ── */
.legal-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--line);
}
.legal-hero .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(200,80,30,0.08);
  border: 1px solid rgba(200,80,30,0.16);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.legal-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.legal-hero p {
  font-size: 0.92rem;
  color: var(--muted);
}

.legal-body {
  padding: 64px 0 96px;
  max-width: 740px;
}
.legal-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 48px 0 12px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.legal-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-body h3 {
  font-size: 0.97rem;
  font-weight: 600;
  margin: 24px 0 8px;
}
.legal-body p {
  font-size: 0.92rem;
  color: rgba(10,10,10,0.72);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-body ul, .legal-body ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-body li {
  font-size: 0.92rem;
  color: rgba(10,10,10,0.72);
  line-height: 1.75;
  margin-bottom: 6px;
}
.legal-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-info-box {
  background: var(--soft);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 24px 0;
}
.legal-info-box p { margin-bottom: 6px; }
.legal-info-box p:last-child { margin-bottom: 0; }

/* ── Footer ── */
.footer {
  background: #f7f7f7;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 72px 0 32px;
  color: var(--ink);
}
.footer .container { overflow: visible; }
.footer-grid {
  display: grid;
  grid-template-columns: 3.2fr 0.8fr 0.8fr;
  gap: 24px;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand .logo span {
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-list a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.22s ease;
}
.footer-contact-list a:hover { color: var(--ink); }
.footer .bust-btn-ring { margin-top: 24px; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.22s ease;
}
.footer-col ul li a:hover { color: var(--ink); }
.footer-wordmark {
  margin: 12px 0 34px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(3.4rem, 13vw, 11rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  white-space: nowrap;
  overflow: visible;
  filter: drop-shadow(0 16px 34px rgba(200,80,30,0.18));
}
@media (max-width: 720px) {
  .footer-wordmark { font-size: clamp(2.45rem, 15vw, 5.4rem); white-space: normal; line-height: 0.9; }
}
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(0,0,0,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(0,0,0,0.4); transition: color 0.22s ease; }
.footer-legal a:hover { color: var(--ink); }
