:root {
  --color-bg: #ffffff;
  --color-surface: #f9f8f6;
  --color-text: #111111;
  --color-muted: #4a4a4a;
  --color-line: #dfd7d1;
  --color-accent: #b86f5b;
  --color-accent-deep: #945341;
  --color-card: #fffdfb;
  --shadow-soft: 0 18px 40px rgba(17, 17, 17, 0.08);
  --shadow-subtle: 0 10px 24px rgba(17, 17, 17, 0.05);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 999px;
  --container: 1180px;
  --space-section: clamp(4.5rem, 8vw, 8rem);
  --space-gap: clamp(1.25rem, 3vw, 2rem);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--space-section) 0;
}

.section-alt {
  background: var(--color-surface);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--color-accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.section-heading h2,
.hero h1,
.philosophy-intro h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.section-heading h2,
.philosophy-intro h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1rem;
}

.section-heading p,
.philosophy-intro p,
.philosophy-story p {
  color: var(--color-muted);
  font-size: 1.03rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 215, 209, 0.7);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 92px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand-image {
  display: block;
  width: 100%;
  height: auto;
}

.brand-image-header {
  width: clamp(100px, 10vw, 140px);
  transform: none;
  filter: grayscale(1);
}

.brand-image-footer {
  width: min(100%, 192px);
  filter: grayscale(1) brightness(0) invert(1);
  mix-blend-mode: screen;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(223, 215, 209, 0.95);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.site-nav a {
  position: relative;
  padding-bottom: 0.15rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--color-accent);
  color: #fffaf7;
  box-shadow: var(--shadow-subtle);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-accent-deep);
}

.button-secondary {
  border-color: rgba(184, 111, 91, 0.35);
  background: transparent;
  color: var(--color-text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent-deep);
}

.hero {
  padding-top: clamp(3rem, 6vw, 5.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(3.3rem, 7vw, 5.9rem);
  max-width: 10ch;
  margin-bottom: 1.4rem;
}

.hero-text {
  max-width: 60ch;
  font-size: 1.12rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 38rem;
  margin-top: 2.2rem;
}

.hero-note-line {
  width: 56px;
  height: 1px;
  margin-top: 0.75rem;
  background: var(--color-accent);
  flex: 0 0 auto;
}

.hero-note p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.visual-frame {
  position: relative;
  height: 100%;
  min-height: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(184, 111, 91, 0.18), transparent 28%),
    linear-gradient(180deg, #fcfaf8 0%, #f4efe9 100%);
  box-shadow: var(--shadow-soft);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96) brightness(0.88);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.02) 45%, rgba(17, 17, 17, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(17, 17, 17, 0.08));
}

.visual-artwork {
  position: absolute;
  top: 12%;
  left: 12%;
  width: min(58%, 360px);
  aspect-ratio: 4 / 5;
  padding: 1.25rem;
  background: #f7f3ef;
  border-radius: 6px;
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.12);
}

.artwork-matte {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 2px;
  background: #fcfbfa;
}

.artwork-canvas {
  position: absolute;
  inset: 2.15rem;
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(184, 111, 91, 0.72), rgba(140, 86, 69, 0.92)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.12), transparent 60%);
}

.artwork-canvas::before,
.artwork-canvas::after {
  content: "";
  position: absolute;
  background: rgba(255, 246, 241, 0.5);
}

.artwork-canvas::before {
  inset: 18% 15% auto auto;
  width: 34%;
  height: 34%;
  border-radius: 50%;
}

.artwork-canvas::after {
  left: 14%;
  bottom: 14%;
  width: 54%;
  height: 2px;
}

.visual-plaque {
  position: absolute;
  right: 10%;
  bottom: 16%;
  max-width: 220px;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 253, 251, 0.9);
  border: 1px solid rgba(223, 215, 209, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-subtle);
}

.visual-plaque p,
.visual-plaque span {
  margin: 0;
}

.visual-plaque p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
}

.visual-plaque span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.floating-card {
  position: absolute;
  max-width: 220px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(223, 215, 209, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-subtle);
}

.floating-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.floating-card span {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.floating-card-top {
  top: 9%;
  right: -3%;
}

.floating-card-bottom {
  left: -4%;
  bottom: 10%;
}

.image-credit {
  margin: 1rem 0 0;
  text-align: right;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.image-credit a,
.story-figure a {
  text-decoration: underline;
  text-decoration-color: rgba(184, 111, 91, 0.45);
  text-underline-offset: 0.18rem;
}

.stats-bar {
  padding: 0 0 var(--space-section);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--color-line);
  background: var(--color-line);
}

.stat-card {
  padding: 2rem;
  background: var(--color-bg);
}

.stat-value {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  line-height: 1;
}

.stat-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.stat-card p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
}

.steps-grid,
.dual-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-gap);
}

.step-card,
.audience-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(223, 215, 209, 0.95);
  border-radius: var(--radius-md);
}

.step-number {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--color-accent);
}

.step-card h3,
.benefit-item h3,
.audience-card h3,
.site-footer h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.step-card p,
.benefit-item p,
.audience-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.value-grid,
.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.value-heading {
  margin-bottom: 0;
}

.benefits-list {
  display: grid;
  gap: 1.3rem;
}

.benefit-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1.1rem;
  padding: 1.65rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-card);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: rgba(184, 111, 91, 0.12);
  color: var(--color-accent-deep);
  font-family: var(--font-display);
  font-size: 1.9rem;
}

.philosophy-story {
  padding-top: 0.35rem;
}

.story-figure {
  margin: 0 0 1.5rem;
}

.story-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.story-figure figcaption {
  margin-top: 0.75rem;
  color: var(--color-muted);
  font-size: 0.84rem;
}

.story-divider {
  width: 100%;
  height: 1px;
  margin: 2rem 0;
  background: var(--color-line);
}

.story-quote {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--color-text);
}

.dual-cta-wrap {
  display: grid;
  gap: 2.5rem;
}

.dual-cta-heading {
  margin-bottom: 0;
}

.dual-cta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  padding: clamp(2rem, 4vw, 2.8rem);
  background: linear-gradient(180deg, #fffdfb 0%, #faf6f2 100%);
}

.audience-card-alt {
  background: linear-gradient(180deg, #fdfaf7 0%, #f6f0eb 100%);
}

.audience-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-subtle);
}

.audience-label {
  margin-bottom: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  background: #161413;
  color: rgba(255, 250, 247, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.7fr));
  gap: 2rem;
}

.site-footer h3 {
  color: #fffaf7;
}

.footer-brand-block p,
.footer-links,
.footer-bottom p {
  color: rgba(255, 250, 247, 0.72);
}

.footer-brand-block .brand {
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 250, 247, 0.12);
}

.footer-credit {
  margin-top: 0.35rem;
  font-size: 0.85rem;
}

@media (max-width: 1080px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.9rem 0 1rem;
  }

  .hero-grid,
  .value-grid,
  .philosophy-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-visual {
    min-height: 560px;
  }

  .visual-frame {
    min-height: 560px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .header-inner {
    min-height: 84px;
    flex-wrap: nowrap;
  }

  .stats-grid,
  .steps-grid,
  .dual-cta-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(223, 215, 209, 0.95);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    font-size: 0.95rem;
    overflow: hidden;
  }

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

  .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: 16px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a + a {
    border-top: 1px solid rgba(223, 215, 209, 0.75);
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-visual,
  .visual-frame {
    min-height: 500px;
  }

  .image-credit {
    text-align: left;
  }

  .floating-card-top {
    right: 1rem;
  }

  .floating-card-bottom {
    left: 1rem;
  }
}

@media (max-width: 560px) {
  .brand {
    justify-content: flex-start;
  }

  .brand-image-header {
    width: min(34vw, 132px);
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    margin-left: auto;
    margin-right: auto;
  }

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

  .button {
    width: 100%;
  }

  .hero-note {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-note-line {
    width: 72px;
    margin-top: 0;
  }

  .hero-visual,
  .visual-frame {
    min-height: 420px;
  }

  .visual-artwork {
    top: 10%;
    left: 10%;
    width: 66%;
  }

  .visual-plaque {
    right: 6%;
    bottom: 10%;
    max-width: 190px;
  }

  .visual-artwork {
    width: 60%;
  }

  .floating-card {
    max-width: 180px;
    padding: 0.9rem;
  }

  .benefit-item {
    grid-template-columns: 1fr;
  }

  .benefit-icon {
    width: 64px;
    height: 64px;
  }

  .story-quote {
    font-size: 1.5rem;
  }
}
