:root {
  --rose: #d99f9f;
  --rose-deep: #c77f83;
  --rose-soft: #f0d9d6;
  --paper: #f7f3f2;
  --paper-warm: #fbf8f6;
  --brown: #6b5b5b;
  --ink: #2e2e2e;
  --muted: #776d6d;
  --white: #fffdfc;
  --line: rgba(107, 91, 91, 0.16);
  --shadow: 0 18px 42px rgba(107, 91, 91, 0.12);
--serif: "Lora", serif;
  --sans: "Inter", Arial, sans-serif;
 --script: "Alex Brush", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: 90%;
  margin: 0 auto;
}

.section-panel {
  min-height: 84vh;
  display: grid;
  align-items: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 100px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(247, 243, 242, 0);
  transition: background 250ms ease, box-shadow 250ms ease, height 250ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 68px;
  background: rgba(251, 248, 246, 0.94);
  box-shadow: 0 10px 30px rgba(107, 91, 91, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  width: clamp(168px, 16vw, 218px);
  position: relative;
  z-index: 55;
}

.brand img {
  mix-blend-mode: multiply;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 5px;
  border: 1px solid transparent;
  padding: 0 24px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.header-cta,
.button.primary {
  background: var(--rose-deep);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(199, 127, 131, 0.24);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(199, 127, 131, 0.26);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  position: relative;
  z-index: 55;
  padding: 0;
}

.menu-toggle b {
  display: none;
  color: var(--brown);
  font-size: 1.35rem;
  line-height: 1;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--brown);
  transition: transform 220ms ease;
}

.menu-toggle::before {
  content: "";
  display: none;
  width: 22px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--rose-deep);
  box-shadow: 0 -7px 0 var(--rose-deep), 0 7px 0 var(--rose-deep);
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  padding: 0;
  color: #3c2224;
}

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

.hero-image {
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 243, 242, 0.92) 0%, rgba(247, 243, 242, 0.72) 31%, rgba(217, 159, 159, 0.12) 64%, rgba(46, 46, 46, 0.08) 100%),
    rgba(217, 159, 159, 0.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 40px));
  margin-left: clamp(56px, 8vw, 120px);
  padding-top: 72px;
  color: #3f2425;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 670px;
  font-size: clamp(2.35rem, 5.2vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.2px;
}


h2 {
  font-size: clamp(1.6rem, 3.3vw, 3.2rem);
  color: #482d2e;
}

h3 {
  margin: 0;
  color: #423333;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 28px;
}

.hero-content.reveal {
  opacity: 1;
  transform: none;
}

.hero h1::after {
  content: "";
  display: block;
  width: 280px;
  max-width: 54vw;
  height: 1px;
  margin-top: 22px;
  background: rgba(107, 91, 91, 0.3);
}

.about {
  background: linear-gradient(112deg, var(--paper-warm), #fffaf8 58%, #f6eeec);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.about-copy p:not(.eyebrow):not(.signature) {
  color: var(--muted);
  max-width: 620px;
  margin: 24px 0 0;
}

.signature {
  margin: 34px 0 0;
  color: var(--rose-deep);
  font-family: var(--script);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
}

.about-notes {
  display: grid;
  gap: 36px;
  padding-left: clamp(22px, 3vw, 46px);
  border-left: 1px solid var(--line);
}

.about-notes article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 6px 16px;
}

.about-notes p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.line-icon {
  grid-row: span 2;
  color: var(--rose-deep);
  font-size: 2rem;
  line-height: 1;
}

.positioning {
  min-height: 80vh;
  background:
    radial-gradient(circle at 7% 44%, rgba(255, 255, 255, 0.56), transparent 22%),
    linear-gradient(112deg, #f8efed, #f0d8d4 52%, #f8efed);
}

.positioning::before {
  content: "CB";
  position: absolute;
  left: 3vw;
  top: 14%;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--serif);
  font-size: clamp(6rem, 20vw, 18rem);
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.section-heading {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 56px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading.align-left {
  width: auto;
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.value-card {
  min-height: 220px;
  padding: 14px clamp(16px, 2vw, 36px);
  text-align: center;
  border-left: 1px solid rgba(107, 91, 91, 0.14);
}

.value-card:first-child {
  border-left: 0;
}

.large-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  min-height: 54px;
  margin-bottom: 22px;
}

.large-icon svg {
  width: 44px;
  height: 44px;
  stroke-width: 1.25;
}

.large-icon svg + svg {
  width: 20px;
  height: 20px;
  margin-left: -6px;
  margin-top: -28px;
  fill: none;
}

.value-card p {
  margin: 14px 0 0;
  color: var(--brown);
  font-size: 0.95rem;
}

.experience {
  min-height: 72vh;
  background: var(--paper-warm);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.experience-card {
  background: #fffaf8;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(107, 91, 91, 0.06);
}

.experience-card img {
  width: 100%;
  aspect-ratio: 1.88;
  object-fit: cover;
}

.experience-card div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 4px 18px;
  padding: 24px;
}

.experience-card span {
  grid-row: span 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-deep);
  color: var(--white);
  font-size: 1.35rem;
}

.experience-card span svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.6;
}

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

.testimonials {
  background: linear-gradient(90deg, #f7eeee 0 70%, transparent 70%), var(--paper-warm);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quote-card {
  position: relative;
  padding: 34px 28px 26px;
  background: rgba(255, 253, 252, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-card::before {
  content: "“";
  position: absolute;
  left: 22px;
  top: 10px;
  color: var(--rose-deep);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.quote-card p {
  min-height: 150px;
  margin: 0;
  color: var(--brown);
  font-size: 0.94rem;
}

.quote-card div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.quote-card img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-card strong {
  color: var(--brown);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.testimonial-photo {
  width: 100%;
  height: min(560px, 68vh);
  object-fit: cover;
  border-radius: 2px;
}

.moments {
  min-height: auto;
  padding-bottom: 0;
  background: var(--paper-warm);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  width: 100%;
}

.gallery img {
  width: 100%;
  aspect-ratio: 0.98;
  object-fit: cover;
}

.fit {
  background: linear-gradient(90deg, #fffaf8, #f6eeec);
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(360px, 1.7fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
}

.fit-list {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.fit-list ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 22px;
  color: var(--brown);
  font-size: 0.95rem;
}

.fit-list li {
  position: relative;
  padding-left: 32px;
}

.fit-list li::before {
  content: "♡";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--rose-deep);
}

.fit-list.not li::before {
  content: "×";
  font-size: 1.25rem;
}

.brand-signature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.brand-signature h2 {
  font-size: clamp(1.9rem, 3vw, 3.15rem);
}

.brand-signature h2::first-line {
  color: #482d2e;
}

.brand-signature img {
  width: 100%;
  align-self: stretch;
  object-fit: cover;
  object-position: center top;
}

.signature-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
  color: var(--brown);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.signature-icons span::before {
  content: "♡";
  display: block;
  color: var(--rose-deep);
  font-size: 1.5rem;
  font-weight: 400;
}

.final-cta {
  min-height: 44vh;
  padding: 64px 0;
  background: linear-gradient(110deg, #f9efed, #fffaf8 45%, #f0d8d4);
}

.cta-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 260px;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.footer-logo {
  width: 220px;
  mix-blend-mode: multiply;
}

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

.cta-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(1.9rem, 3vw, 3.15rem);
}

.footer-info {
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-info p {
  margin: 0 0 18px;
}

.social-links {
  display: flex;
  gap: 16px;
  color: var(--rose-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

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

  .menu-toggle {
    display: grid !important;
    place-items: center;
    justify-self: end;
    order: 4;
    background: #fffaf8;
    border: 1px solid rgba(199, 127, 131, 0.32);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(107, 91, 91, 0.16);
    z-index: 90;
  }

  .menu-toggle::before {
    display: block;
  }

  .menu-toggle span {
    display: none;
  }

  .menu-toggle b {
    display: none;
  }

  .header-cta {
    justify-self: end;
    order: 2;
    min-height: 40px;
    padding: 0 18px;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 18px;
    min-height: 100dvh;
    padding: max(96px, calc(env(safe-area-inset-top) + 86px)) 24px 40px;
    background: rgba(255, 250, 248, 0.98);
    backdrop-filter: blur(18px);
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-header.is-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .about-grid,
  .testimonials-grid,
  .fit-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    width: min(360px, 100%);
    margin: 0 auto;
  }

  .about-notes,
  .fit-list {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
    border-right: 0;
  }

  .values-grid,
  .experience-grid,
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card:nth-child(odd) {
    border-left: 0;
  }

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

  .testimonial-photo {
    height: auto;
    max-height: 520px;
  }

  .footer-logo,
  .footer-info {
    justify-self: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 520px);
  }

  .section-panel {
    min-height: 80vh;
    padding: 78px 0;
  }

  .site-header {
    height: 70px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand {
    width: 156px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 243, 242, 0.55) 0%, rgba(247, 243, 242, 0.74) 42%, rgba(247, 243, 242, 0.94) 100%),
      rgba(217, 159, 159, 0.16);
  }

  .hero-content {
    align-self: end;
    padding: 0 0 58px;
    width: min(calc(100% - 30px), 520px);
    margin: 0 auto;
    text-align: left;
  }

  h1 {
    font-size: clamp(2.05rem, 9.2vw, 2.85rem);
  }

  .menu-toggle {
    position: fixed;
    top: 14px;
    right: auto;
    left: clamp(260px, calc(100vw - 60px), 330px);
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: #fffaf8;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.7rem;
  }

  .values-grid,
  .experience-grid,
  .quote-grid,
  .gallery,
  .signature-icons {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(107, 91, 91, 0.14);
    padding: 30px 12px;
  }

  .value-card:first-child {
    border-top: 0;
  }

  .experience-card div {
    grid-template-columns: 48px 1fr;
    padding: 20px;
  }

  .experience-card span {
    width: 44px;
    height: 44px;
  }

  .quote-card p {
    min-height: auto;
  }

  .gallery img {
    aspect-ratio: 1.18;
  }

  .brand-signature {
    grid-template-columns: 1fr;
  }

  .brand-signature img {
    max-height: 360px;
  }

  .footer-logo {
    width: 190px;
  }
}
