:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --surface-soft: #f8f1eb;
  --soft: #efe2d8;
  --text: #3b2b24;
  --muted: #796a62;
  --primary: #b46a31;
  --primary-dark: #7d431f;
  --green: #24c461;
  --border: #e4d8ce;
  --shadow-soft: 0 10px 28px rgba(96, 56, 29, 0.08);
  --shadow-strong: 0 22px 60px rgba(96, 56, 29, 0.18);
  --radius: 22px;
  --font-sans: Inter, Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 800px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px max(24px, calc((100vw - 1160px) / 2 + 24px));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(228, 216, 206, 0.72);
  backdrop-filter: blur(10px);
}

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

.brand img,
.site-footer img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.brand strong,
.site-footer strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.1;
}

.brand small,
.site-footer span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.top-nav a {
  transition: color 0.2s ease;
}

.top-nav a:hover {
  color: var(--primary-dark);
}

.nav-cta {
  color: var(--green);
}

.hero {
  overflow: hidden;
  padding: 76px 0 84px;
  background:
    radial-gradient(circle at 84% 12%, rgba(180, 106, 49, 0.18), transparent 34%),
    linear-gradient(135deg, #fbf5ee 0%, #ecd8cd 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: clamp(36px, 5vw, 68px);
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 1px solid rgba(180, 106, 49, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.55rem, 4.45vw, 4.35rem);
}

h2 {
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 3.35vw, 3.35rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
}

.hero-copy p,
.section-subtitle,
.intro p,
.split p,
.notice p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.hero-copy p {
  max-width: 620px;
  margin: 22px 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 34px rgba(180, 106, 49, 0.24);
}

.secondary {
  border: 2px solid var(--primary);
  color: var(--primary-dark);
  background: transparent;
}

.light {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 16px 34px rgba(50, 28, 16, 0.18);
}

.full {
  width: 100%;
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  list-style: none;
}

.quick-info li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--primary);
  vertical-align: middle;
}

.hero-card,
.photo-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}

.hero-card {
  max-width: 510px;
  justify-self: end;
}

.hero-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}

.hero-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.section {
  padding: 82px 0;
}

.section.soft {
  background: linear-gradient(180deg, #f8f1eb 0%, #efe2d8 100%);
}

.section-label {
  margin-inline: auto;
  text-transform: uppercase;
}

.intro,
.section > .container,
.notice,
.final-cta {
  text-align: center;
}

.intro p,
.notice p,
.final-cta p,
.section-subtitle {
  max-width: 780px;
  margin: 16px auto 0;
}

.cards {
  display: grid;
  gap: 22px;
  margin-top: 42px;
  text-align: left;
}

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

.two {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.card,
.feature-grid article,
details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.card {
  position: relative;
  min-width: 0;
  padding: 30px;
}

.card.highlight {
  border: 2px solid rgba(180, 106, 49, 0.36);
  background: linear-gradient(145deg, #fff 0%, #fff8f2 100%);
}

.card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(180, 106, 49, 0.14);
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  line-height: 1;
}

.card p,
.feature-grid p,
details p {
  margin: 0;
  color: var(--muted);
}

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

.feature-grid article {
  min-width: 0;
  padding: 24px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 58px);
  text-align: left;
}

.split .section-label {
  margin-inline: 0;
}

.split h2 {
  margin-inline: 0;
}

.photo-panel img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  color: var(--muted);
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--primary);
  vertical-align: 0.08em;
}

.notice {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.notice .section-label,
.final-cta .section-label {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.notice h2,
.notice p,
.final-cta h2,
.final-cta p {
  color: #fff;
}

details {
  margin-top: 14px;
  padding: 20px 24px;
  text-align: left;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin-top: 12px;
}

.final-cta {
  background:
    linear-gradient(rgba(72, 42, 25, 0.7), rgba(72, 42, 25, 0.7)),
    url("./julia-laptop-BAMzP54W.jpg") center / cover;
}

.site-footer {
  padding: 40px 0;
  background: #432719;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.footer-grid > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-grid > div:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 900;
}

.footer-grid p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .hero {
    padding: 64px 0 72px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: 34px;
  }

  h1 {
    font-size: clamp(2.35rem, 4.7vw, 3.3rem);
  }

  .hero-card img {
    height: 440px;
  }

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

@media (max-width: 820px) {
  .site-header {
    position: static;
    display: grid;
    justify-items: center;
    gap: 14px;
    min-height: 0;
    padding: 18px 20px;
  }

  .top-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    white-space: normal;
  }

  .hero {
    padding: 48px 0 60px;
  }

  .hero-grid,
  .split,
  .two,
  .three,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .split,
  .footer-grid,
  .footer-grid > div:nth-child(2) {
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy p,
  .hero-card,
  .split h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy h1 {
    max-width: 620px;
  }

  .hero-copy p {
    max-width: 560px;
  }

  .hero-card {
    justify-self: center;
    width: min(100%, 500px);
  }

  .hero-card img {
    height: 460px;
  }

  .split .section-label {
    margin-inline: auto;
  }

  .photo-panel {
    max-width: 560px;
    margin: 0 auto;
  }

  .photo-panel img {
    height: 460px;
  }

  .cta-row,
  .quick-info,
  .footer-grid > div:first-child,
  .footer-grid > div:nth-child(2) {
    justify-content: center;
  }

  .section {
    padding: 68px 0;
  }
}

@media (max-width: 560px) {
  .container {
    max-width: 390px;
    margin-left: 0;
    margin-right: auto;
    padding: 0 18px;
  }

  .site-header {
    align-items: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .top-nav {
    width: 100%;
    font-size: 0.9rem;
  }

  .hero {
    padding: 42px 0 54px;
  }

  .hero-copy,
  .intro,
  .section > .container,
  .notice,
  .final-cta,
  .split,
  .footer-grid,
  .footer-grid > div:nth-child(2) {
    text-align: center;
  }

  .hero-copy,
  .intro,
  .section > .container,
  .notice,
  .final-cta,
  .split {
    text-align: left;
  }

  .eyebrow,
  .section-label {
    margin-inline: 0;
    margin-bottom: 16px;
    padding: 6px 14px;
    font-size: 0.72rem;
  }

  h1 {
    max-width: none;
    font-size: 2.05rem;
    line-height: 1.16;
  }

  h2 {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.85rem;
    line-height: 1.14;
  }

  h3 {
    font-size: 1.35rem;
  }

  .hero-copy p,
  .section-subtitle,
  .intro p,
  .split p,
  .notice p,
  .final-cta p {
    max-width: none;
    font-size: 1rem;
  }

  .cta-row {
    margin-top: 26px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 13px 20px;
    font-size: 0.94rem;
  }

  .quick-info {
    justify-content: flex-start;
    gap: 8px 14px;
    font-size: 0.86rem;
  }

  .hero-card {
    margin-left: 0;
    margin-right: auto;
    border-radius: 24px;
  }

  .hero-card img {
    height: 390px;
  }

  .hero-card figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .section {
    padding: 56px 0;
  }

  .cards,
  .feature-grid {
    gap: 16px;
    margin-top: 30px;
  }

  .card,
  .feature-grid article,
  details {
    padding: 22px;
    border-radius: 18px;
  }

  .card-number {
    top: 18px;
    right: 20px;
    font-size: 2.35rem;
  }

  .photo-panel {
    border-radius: 24px;
  }

  .photo-panel img {
    height: 390px;
  }

  .footer-grid,
  .footer-grid > div:first-child,
  .footer-grid > div:nth-child(2) {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 1.86rem;
  }

  h2 {
    font-size: 1.68rem;
  }

  .top-nav {
    gap: 8px 12px;
    font-size: 0.84rem;
  }
}
