:root {
  --bg: #f6efe5;
  --bg-soft: #fff9f2;
  --ink: #1f2126;
  --muted: #5e626d;
  --line: rgba(33, 31, 43, 0.1);
  --navy: #15253d;
  --navy-deep: #0f1a2d;
  --sand: #e7c79a;
  --sand-strong: #d9a35f;
  --card: rgba(255, 248, 238, 0.76);
  --card-dark: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(19, 28, 44, 0.15);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 221, 176, 0.45), transparent 30%),
    linear-gradient(180deg, #fbf4eb 0%, #f4ecdf 100%);
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  overflow: clip;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: white;
  background: var(--navy-deep);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 26, 0.78) 0%, rgba(8, 14, 26, 0.38) 42%, rgba(8, 14, 26, 0.22) 100%),
    linear-gradient(180deg, rgba(6, 13, 27, 0.18) 0%, rgba(6, 13, 27, 0.74) 100%),
    url("./assets/hero-generated.png") center/cover no-repeat;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.45;
}

.hero__glow--left {
  top: 10%;
  left: -10%;
  width: 22rem;
  height: 22rem;
  background: rgba(231, 199, 154, 0.3);
}

.hero__glow--right {
  right: -6%;
  bottom: 16%;
  width: 20rem;
  height: 20rem;
  background: rgba(120, 194, 244, 0.22);
}

.topbar,
.hero__content {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  width: clamp(74px, 8vw, 110px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(8, 14, 26, 0.22));
}

.topbar__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  font-size: 0.92rem;
}

.pill--warm {
  color: #fff2de;
  background: rgba(217, 163, 95, 0.18);
  border-color: rgba(231, 199, 154, 0.35);
}

.hero__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
  padding: 72px 0 56px;
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: rgba(255, 244, 226, 0.76);
}

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

h1 {
  max-width: 800px;
  font-size: clamp(2.5rem, 4.8vw, 4.9rem);
  line-height: 1;
}

h1 span {
  color: #f4d3a4;
}

.hero__lead {
  max-width: 42rem;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero__actions,
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__actions {
  margin-top: 36px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary {
  color: #fffdf8;
  background: linear-gradient(135deg, #d89446 0%, #f1bc7a 55%, #d38b39 100%);
  box-shadow: 0 16px 40px rgba(216, 148, 70, 0.25);
}

.button--ghost {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.button--cookies {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.button--small {
  min-height: 42px;
  padding: 0 18px;
}

.button--block {
  width: 100%;
}

.hero__stats {
  margin-top: 48px;
}

.stat-card,
.hero-card,
.intro-card,
.feature-card,
.bullet-card,
.form-card {
  box-shadow: var(--shadow);
}

.stat-card {
  width: min(100%, 16.6rem);
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffe7c5;
  font-size: 1.5rem;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  font-size: 0.95rem;
}

.hero__panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: min(100%, 28rem);
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.74), rgba(14, 28, 47, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
}

.hero-card__label {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.hero-card__value {
  margin-top: 10px;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 800;
  color: #ffe1b5;
}

.hero-card__copy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.hero-card__list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card__list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.5;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-heading {
  max-width: 62rem;
  margin-bottom: 34px;
}

.section-heading .eyebrow,
.gallery-copy .eyebrow,
.cta-copy .eyebrow {
  color: #9a7146;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.section h2 + p,
.gallery-copy p,
.intro-card p,
.feature-card p,
.form-card__note {
  line-height: 1.72;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 20px;
}

.intro-card {
  min-height: 220px;
  padding: 30px;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 246, 0.78);
  border: 1px solid rgba(36, 34, 44, 0.08);
}

.intro-card h3,
.feature-card h3,
.form-card h3 {
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  line-height: 1;
}

.intro-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.intro-card--image {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  min-height: 460px;
}

.intro-card--image img,
.gallery-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--dark {
  background:
    radial-gradient(circle at top right, rgba(231, 199, 154, 0.18), transparent 28%),
    linear-gradient(180deg, #15253d 0%, #10192a 100%);
  color: white;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  min-height: 240px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card__index {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 226, 187, 0.1);
  color: #f4d3a4;
  font-size: 0.85rem;
  margin-bottom: 22px;
}

.feature-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.gallery-copy > p:last-of-type {
  margin-top: 24px;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d89446, #f1bc7a);
  box-shadow: 0 0 0 6px rgba(217, 163, 95, 0.14);
}

.gallery-stack {
  display: grid;
  gap: 18px;
}

.gallery-stack figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.gallery-stack__primary {
  height: 420px;
}

.gallery-stack__primary img {
  object-position: left center;
}

.gallery-stack__secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery-stack__secondary figure {
  height: 240px;
}

.section--accent {
  background:
    radial-gradient(circle at 12% 12%, rgba(217, 163, 95, 0.18), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(21, 37, 61, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf5ed 0%, #f2e8da 100%);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 28px;
  align-items: start;
}

.cta-copy h2 {
  max-width: none;
  font-size: clamp(2rem, 2.35vw, 2.9rem);
}

.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.bullet-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 192px;
  padding: 22px 22px 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 242, 232, 0.92) 100%);
  border: 1px solid rgba(21, 37, 61, 0.08);
  box-shadow:
    0 24px 54px rgba(32, 28, 24, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.bullet-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -38% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(228, 169, 90, 0.14) 0%, rgba(228, 169, 90, 0) 70%);
  pointer-events: none;
}

.bullet-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(244, 221, 185, 0.95), rgba(226, 173, 95, 0.85));
  color: #63431c;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 24px rgba(214, 176, 113, 0.18);
}

.bullet-card strong {
  display: block;
  max-width: 14ch;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.02;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.bullet-card p {
  margin: 16px 0 0;
  max-width: 28ch;
  color: #5d616d;
  font-size: 0.98rem;
  line-height: 1.55;
}

.bullet-card--accent {
  background:
    linear-gradient(135deg, rgba(28, 48, 78, 0.96) 0%, rgba(63, 95, 145, 0.9) 100%);
  border-color: rgba(36, 64, 104, 0.18);
  box-shadow:
    0 26px 56px rgba(22, 36, 60, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.bullet-card--accent .bullet-card__index,
.bullet-card--dark .bullet-card__index {
  background: rgba(255, 230, 188, 0.92);
}

.bullet-card--accent strong,
.bullet-card--accent p,
.bullet-card--dark strong,
.bullet-card--dark p {
  color: #f8f5ef;
}

.bullet-card--accent p,
.bullet-card--dark p {
  color: rgba(248, 245, 239, 0.76);
}

.bullet-card--dark {
  background:
    linear-gradient(135deg, rgba(21, 29, 42, 0.98) 0%, rgba(35, 44, 61, 0.94) 100%);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 26px 56px rgba(16, 25, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 37, 61, 0.08);
}

.form-card h3 {
  max-width: 300px;
}

.form-card__tag,
.form-card__size,
.form-card__note,
.lead-form span,
.checkbox,
.cookie p {
  color: var(--muted);
}

.form-card__tag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
}

.form-card__size {
  margin: 10px 0 0;
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form input[type="text"],
.lead-form input[type="tel"] {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(21, 37, 61, 0.12);
  border-radius: 18px;
  background: rgba(248, 246, 242, 0.92);
  outline: none;
}

.lead-form input:focus {
  border-color: rgba(216, 148, 70, 0.72);
  box-shadow: 0 0 0 4px rgba(216, 148, 70, 0.12);
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkbox input {
  margin-top: 4px;
}

.checkbox a {
  color: var(--navy);
  text-decoration: underline;
}

.cookie {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100% - 32px, 560px);
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.88);
  border: 1px solid rgba(21, 37, 61, 0.1);
  box-shadow: 0 16px 50px rgba(16, 25, 42, 0.18);
  backdrop-filter: blur(16px);
}

.cookie.is-hidden {
  display: none;
}

.site-footer {
  padding: 0 0 40px;
}

.site-footer__meta {
  margin: 0 0 10px;
  text-align: center;
  color: #6b6f79;
  font-size: 0.98rem;
  line-height: 1.7;
}

.site-footer__note {
  margin: 0;
  text-align: center;
  color: #6b6f79;
  font-size: 0.98rem;
  line-height: 1.6;
}

.site-footer__note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-body {
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fbf4eb 0%, #f1e7d8 100%);
}

.policy-shell {
  width: min(900px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.policy-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(21, 37, 61, 0.08);
  box-shadow: var(--shadow);
}

.policy-card h1 {
  max-width: none;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 0.95;
  color: var(--ink);
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-card ul {
  padding-left: 18px;
}

@media (max-width: 1100px) {
  .hero__content,
  .gallery-layout,
  .cta-layout,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    justify-content: flex-start;
  }

  .intro-card--image {
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .hero__backdrop {
    background:
      linear-gradient(180deg, rgba(8, 14, 26, 0.62) 0%, rgba(8, 14, 26, 0.82) 100%),
      url("./assets/hero-generated-mobile.png") center top/cover no-repeat;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand__logo {
    width: min(24vw, 92px);
  }

  .topbar__meta {
    justify-content: flex-start;
  }

  .hero__content {
    padding-top: 48px;
  }

  .hero__stats,
  .feature-grid,
  .bullet-grid,
  .gallery-stack__secondary {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    display: grid;
    width: 100%;
  }

  .stat-card {
    width: 100%;
  }

  .feature-grid,
  .bullet-grid {
    display: grid;
  }

  .bullet-card {
    min-height: 176px;
  }

  .bullet-card strong,
  .bullet-card p {
    max-width: none;
  }

  .cta-copy h2 {
    max-width: none;
  }

  .form-card h3 {
    max-width: 9ch;
    font-size: clamp(2.2rem, 9vw, 3rem);
    line-height: 0.98;
  }

  .cookie {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 84px 0;
  }
}
