:root {
  color-scheme: light;
  --ink: #2f2925;
  --muted: #756962;
  --line: #e4d9d1;
  --paper: #fbf8f5;
  --mist: #f1e9e3;
  --taupe: #9b7a68;
  --taupe-dark: #725746;
  --clay: #b9856f;
  --sage: #75877d;
  --espresso: #2a211d;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(47, 41, 37, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(251, 248, 245, 0.9);
  box-shadow: 0 12px 36px rgba(47, 41, 37, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 248, 245, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(47, 41, 37, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 92px;
  height: 42px;
  object-fit: contain;
}

.brand-name {
  color: var(--taupe-dark);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 132px clamp(18px, 4vw, 56px) 120px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(42, 33, 29, 0.9) 0%, rgba(42, 33, 29, 0.74) 38%, rgba(42, 33, 29, 0.18) 100%),
    linear-gradient(0deg, rgba(42, 33, 29, 0.64) 0%, rgba(42, 33, 29, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.hero-logo {
  width: min(260px, 70vw);
  margin: 0 0 26px;
  border-radius: 8px;
  background: rgba(251, 248, 245, 0.92);
  padding: 14px 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.work-band h2,
.favorites h2,
.contact h2,
.favorites-page h1,
.guide-hero h1,
.guide-section h2 {
  margin: 0;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.9rem);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--taupe-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.hero-stats {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(251, 248, 245, 0.14);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px;
  background: rgba(42, 33, 29, 0.3);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.05rem;
}

.hero-stats span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.section-heading h2,
.work-band h2,
.favorites h2,
.contact h2,
.favorites-page h1,
.guide-hero h1 {
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.intro > p,
.work-content p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(47, 41, 37, 0.05);
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 6px;
  background: var(--mist);
  color: var(--taupe-dark);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3,
.timeline h3 {
  margin: 26px 0 10px;
  font-size: 1.32rem;
}

.service-card p,
.timeline p {
  margin: 0;
  color: var(--muted);
}

.work-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: 90px clamp(18px, 5vw, 72px);
  background: var(--espresso);
  color: var(--white);
}

.work-content {
  max-width: 780px;
}

.work-content p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.outcome-list {
  display: grid;
  gap: 12px;
}

.outcome-list div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.outcome-list span {
  color: #d6b08b;
  font-weight: 850;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.timeline article {
  position: relative;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.timeline span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--taupe);
  color: var(--white);
  font-weight: 850;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.testimonial-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(47, 41, 37, 0.05);
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: var(--espresso);
}

.faq {
  padding-top: 72px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--espresso);
  font-weight: 850;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.favorites {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.favorites-intro {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-section-title {
  margin: 42px 0 0;
  color: var(--espresso);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.product-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), #f8f1ec);
  box-shadow: 0 10px 40px rgba(47, 41, 37, 0.05);
}

.product-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.product-tag,
.discount-code {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-tag {
  color: var(--taupe-dark);
}

.discount-code {
  padding: 9px 11px;
  border: 1px solid rgba(155, 122, 104, 0.28);
  background: rgba(155, 122, 104, 0.1);
  color: var(--espresso);
}

.product-card .button {
  align-self: end;
  margin-top: auto;
}

.affiliate-note {
  max-width: 860px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
  padding: 92px clamp(18px, 5vw, 72px);
  background: var(--mist);
}

.contact-copy {
  max-width: 660px;
}

.contact-copy p {
  margin-top: 22px;
}

.contact-email {
  display: inline-block;
  margin-top: 28px;
  color: var(--taupe-dark);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdfa;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(155, 122, 104, 0.18);
  border-color: var(--taupe);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: var(--espresso);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a {
  color: var(--white);
  margin-left: 18px;
}

.guide-page {
  background:
    linear-gradient(180deg, rgba(241, 233, 227, 0.74), rgba(251, 248, 245, 0) 360px),
    var(--paper);
}

.guide-main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 88px;
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(28px, 7vw, 88px);
  align-items: center;
  padding-bottom: 64px;
}

.guide-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.guide-logo-panel {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.guide-logo-panel img {
  width: min(260px, 80%);
}

.guide-section {
  padding: 52px 0;
  border-top: 1px solid var(--line);
}

.guide-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.guide-section > p {
  max-width: 760px;
  color: var(--muted);
}

.guide-grid,
.swatch-grid,
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.guide-card,
.swatch,
.voice-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.guide-card h3,
.voice-card h3 {
  margin: 0 0 10px;
}

.guide-card p,
.voice-card p {
  margin: 0;
  color: var(--muted);
}

.swatch-color {
  height: 92px;
  border-radius: 6px;
  border: 1px solid rgba(47, 41, 37, 0.1);
}

.swatch strong,
.swatch span {
  display: block;
}

.swatch strong {
  margin-top: 14px;
}

.swatch span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9rem;
}

.type-sample {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.type-sample .display {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  font-weight: 850;
  line-height: 1;
}

.type-sample .body {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button-dark {
  background: var(--espresso);
  color: var(--white);
}

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

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 6px;
    background: transparent;
    color: inherit;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 30px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(42, 33, 29, 0.92), rgba(42, 33, 29, 0.58));
  }

  .hero-stats,
  .intro,
  .service-grid,
  .work-band,
  .timeline,
  .product-grid,
  .testimonial-grid,
  .guide-hero,
  .guide-grid,
  .swatch-grid,
  .voice-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 46px;
  }

  .service-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .brand-name {
    max-width: 134px;
    line-height: 1.05;
  }

  .brand-logo {
    width: 74px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    gap: 0;
  }

  .contact-form {
    padding: 18px;
  }
}
