:root {
  --ink: #10211f;
  --muted: #5f6f6b;
  --teal: #007f6d;
  --teal-dark: #005b51;
  --mint: #d9f5ed;
  --cream: #fff8ed;
  --coral: #f47d62;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 33, 31, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(244, 125, 98, 0.18), transparent 30rem),
    linear-gradient(180deg, var(--cream) 0%, #ffffff 44%, #f7fbf8 100%);
}

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

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

.site-header {
  min-height: 92vh;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(0, 91, 81, 0.94) 0%, rgba(0, 127, 109, 0.8) 52%, rgba(16, 33, 31, 0.58) 100%),
    url("images/kate3.jpeg") center/cover;
  overflow: hidden;
  position: relative;
}

.site-header::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  min-height: 54px;
  padding: 7px 16px 7px 8px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.brand-logo {
  width: min(240px, 58vw);
  height: auto;
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal-dark);
  background: var(--white);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 40px;
  max-width: 1180px;
  min-height: calc(92vh - 120px);
  margin: 0 auto;
  padding: 96px 0 52px;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  color: var(--teal-dark);
  background: var(--white);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(16, 33, 31, 0.28);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card span {
  color: var(--mint);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 18px;
  font-size: 1.45rem;
  line-height: 1.22;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 112px 24px;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.portrait-card {
  padding: 18px;
  border-radius: calc(var(--radius) + 10px);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--mint);
  object-fit: cover;
  object-position: 50% 24%;
}

.section-copy {
  max-width: 620px;
}

.section h2 {
  color: var(--teal-dark);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.section-copy p,
.section-heading p,
.note,
.contact-card p {
  color: var(--muted);
}

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

.feature-list li {
  padding: 16px 18px;
  border-left: 5px solid var(--coral);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 33, 31, 0.08);
  font-weight: 700;
}


.visual-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
  padding-top: 26px;
}

.visual-copy {
  max-width: 520px;
}

.visual-copy p:not(.eyebrow) {
  color: var(--muted);
}

.visual-collage {
  position: relative;
  min-height: clamp(380px, 48vw, 560px);
}

.visual-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 14px solid var(--white);
  border-radius: calc(var(--radius) + 12px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-photo-large {
  inset: 0 10% 14% 0;
}

.visual-photo-large img {
  object-position: 50% 48%;
}

.visual-photo-small {
  right: 0;
  bottom: 0;
  width: 45%;
  height: 48%;
  transform: rotate(3deg);
}

.visual-photo-small img {
  object-position: 42% 50%;
}

.prices {
  max-width: 980px;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.price-card {
  overflow: hidden;
  border: 1px solid rgba(0, 127, 109, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  border-bottom: 1px solid #e7efec;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row.highlighted {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  font-size: 1.1rem;
}

.price-row strong {
  white-space: nowrap;
}

.note {
  margin: 20px 0 0;
  text-align: center;
}

.contact {
  padding-top: 48px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 6vw, 64px);
  border-radius: calc(var(--radius) + 14px);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(244, 125, 98, 0.46), transparent 18rem),
    linear-gradient(135deg, var(--teal-dark), var(--teal));
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-card p,
.contact-card .eyebrow {
  color: var(--white);
}

.contact-details {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.contact-details a,
.contact-details span {
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.13);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px 46px;
  color: var(--muted);
}

.footer a {
  color: var(--teal-dark);
  font-weight: 800;
}

@media (max-width: 820px) {
  .site-header {
    min-height: auto;
  }

  .nav,
  .nav-links,
  .hero-actions,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .nav {
    border-radius: 28px;
  }

  .nav-links a {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
  }

  .hero,
  .section-grid,
  .visual-story,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 72px 0 28px;
  }

  .section {
    padding: 72px 20px;
  }

  .portrait-card {
    transform: none;
  }

  .visual-story {
    padding-top: 0;
  }

  .visual-collage {
    min-height: 520px;
  }

  .visual-photo-large {
    inset: 0 0 26%;
  }

  .visual-photo-small {
    width: 62%;
    height: 40%;
  }

  .price-row {
    padding: 18px 20px;
  }
}
