* {
  box-sizing: border-box;
}

:root {
  --blue: #0544AA;
  --cream: #FFF7EF;
  --white: #FFFFFF;
  --graphite: #232833;
  --amber: #E9B15A;
  --gold: #F4C86A;
  --rose: #D88B97;
  --chocolate: #5B3A29;
  --soft-blue: #E9F2FF;
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --shadow: 0 24px 80px rgba(35, 40, 51, .11);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--graphite);
  background: linear-gradient(180deg, var(--cream), #fff);
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 24px;
  right: 24px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 247, 239, .70);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 50px rgba(35, 40, 51, .08);
}

.logo img {
  width: 154px;
  height: auto;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
}

.nav a:not(.nav-cta) {
  opacity: .86;
}

.nav-cta {
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  color: white;
  background: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .04em;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(5, 68, 170, .25);
  border-radius: var(--radius-pill);
  background: white;
  color: var(--blue);
  padding: 10px 16px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 160px 6vw 90px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 247, 239, .92) 0%, rgba(255, 247, 239, .70) 42%, rgba(255, 247, 239, .08) 100%),
    linear-gradient(180deg, rgba(255, 247, 239, .06), rgba(255, 247, 239, .25));
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ghost-logo {
  position: absolute;
  top: 140px;
  left: 2vw;
  z-index: 1;
  font-family: "DM Serif Display", serif;
  font-size: clamp(110px, 22vw, 360px);
  line-height: .7;
  color: rgba(255, 255, 255, .36);
  -webkit-text-stroke: 1px rgba(255, 255, 255, .55);
  letter-spacing: .02em;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 13px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
}

h1,
h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: .96;
  margin: 0;
}

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

h1 span {
  display: block;
  color: var(--blue);
  font-style: italic;
}

h2 {
  font-size: clamp(38px, 4.4vw, 70px);
}

h3 {
  margin: 0 0 18px;
  font-size: 18px;
}

p {
  line-height: 1.75;
}

.hero-sub {
  margin: 32px 0 34px;
  max-width: 420px;
  font-size: 18px;
}

.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.btn-primary {
  color: white;
  background: var(--blue);
}

.btn-outline {
  color: var(--blue);
  background: rgba(255, 255, 255, .34);
}

.btn.blue {
  border-color: var(--blue);
}

.section {
  padding: 90px 6vw;
}

.intro-grid,
.result,
.anna {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.text-card,
.price-box,
.review-list article {
  padding: clamp(28px, 4vw, 58px);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.text-card p,
.section-head p,
.anna-copy p {
  max-width: 600px;
  margin: 26px 0 0;
}

.image-card img,
.photo-grid img,
.anna-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.image-card {
  min-height: 480px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2 {
  max-width: 560px;
}

.section-head p {
  margin: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.3fr .85fr .85fr;
  gap: 20px;
}

.photo-grid img {
  min-height: 360px;
}

.photo-grid .wide {
  grid-row: span 2;
  min-height: 740px;
}

.anna {
  background: linear-gradient(135deg, var(--soft-blue), #fff 42%, var(--cream));
}

.anna-copy {
  padding-left: 3vw;
}

.anna-copy .btn {
  margin-top: 30px;
}

.anna-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.anna-images img {
  min-height: 520px;
}

.price {
  background: linear-gradient(135deg, #fff, var(--soft-blue));
}

.price-box {
  max-width: 1120px;
  margin: 0 auto;
}

.price-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 34px 0 22px;
}

.price ul {
  margin: 0;
  padding-left: 20px;
}

.price li {
  margin-bottom: 12px;
}

.duration {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(5, 68, 170, .14);
}

.duration p {
  margin: 0;
  font-weight: 600;
}

.center {
  text-align: center;
  display: block;
}

.center p {
  margin: 18px auto 0;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.review-list article {
  padding: 28px;
}

.review-list p {
  margin-top: 0;
  font-size: 15px;
}

.review-list strong {
  color: var(--blue);
}

.final-cta {
  min-height: 520px;
  padding: 100px 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .30), rgba(255, 247, 239, .94)),
    url("img/anna-freedom.jpg") center / cover;
}

.final-cta h2 {
  max-width: 790px;
}

.final-cta p {
  margin: 26px auto 30px;
  max-width: 520px;
}

.center-actions {
  justify-content: center;
}

.footer {
  display: grid;
  grid-template-columns: 1.25fr repeat(5, 1fr);
  gap: 24px;
  padding: 50px 6vw;
  background: white;
  border-top: 1px solid rgba(5, 68, 170, .12);
}

.footer img {
  width: 160px;
  mix-blend-mode: multiply;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
}

.footer span,
.footer a {
  display: block;
  line-height: 1.55;
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  color: white;
  background: var(--blue);
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 10px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 10px;
  }

  .logo img {
    width: 126px;
  }

  .hero {
    min-height: 760px;
    padding: 130px 22px 56px;
    align-items: end;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(255, 247, 239, .08) 0%, rgba(255, 247, 239, .30) 46%, rgba(255, 247, 239, .96) 78%),
      linear-gradient(90deg, rgba(255, 247, 239, .75), rgba(255, 247, 239, .16));
  }

  .hero-bg img {
    object-position: 62% center;
  }

  .ghost-logo {
    top: 120px;
    left: -16px;
    font-size: 118px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 58px 20px;
  }

  .intro-grid,
  .result,
  .anna,
  .price-columns,
  .duration,
  .footer {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 18px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid .wide,
  .photo-grid img,
  .anna-images img,
  .image-card {
    min-height: auto;
  }

  .anna-copy {
    padding-left: 0;
  }

  .anna-images {
    grid-template-columns: 1fr;
  }

  .review-list {
    grid-template-columns: 1fr;
  }

  .footer {
    gap: 30px;
  }
}

/* --- ITERATION 2: compact header, transparent logo, aligned grids --- */

.site-header {
  top: 16px;
  left: 28px;
  right: 28px;
  padding: 10px 12px 10px 20px;
  gap: 18px;
  max-width: 1520px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 132px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
}

.nav {
  gap: clamp(14px, 1.5vw, 24px);
  font-size: 13px;
  white-space: nowrap;
}

.nav-cta {
  padding: 14px 22px;
  min-width: 176px;
  text-align: center;
  font-size: 12px;
}

.section {
  padding: 82px clamp(28px, 5vw, 86px);
}

.intro-grid,
.result {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: stretch;
}

.intro-grid .text-card,
.result .text-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.intro-grid .image-card img,
.result .image-card img {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
}

.text-card {
  border-radius: 36px;
}

.image-card img,
.photo-grid img,
.anna-images img {
  border-radius: 30px;
}

.section-head {
  align-items: center;
  margin-bottom: 40px;
}

.section-head h2 {
  max-width: 620px;
}

.photo-grid {
  grid-template-columns: 1.18fr .91fr .91fr;
  gap: 22px;
  align-items: stretch;
}

.photo-grid img {
  height: 360px;
  min-height: 360px;
  object-fit: cover;
}

.photo-grid .wide {
  grid-row: auto;
  height: 360px;
  min-height: 360px;
}

.anna {
  grid-template-columns: .9fr 1.1fr;
  align-items: stretch;
}

.anna-images img {
  height: 520px;
  min-height: 520px;
  object-fit: cover;
}

.price-box {
  border-radius: 36px;
}

.review-list article {
  min-height: 180px;
}

.footer img {
  width: 134px;
  mix-blend-mode: normal;
}

@media (max-width: 1180px) {
  .nav {
    gap: 12px;
    font-size: 12px;
  }

  .nav-cta {
    min-width: 158px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .logo img {
    width: 118px;
  }
}

@media (max-width: 980px) {
  .site-header {
    left: 12px;
    right: 12px;
    top: 10px;
    padding: 10px 12px;
  }

  .logo img {
    width: 112px;
  }

  .nav {
    white-space: normal;
  }

  .nav-cta {
    min-width: 0;
  }

  .hero {
    min-height: 760px;
    padding: 118px 20px 46px;
  }

  .hero-content {
    max-width: 100%;
  }

  .intro-grid,
  .result,
  .anna {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .intro-grid .text-card,
  .result .text-card,
  .intro-grid .image-card,
  .result .image-card {
    min-height: auto;
  }

  .intro-grid .image-card img,
  .result .image-card img {
    aspect-ratio: 4 / 3;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .photo-grid img,
  .photo-grid .wide,
  .anna-images img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .anna-images {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .text-card,
  .price-box,
  .review-list article {
    padding: 28px 24px;
    border-radius: 28px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-bg img {
    object-position: 68% center;
  }

  .ghost-logo {
    top: 116px;
    font-size: 84px;
  }

  .actions {
    gap: 12px;
  }

  .btn {
    min-height: 52px;
    padding: 0 22px;
    font-size: 12px;
  }

  .footer {
    padding: 38px 22px;
  }
}

.price-grid-new{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:28px;margin-top:40px}
.card-price{background:#fffdfa;border:1px solid rgba(233,177,90,.35);border-radius:34px;padding:34px;box-shadow:0 18px 45px rgba(0,0,0,.08)}
.card-price .min{color:#0544AA;font-weight:700;font-size:15px;text-transform:uppercase;letter-spacing:.12em}
.card-price .plan{font-family:"DM Serif Display",serif;font-size:64px;line-height:1;color:#0544AA;margin-top:8px}
.card-price .sub{color:#b88635;font-style:italic;margin:6px 0 22px}
.card-price .row{display:flex;justify-content:space-between;padding:14px 0;border-top:1px solid rgba(5,68,170,.1)}
.card-price b{font-size:24px;color:#0544AA}
@media(max-width:768px){.card-price .plan{font-size:52px}}

[hidden]{display:none !important;}
