:root {
  --cream: #fff8f2;
  --soft: #f7ebe3;
  --rose: #c98679;
  --rose-dark: #9b5a50;
  --brown: #2e1b16;
  --muted: #725f59;
  --gold: #c99a4b;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(46, 27, 22, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--brown);
  background: linear-gradient(135deg, var(--cream), #ffffff 45%, var(--soft));
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 242, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(46, 27, 22, 0.08);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brown);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--brown);
}

.nav-cta {
  background: var(--brown);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 999px;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  color: var(--brown);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 70px auto 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.eyebrow,
.section-label {
  color: var(--rose-dark);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin-bottom: 16px;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(52px, 7vw, 92px);
  max-width: 760px;
}

h2 {
  font-size: clamp(38px, 5vw, 62px);
  margin-bottom: 18px;
}

.hero-text {
  font-size: 19px;
  color: var(--muted);
  max-width: 650px;
  margin: 26px 0 34px;
}

.hero-actions,
.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brown), var(--rose-dark));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(155, 90, 80, 0.25);
}

.btn-secondary {
  background: var(--white);
  color: var(--brown);
  border: 1px solid rgba(46, 27, 22, 0.12);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
  max-width: 650px;
}

.hero-stats div,
.card,
.details-box,
.form,
.split-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(46, 27, 22, 0.08);
  box-shadow: 0 18px 50px rgba(46, 27, 22, 0.07);
}

.hero-stats div {
  border-radius: 22px;
  padding: 18px;
}

.hero-stats strong,
.detail strong {
  display: block;
  font-size: 20px;
  color: var(--brown);
}

.hero-stats span,
.detail span {
  color: var(--muted);
  font-size: 14px;
}

.hero-image-card {
  position: relative;
  border-radius: 42px;
  padding: 14px;
  background: linear-gradient(145deg, #ffffff, var(--soft));
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  height: min(670px, 72vh);
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 34px;
}

.image-glow {
  position: absolute;
  inset: -34px;
  background: radial-gradient(circle at 40% 30%, rgba(201, 154, 75, 0.35), transparent 62%);
  z-index: -1;
}

.floating-card {
  position: absolute;
  left: -18px;
  bottom: 38px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 90px auto;
}

.intro {
  text-align: center;
  max-width: 900px;
}

.intro p,
.section-heading p,
.split-card p,
.register-content p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 430px;
}

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

.card {
  border-radius: var(--radius);
  padding: 30px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--soft);
  color: var(--rose-dark);
  font-weight: 900;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.split-card,
.details-box,
.form {
  border-radius: var(--radius);
  padding: 36px;
}

.details-box {
  display: grid;
  gap: 16px;
}

.detail {
  padding: 18px 0;
  border-bottom: 1px solid rgba(46, 27, 22, 0.09);
}

.detail:last-child {
  border-bottom: 0;
}

.register {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--brown);
  flex: 1 1 220px;
  margin-bottom: 18px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(46, 27, 22, 0.12);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  background: rgba(255, 248, 242, 0.7);
  color: var(--brown);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(201, 134, 121, 0.14);
}

.form-btn {
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 40px auto;
  padding-top: 24px;
  border-top: 1px solid rgba(46, 27, 22, 0.1);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero,
  .split,
  .register {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 40px;
  }

  .cards,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .hero-image-card img {
    height: 560px;
  }

  .floating-card {
    left: 20px;
  }

  .footer {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .nav,
  .hero,
  .section,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 46px;
  }

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

  .split-card,
  .details-box,
  .form,
  .card {
    padding: 24px;
  }
}
