:root {
  color-scheme: light dark;
  --surface: #f1f3f2;
  --surface-raised: #f9faf9;
  --surface-muted: #e5e9e7;
  --text: #202522;
  --muted: #59625d;
  --soft: #747d78;
  --line: rgba(32, 37, 34, 0.15);
  --accent: #a2463f;
  --accent-strong: #7e342f;
  --accent-soft: #ead5d2;
  --focus: #b6534b;
  --shadow: 0 24px 60px rgba(33, 42, 37, 0.13);
  --radius: 14px;
  --header-height: 72px;
  --max-width: 1200px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --surface: #151918;
    --surface-raised: #1c211f;
    --surface-muted: #252b28;
    --text: #eef1ef;
    --muted: #b5bdb9;
    --soft: #959f9a;
    --line: rgba(238, 241, 239, 0.16);
    --accent: #d2746c;
    --accent-strong: #e58a81;
    --accent-soft: #49302d;
    --focus: #e58a81;
    --shadow: 0 24px 60px rgba(5, 8, 7, 0.36);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family:
    "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, var(--accent) 70%, transparent);
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--surface);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  color: var(--text);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--text);
  border-radius: 10px;
  background: var(--text);
  color: var(--surface);
  font-size: 0.86rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  white-space: nowrap;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav .nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: var(--accent);
  color: #f8f6f5;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.site-nav .nav-cta:hover,
.button:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: #f8f6f5;
}

.site-nav .nav-cta:active,
.button:active {
  transform: translateY(1px);
}

.button.secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--text);
  background: var(--surface-raised);
  color: var(--text);
}

[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.62;
  pointer-events: none;
}

.menu-button {
  display: none;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-raised);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
}

.owner-notice {
  border-bottom: 1px solid #c27431;
  background: #f5dfc4;
  color: #5d3314;
  font-size: 0.86rem;
  font-weight: 650;
  text-align: center;
}

.owner-notice .shell {
  padding-block: 8px;
}

.hero {
  display: grid;
  min-height: calc(100dvh - var(--header-height));
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  padding-block: clamp(48px, 7vw, 84px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1,
.page-hero h1 {
  max-width: 11.5ch;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.5rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lede {
  max-width: 38rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

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

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  top: -24px;
  right: 38px;
  width: 44%;
  height: 44%;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  content: "";
}

.hero-media img {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: var(--surface-raised);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  padding: 26px 32px;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.96rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding-block: clamp(82px, 11vw, 140px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(38px, 6vw, 68px);
}

.section-heading h2,
.content-heading {
  margin: 0;
  font-size: clamp(2.25rem, 4.8vw, 4.25rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading p {
  max-width: 62ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(300px, 0.66fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

.feature-image {
  grid-row: 1 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.feature-image img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.feature-panel {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.feature-panel.accent-panel {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.feature-panel h3 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.feature-panel p {
  max-width: 33ch;
  margin: 28px 0 0;
  color: var(--muted);
}

.accent-panel p {
  color: var(--text);
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
}

.studio-copy h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 1;
}

.studio-copy > p {
  max-width: 48ch;
  margin: 24px 0 0;
  color: var(--muted);
}

.use-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
  margin-top: 42px;
}

.use-item {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.use-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.use-item span {
  color: var(--soft);
  font-size: 0.86rem;
}

.studio-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.studio-photo img {
  min-height: 560px;
  object-fit: cover;
}

.color-section {
  overflow: hidden;
}

.color-board {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.color-copy {
  padding: clamp(38px, 6vw, 72px);
}

.color-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.color-copy p {
  max-width: 42ch;
  margin: 22px 0 0;
  color: var(--muted);
}

.swatches {
  display: flex;
  gap: 10px;
  margin-top: 38px;
}

.swatch {
  width: 42px;
  height: 42px;
  border: 2px solid var(--surface-raised);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.swatch.snow {
  background: #dfe3e1;
}

.swatch.stone {
  background: #8f9692;
}

.swatch.sage {
  background: #7d887d;
}

.swatch.clay {
  background: #a2463f;
}

.swatch.charcoal {
  background: #343b37;
}

.color-field {
  min-height: 520px;
  background:
    linear-gradient(118deg, transparent 0 48%, rgba(255, 255, 255, 0.14) 48% 50%, transparent 50%),
    #a2463f;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 9vw, 130px);
}

.faq-intro {
  position: sticky;
  top: 112px;
  align-self: start;
}

.faq-intro h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.faq-intro p {
  max-width: 34ch;
  margin: 20px 0 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 86px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 22px;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 650;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 64ch;
  margin: -4px 0 26px;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 36px;
  padding: clamp(40px, 7vw, 84px);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent-soft);
}

.cta-panel h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1;
}

.cta-panel p {
  max-width: 50ch;
  margin: 20px 0 0;
  color: var(--muted);
}

.page-hero {
  padding-block: clamp(74px, 12vw, 150px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero p {
  max-width: 60ch;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.page-hero .page-meta {
  margin-top: 28px;
  color: var(--soft);
  font-size: 0.88rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(42px, 10vw, 150px);
}

.editorial-aside {
  align-self: start;
  padding-top: 6px;
  color: var(--soft);
  font-size: 0.9rem;
}

.editorial-aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin: 72px 0 18px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 42px 0 12px;
  font-size: 1.15rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose a {
  color: var(--accent-strong);
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 8px;
}

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

.identity-item {
  min-height: 190px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.identity-item strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.identity-item p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 18px;
}

.contact-primary,
.contact-secondary {
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.contact-primary h2,
.contact-secondary h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.contact-email {
  display: inline-block;
  margin-top: 28px;
  color: var(--accent-strong);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-primary > p,
.contact-secondary > p {
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-topics {
  display: grid;
  gap: 20px;
  margin-top: 38px;
}

.contact-topic {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.contact-topic strong,
.contact-topic span {
  display: block;
}

.contact-topic span {
  margin-top: 3px;
  color: var(--soft);
  font-size: 0.9rem;
}

.launch-note {
  margin-top: 32px;
  padding: 20px;
  border: 1px solid #c27431;
  border-radius: 10px;
  background: #f5dfc4;
  color: #5d3314;
}

.not-found {
  display: grid;
  min-height: calc(100dvh - var(--header-height));
  place-items: center;
  padding-block: 80px;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(4rem, 13vw, 9rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.not-found p {
  max-width: 42ch;
  margin: 28px auto;
  color: var(--muted);
}

.site-footer {
  padding-top: 72px;
  border-top: 1px solid var(--line);
  background: var(--surface-raised);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 60px;
  padding-bottom: 64px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-summary {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  width: fit-content;
  color: var(--muted);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-heading {
  margin: 0 0 6px;
  font-size: 0.86rem;
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 960px) {
  .site-nav {
    gap: 16px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 58px 74px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-media {
    width: min(86%, 720px);
    margin-left: auto;
  }

  .feature-layout,
  .studio-layout,
  .color-board,
  .faq-layout,
  .editorial-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .feature-image {
    grid-row: auto;
  }

  .feature-image img,
  .studio-photo img {
    min-height: 440px;
  }

  .studio-copy {
    max-width: 720px;
  }

  .color-field {
    min-height: 360px;
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header {
    height: var(--header-height);
  }

  .nav-shell {
    min-height: var(--header-height);
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

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

  .site-nav .nav-cta {
    margin-top: 8px;
    padding-inline: 18px;
  }

  .hero {
    gap: 50px;
    padding-block: 48px 64px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.4rem);
  }

  .hero-lede {
    margin-top: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-media {
    width: 94%;
  }

  .hero-media::before {
    top: -15px;
    right: 20px;
  }

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

  .proof-item {
    padding-inline: 0;
  }

  .proof-item + .proof-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-image img,
  .studio-photo img {
    min-height: 330px;
  }

  .feature-panel {
    min-height: 240px;
  }

  .use-list,
  .identity-block {
    grid-template-columns: 1fr;
  }

  .color-copy {
    padding: 34px 26px;
  }

  .color-field {
    min-height: 260px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 36px 26px;
  }

  .cta-panel .button {
    width: 100%;
  }

  .page-hero {
    padding-block: 66px 84px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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