:root {
  color-scheme: light;
  --primary: #d88c6a;
  --accent: #e7b770;
  --background: #faf7f2;
  --timeline: #c9b8a8;
  --text: #191615;
  --text-secondary: #49423d;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(108, 83, 63, 0.14);
  --border: rgba(201, 184, 168, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(231, 183, 112, 0.22), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(216, 140, 106, 0.18), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, var(--background) 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1100px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-lockup img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(216, 140, 106, 0.22);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-tag {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.top-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.top-nav a,
.legal-nav a {
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.top-nav a:hover,
.legal-nav a:hover,
.legal-footer a:hover,
.hero-actions a:hover {
  opacity: 0.8;
}

.hero-card,
.legal-shell {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.lede {
  margin: 22px 0 0;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

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

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
}

.button-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(216, 140, 106, 0.28);
}

.button-secondary {
  background: rgba(231, 183, 112, 0.18);
  color: var(--text);
  border: 1px solid rgba(231, 183, 112, 0.35);
}

.hero-note {
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.hero-orb {
  position: absolute;
  inset: 10% 8%;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(216, 140, 106, 0.18), rgba(231, 183, 112, 0.22)),
    rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(216, 140, 106, 0.16);
  transform: rotate(-8deg);
}

.hero-logo-card {
  position: relative;
  width: min(320px, 100%);
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 242, 0.92));
  box-shadow: 0 24px 50px rgba(25, 22, 21, 0.12);
  text-align: center;
}

.hero-logo-card img {
  width: min(220px, 72%);
  height: auto;
  border-radius: 32px;
  display: block;
  margin: 0 auto 20px;
}

.hero-logo-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-logo-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-shell {
  width: min(920px, calc(100vw - 32px));
  margin: 40px auto 40px;
  padding: 40px 32px;
}

.meta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(231, 183, 112, 0.2);
  color: var(--text);
  font-size: 0.92rem;
}

.legal-nav {
  margin: 28px 0 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-nav a[aria-current="page"] {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.legal-content {
  display: grid;
  gap: 30px;
}

.legal-section {
  padding-top: 28px;
  border-top: 1px solid rgba(201, 184, 168, 0.42);
}

.legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-section h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.legal-section p,
.legal-section li {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.legal-section ul {
  margin: 14px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.legal-footer {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 184, 168, 0.42);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.legal-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 820px) {
  .site-shell {
    padding-top: 20px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .legal-shell {
    margin: 24px auto 32px;
    padding: 28px 20px;
    border-radius: 24px;
  }

  .hero-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .legal-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
