:root {
  --page: #fcfaf7;
  --surface: rgba(255, 253, 248, 0.88);
  --panel: #fffdf8;
  --line: rgba(142, 113, 90, 0.16);
  --ink: #2a2220;
  --muted: #7d6a5c;
  --accent: #b08a63;
  --accent-strong: #9d7854;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 10%, rgba(197, 164, 124, 0.16), transparent 24%),
    radial-gradient(circle at 16% 18%, rgba(183, 0, 79, 0.07), transparent 26%),
    var(--page);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

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

img {
  display: block;
  width: 100%;
}

.landing-shell {
  min-height: 100vh;
}

.site-header,
.hero-section,
.editorial-band,
.showcase-section,
.process-section,
.cta-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  backdrop-filter: blur(16px);
}

.site-brand {
  display: grid;
  gap: 3px;
}

.site-brand strong {
  font-size: 16px;
  font-weight: 800;
}

.site-brand span,
.site-nav a {
  color: var(--muted);
  font-size: 13px;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-actions {
  display: flex;
  gap: 12px;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-button {
  background: linear-gradient(180deg, #b18b66, #9e7754);
  color: #fffdf8;
  box-shadow: 0 14px 32px rgba(144, 106, 74, 0.2);
}

.secondary-button,
.ghost-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 44px;
  align-items: center;
  padding: 48px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.cta-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 600;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-text,
.cta-copy p:not(.eyebrow),
.benefits-grid p,
.showcase-card p,
.process-list p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  display: grid;
  gap: 18px;
}

.preview-frame,
.preview-note,
.benefits-grid article,
.showcase-card,
.process-list article {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 44px rgba(65, 43, 27, 0.08);
  backdrop-filter: blur(18px);
}

.preview-frame {
  overflow: hidden;
  border-radius: 28px;
}

.preview-frame img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.preview-overlay {
  display: grid;
  gap: 6px;
  padding: 20px 22px 22px;
}

.preview-kicker {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.preview-overlay strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
}

.preview-overlay small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.preview-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
}

.preview-note .material-symbols-outlined {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(176, 138, 99, 0.14);
  color: var(--accent-strong);
}

.preview-note strong,
.benefits-grid h3,
.showcase-card strong,
.process-list h3 {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
}

.preview-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.editorial-band,
.showcase-section,
.process-section,
.cta-section {
  padding: 48px 0 72px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

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

.benefits-grid article {
  padding: 24px;
  border-radius: 24px;
}

.benefits-grid .material-symbols-outlined {
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 30px;
}

.benefits-grid p,
.showcase-card p,
.process-list p {
  margin: 0;
  font-size: 14px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.showcase-card {
  overflow: hidden;
  border-radius: 26px;
}

.showcase-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.showcase-card.tall img {
  aspect-ratio: 1 / 1.25;
}

.showcase-card div {
  padding: 18px 20px 20px;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 24px;
}

.process-list span {
  color: var(--accent-strong);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-bottom: 88px;
}

.cta-copy h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
}

.cta-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 980px) {
  .site-header,
  .site-nav,
  .site-actions,
  .hero-actions,
  .hero-points,
  .cta-actions {
    flex-wrap: wrap;
  }

  .hero-section,
  .showcase-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  .site-actions {
    width: 100%;
  }

  .site-nav {
    gap: 16px;
    overflow-x: auto;
  }

  .site-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-section,
  .editorial-band,
  .showcase-section,
  .process-section,
  .cta-section {
    padding-top: 28px;
    padding-bottom: 52px;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
