:root {
  --cream: #f8f2e8;
  --soft-white: #fffaf1;
  --sand: #e7d6c0;
  --deep-sand: #c5a17f;
  --clay: #a85e45;
  --olive: #72785c;
  --charcoal: #2f2a25;
  --muted: #6f665e;
  --line: rgba(47, 42, 37, 0.14);
  --shadow: 0 22px 60px rgba(69, 48, 35, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 241, 0.82);
  border-bottom: 1px solid rgba(47, 42, 37, 0.09);
  backdrop-filter: blur(18px);
}

.brand-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-self: start;
  min-width: 245px;
  color: var(--olive);
  line-height: 1;
}

.brand-rule {
  display: block;
  width: 1px;
  height: 18px;
  background: rgba(114, 120, 92, 0.68);
}

.brand-wordmark {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.88;
  margin: 8px 0 7px;
  text-transform: lowercase;
}

.brand-subtitle {
  margin-bottom: 8px;
  color: var(--charcoal);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a,
.nav-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.nav-cta {
  min-width: 96px;
  padding: 10px 18px;
  border: 1px solid rgba(47, 42, 37, 0.24);
  border-radius: 999px;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.nav-cta:hover {
  background: var(--charcoal);
  color: var(--soft-white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 80vh;
  padding: 104px clamp(20px, 5vw, 72px) 24px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(248, 242, 232, 0.94) 0%, rgba(248, 242, 232, 0.82) 40%, rgba(248, 242, 232, 0.2) 78%),
    url("assets/silvie-amber-hero-salmon-no-pepper.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(0deg, var(--cream), rgba(248, 242, 232, 0));
  content: "";
}

.hero-content {
  width: min(900px, 100%);
  align-self: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.96;
}

h1 {
  max-width: 880px;
  margin-bottom: 26px;
  font-size: 5.65rem;
}

h2 {
  margin-bottom: 20px;
  font-size: 4.5rem;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.05;
}

.hero-intro {
  max-width: 690px;
  margin-bottom: 34px;
  color: #504840;
  font-size: 1.16rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--charcoal);
  color: var(--soft-white);
}

.button.secondary {
  background: rgba(255, 250, 241, 0.72);
  border-color: rgba(47, 42, 37, 0.24);
  color: var(--charcoal);
}

.intro-band {
  padding: 0 clamp(20px, 5vw, 72px) 72px;
}

.practice-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1120px;
  margin: 0 auto;
}

.practice-strip span,
.feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.64);
  color: #5b5149;
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding: 96px clamp(20px, 5vw, 72px);
}

.about-layout,
.speaking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 7vw, 96px);
  max-width: 1180px;
  margin: 0 auto;
}

.copy-stack {
  color: var(--muted);
  font-size: 1.04rem;
}

.work-section {
  background: var(--soft-white);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 42px;
}

.service-grid,
.resource-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card,
.resource-row article,
.topic-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 242, 232, 0.68);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 285px;
  padding: 28px;
}

.card-number {
  display: block;
  margin-bottom: 74px;
  color: var(--olive);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card p,
.resource-row p,
.speaking-layout p,
.feature-copy p,
.contact-inner p {
  color: var(--muted);
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: end;
  padding: 110px clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #efe0cd 0%, #f8f2e8 58%, #d8c6aa 100%);
}

.feature-copy {
  max-width: 820px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.speaking-section {
  background: #eee2d1;
}

.topic-panel {
  padding: 30px;
  background: rgba(255, 250, 241, 0.7);
}

.topic-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.topic-panel li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.topic-panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.resources-section {
  padding: 96px clamp(20px, 5vw, 72px);
  background: var(--cream);
}

.resource-row article {
  min-height: 190px;
  padding: 26px;
}

.contact-section {
  padding: 98px clamp(20px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--soft-white);
}

.contact-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-kicker {
  color: var(--deep-sand);
}

.contact-inner .button.primary {
  background: var(--soft-white);
  color: var(--charcoal);
}

.contact-inner .button.secondary {
  border-color: rgba(255, 250, 241, 0.34);
  background: transparent;
  color: var(--soft-white);
}

.contact-actions {
  justify-content: center;
  margin-top: 28px;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 250, 241, 0.14);
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--soft-white);
  font-weight: 700;
}

.policy-page {
  min-height: 100vh;
  padding: 54px clamp(20px, 6vw, 96px);
  background: var(--cream);
}

.policy-back {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--olive);
  font-weight: 800;
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: 12px;
  font-size: 4.5rem;
}

.policy-content h2 {
  margin-top: 42px;
  font-size: 2.4rem;
}

.policy-content p {
  color: var(--muted);
}

.policy-content a {
  color: var(--clay);
  font-weight: 800;
}

.policy-date,
.policy-note {
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 150px;
  }

  .hero-media {
    background-image: linear-gradient(90deg, rgba(248, 242, 232, 0.96), rgba(248, 242, 232, 0.76)),
      url("assets/silvie-amber-hero-salmon-no-pepper.png");
  }

  .about-layout,
  .speaking-layout,
  .feature-section,
  .service-grid,
  .resource-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 220px;
  }

  .card-number {
    margin-bottom: 44px;
  }

  .brand-logo {
    min-width: 196px;
  }

  .brand-rule {
    height: 12px;
  }

  .brand-wordmark {
    font-size: 2rem;
    margin: 6px 0 6px;
  }

  .brand-subtitle {
    margin-bottom: 6px;
    font-size: 0.5rem;
    letter-spacing: 0;
  }

  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 3.45rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand-logo {
    min-width: 148px;
  }

  .brand-rule {
    height: 8px;
  }

  .brand-wordmark {
    font-size: 1.48rem;
    margin: 5px 0 4px;
  }

  .brand-subtitle {
    margin-bottom: 5px;
    font-size: 0.4rem;
    letter-spacing: 0;
  }

  .nav-cta {
    min-width: auto;
    padding: 9px 13px;
  }

  .main-nav {
    gap: 18px;
    font-size: 0.75rem;
  }

  .hero {
    min-height: 86vh;
    padding: 136px 18px 34px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .section,
  .feature-section,
  .resources-section,
  .contact-section {
    padding: 72px 18px;
  }

  .intro-band {
    padding: 0 18px 48px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
  }

  .policy-content h1 {
    font-size: 3rem;
  }

  .policy-content h2 {
    font-size: 2rem;
  }
}
