:root {
  --bg: #f6efe5;
  --bg-alt: #fbf8f3;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #2f2a24;
  --muted: #6f6358;
  --accent: #d87a56;
  --accent-2: #7aa08c;
  --accent-3: #baa17f;
  --line: rgba(72, 56, 42, 0.12);
  --shadow: 0 20px 60px rgba(88, 67, 48, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 122, 86, 0.14), transparent 28%),
    radial-gradient(circle at right 10%, rgba(122, 160, 140, 0.18), transparent 26%),
    linear-gradient(180deg, #f8f2ea 0%, #f3eadf 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 85%);
}

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

a:hover {
  color: var(--accent);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -50px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: white;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.page-shell,
.legal-page {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), #f1b78d);
  box-shadow: 0 0 0 8px rgba(216, 122, 86, 0.1);
}

.eyebrow {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--muted);
}

.nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav a,
.footer-links a,
.back-link {
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 36px 0 18px;
}

.hero-copy {
  padding: 26px 0;
}

.hero-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  max-width: 9ch;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #f0a06e);
  box-shadow: 0 14px 32px rgba(216, 122, 86, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.66);
  border-color: var(--line);
}

.hero-pills,
.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-pills span,
.contact-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.visual-card {
  padding: 18px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.visual-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 12px 0 30px;
}

.trust-strip article,
.info-card,
.panel,
.legal-card {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.trust-strip article {
  padding: 22px 22px 24px;
  border-radius: var(--radius-lg);
}

.trust-strip strong,
.values-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.trust-strip p,
.info-card p,
.panel p,
.values-grid p,
.legal-card p,
.legal-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.content-section {
  padding: 32px 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.section-heading h2,
.panel h2,
.legal-card h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.03em;
}

.cards-grid,
.values-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  padding: 24px;
  border-radius: 28px;
}

.info-card h3 {
  margin-bottom: 14px;
  font-size: 1.9rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.panel {
  border-radius: 30px;
  padding: 28px;
}

.panel-soft {
  background: rgba(255, 255, 255, 0.64);
}

.panel-accent {
  background: linear-gradient(180deg, rgba(216, 122, 86, 0.12), rgba(122, 160, 140, 0.14));
}

.timeline {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.timeline li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-2), #92b4a1);
  color: white;
  font-weight: 800;
}

.timeline strong {
  display: block;
  margin-bottom: 6px;
}

.values-grid article {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
}

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
}

.legal-body {
  min-height: 100vh;
}

.legal-page {
  padding: 28px 0 56px;
}

.legal-card {
  border-radius: 34px;
  padding: 30px;
}

.legal-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(216, 122, 86, 0.08);
  border: 1px solid rgba(216, 122, 86, 0.18);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.legal-grid > div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.legal-grid h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 16px;
}

.back-link::before {
  content: "←";
  margin-right: 8px;
}

@media (max-width: 980px) {
  .hero,
  .split-layout,
  .trust-strip,
  .cards-grid,
  .values-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

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

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .page-shell,
  .legal-page {
    width: min(100% - 22px, 1160px);
  }

  .panel,
  .info-card,
  .trust-strip article,
  .legal-card {
    padding: 20px;
    border-radius: 24px;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .timeline span {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }
}
