:root {
  --bg: #f7f1e8;
  --bg-soft: #fbf7f0;
  --surface: rgba(255, 251, 245, 0.86);
  --surface-strong: #fffaf3;
  --line: rgba(103, 106, 82, 0.18);
  --text: #433a31;
  --muted: #72685d;
  --sage: #98a17b;
  --sage-deep: #5f6e51;
  --terracotta: #bb7559;
  --terracotta-deep: #9e5c42;
  --honey: #e7d7a8;
  --shadow: 0 24px 70px rgba(84, 72, 58, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(231, 215, 168, 0.45), transparent 30%),
    radial-gradient(circle at top right, rgba(152, 161, 123, 0.22), transparent 28%),
    linear-gradient(180deg, #f8f4ec 0%, #f7efe5 100%);
}

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

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.52;
}

.page-shell::before {
  top: -6rem;
  left: -3rem;
  width: 18rem;
  height: 18rem;
  background: rgba(231, 215, 168, 0.6);
}

.page-shell::after {
  right: -6rem;
  top: 12rem;
  width: 22rem;
  height: 22rem;
  background: rgba(187, 117, 89, 0.12);
}

.site-header,
.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 251, 245, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(73, 63, 52, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 0.95rem;
  height: 2.2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sage) 0%, var(--terracotta) 100%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.96rem;
}

.site-nav a {
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.78rem 1.05rem;
  color: #fff !important;
  background: linear-gradient(135deg, var(--sage-deep), var(--terracotta));
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(95, 110, 81, 0.2);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(152, 161, 123, 0.1);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.22rem auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.section {
  padding: 4.5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 7rem);
  padding-top: 5rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--terracotta-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

p {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
}

.hero-text {
  max-width: 62ch;
  margin-top: 1.35rem;
  font-size: 1.04rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--sage-deep), var(--terracotta));
  box-shadow: 0 16px 36px rgba(95, 110, 81, 0.2);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 251, 245, 0.75);
  border-color: rgba(103, 106, 82, 0.18);
}

.hero-points,
.check-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text);
}

.hero-points li + li,
.check-list li + li {
  margin-top: 0.9rem;
}

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--terracotta));
  transform: translateY(-50%);
}

.hero-visual {
  position: relative;
}

.hero-card,
.portrait-frame,
.gallery-item,
.feature-box,
.card,
.intro-card,
.timeline-step,
.cta-shell {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-card {
  width: min(100%, 32rem);
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(247, 241, 232, 0.96), rgba(231, 215, 168, 0.42));
}

.hero-card img {
  width: 100%;
  height: auto;
}

.hero-note {
  position: absolute;
  left: -1.4rem;
  bottom: 1.5rem;
  max-width: 16rem;
  padding: 1.15rem 1.15rem 1.05rem;
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 38px rgba(73, 63, 52, 0.12);
}

.note-title {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-weight: 700;
}

.intro-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding-top: 0;
}

.intro-card {
  padding: 1.7rem 1.6rem;
  border-radius: var(--radius-md);
}

.intro-card-accent {
  background:
    linear-gradient(135deg, rgba(231, 215, 168, 0.55), rgba(255, 250, 243, 0.85)),
    var(--surface);
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.grid.three-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  padding: 1.7rem;
  border-radius: var(--radius-md);
}

.feature-layout .section-heading,
.gallery-section .section-heading {
  margin-bottom: 2.2rem;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(270px, 0.7fr);
  gap: 1.2rem;
  align-items: start;
}

.feature-copy {
  padding: 2rem 2rem 2rem 0;
}

.feature-box {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(152, 161, 123, 0.18), transparent 42%),
    rgba(255, 251, 245, 0.88);
}

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

.timeline-step {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  color: var(--terracotta-deep);
  font-weight: 800;
  background: rgba(231, 215, 168, 0.55);
  border-radius: 50%;
}

.profile-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.2rem;
  align-items: center;
}

.portrait-frame {
  padding: 1rem;
  border-radius: min(2.2rem, 7vw);
  background: linear-gradient(180deg, rgba(247, 241, 232, 0.96), rgba(231, 215, 168, 0.32));
}

.portrait-frame img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 0.7rem);
}

.quote-card {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  color: var(--text);
  background: rgba(231, 215, 168, 0.35);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.quote-card p {
  color: var(--text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.2rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

.gallery-item-wide img {
  min-height: 28rem;
}

.cta-section {
  padding-bottom: 6rem;
}

.cta-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: calc(var(--radius-lg) + 0.6rem);
  background:
    radial-gradient(circle at top right, rgba(231, 215, 168, 0.4), transparent 36%),
    linear-gradient(135deg, rgba(255, 251, 245, 0.92), rgba(247, 241, 232, 0.92));
}

.small-note {
  align-self: center;
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .hero,
  .profile-layout,
  .cta-shell,
  .feature-panel,
  .gallery-grid,
  .intro-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 42rem;
  }

  .hero-card {
    width: min(100%, 28rem);
    margin-left: 0;
  }

  .feature-copy {
    padding: 0;
  }

  .timeline,
  .grid.three-up {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0.6rem;
    flex-wrap: wrap;
    border-radius: 1.75rem;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 0.5rem;
  }

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

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

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

  .hero-note {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .hero-card {
    width: 100%;
  }

  h1 {
    max-width: 12ch;
  }

  .section {
    padding: 3.7rem 0;
  }

  .card,
  .timeline-step,
  .intro-card,
  .feature-box,
  .cta-shell {
    padding: 1.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
