:root {
  --midnight: #08153d;
  --midnight-soft: #13245b;
  --ink: #111111;
  --ivory: #f8f3ef;
  --white: #ffffff;
  --mist: rgba(255, 255, 255, 0.72);
  --warm-brown: #835243;
  --sand: #d9b8a5;
  --card: rgba(8, 21, 61, 0.92);
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 80px rgba(3, 6, 18, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(217, 184, 165, 0.18), transparent 26%),
    linear-gradient(180deg, #050d28 0%, #0b1536 45%, #f7f0e9 45%, #f7f0e9 100%);
  color: var(--ivory);
}

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

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

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 1.5rem 0 4rem;
  background:
    linear-gradient(90deg, rgba(5, 13, 40, 0.82) 0%, rgba(5, 13, 40, 0.62) 38%, rgba(5, 13, 40, 0.26) 58%, rgba(5, 13, 40, 0.52) 100%),
    linear-gradient(180deg, rgba(5, 13, 40, 0.2), rgba(5, 13, 40, 0.72)),
    url("hero-art.png") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  background: linear-gradient(180deg, transparent, #f7f0e9);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 44%, rgba(8, 21, 61, 0.12), transparent 24%),
    radial-gradient(circle at 72% 76%, rgba(217, 184, 165, 0.14), transparent 18%);
}

.hero-shell,
.topbar,
.hero-content,
main {
  position: relative;
  z-index: 1;
}

.hero-shell {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
  line-height: 0.9;
  text-transform: none;
}

.brand-script,
.brand-serif {
  display: block;
}

.brand-script {
  margin-left: 2.8rem;
  font-family: "Sacramento", cursive;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  line-height: 0.8;
}

.brand-serif {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  min-height: calc(90vh - 8rem);
  /* padding: clamp(3rem, 8vw, 1rem) 0 5rem; */
}

.hero-content {
  max-width: 50rem;
  padding: clamp(1.5rem, 2vw, 2rem) 0;
}

.eyebrow,
.section-tag {
  margin: 0 0 1rem;
  color: var(--sand);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro-card h2,
.experience h2,
.contact h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero h1 {
  /* font-size: clamp(3.4rem, 5.4vw, 5.6rem); */
  line-height: 0.95;
  /* max-width: 12ch; */
}

.hero-copy {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--mist);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-note {
  align-self: center;
  justify-self: end;
  width: min(100%, 22rem);
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgba(8, 21, 61, 0.5), rgba(8, 21, 61, 0.24));
  box-shadow: 0 30px 70px rgba(3, 6, 18, 0.28);
  backdrop-filter: blur(12px);
}

.hero-note-tag {
  margin: 0 0 1rem;
  color: var(--sand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-note-item {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-note-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.hero-note-item span,
.hero-note-item strong {
  display: block;
}

.hero-note-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-note-item strong {
  margin-top: 0.3rem;
  color: var(--white);
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

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

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  backdrop-filter: blur(10px);
}

main {
  color: var(--ink);
}

.intro,
.services,
.experience,
.contact {
  width: min(72rem, calc(100% - 2.5rem));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 1.5rem;
  margin-top: -3.5rem;
}

.intro-card,
.benefit-card,
.contact-card,
.contact-panel,
.price-card {
  border-radius: 1.75rem;
  box-shadow: var(--shadow);
}

.intro-card {
  padding: 2rem;
  background: var(--card);
  color: var(--ivory);
}

.intro-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.benefit-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.benefit-card h3,
.price-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
}

.benefit-card p,
.price-card p,
.section-heading p,
.experience p,
.contact p {
  margin: 0;
  line-height: 1.75;
}

.services {
  padding: 6rem 0 2rem;
}

.section-heading {
  max-width: 40rem;
}

.section-heading h2,
.experience h2,
.contact h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.95;
}

.section-heading p {
  margin-top: 1rem;
  color: rgba(17, 17, 17, 0.78);
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.price-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(8, 21, 61, 0.08);
}

.price-card strong {
  font-size: 2rem;
  line-height: 1;
  color: var(--midnight);
  white-space: nowrap;
}

.featured {
  background: linear-gradient(135deg, rgba(8, 21, 61, 0.98), rgba(19, 36, 91, 0.9));
  color: var(--white);
}

.featured strong,
.featured .service-type {
  color: var(--sand);
}

.accent {
  background: linear-gradient(135deg, rgba(131, 82, 67, 0.12), rgba(217, 184, 165, 0.34));
}

.service-type {
  margin-bottom: 0.35rem;
  color: var(--warm-brown);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: 3rem 0 2rem;
}

.experience-copy {
  padding: 2rem 0;
}

.experience-copy p + p {
  margin-top: 1rem;
  color: rgba(17, 17, 17, 0.78);
}

.experience-photo {
  position: relative;
  min-height: 28rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 78% 26%, rgba(217, 184, 165, 0.28), transparent 16%),
    linear-gradient(145deg, rgba(8, 21, 61, 0.98), rgba(19, 36, 91, 0.88) 58%, rgba(82, 55, 49, 0.84));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.experience-wave,
.experience-vase {
  position: absolute;
}

.experience-wave {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.experience-wave-one {
  inset: 12% -8% auto auto;
  width: 68%;
  height: 44%;
  transform: rotate(-12deg);
}

.experience-wave-two {
  inset: auto auto 8% -16%;
  width: 82%;
  height: 46%;
  transform: rotate(10deg);
}

.experience-vase {
  right: 12%;
  bottom: 10%;
  width: 26%;
  height: 46%;
  border-radius: 38% 38% 22% 22% / 28% 28% 18% 18%;
  background:
    linear-gradient(180deg, rgba(232, 219, 206, 0.94), rgba(180, 153, 138, 0.92));
  box-shadow:
    0 18px 44px rgba(3, 6, 18, 0.28),
    inset -12px 0 20px rgba(255, 255, 255, 0.15);
}

.experience-vase::before {
  content: "";
  position: absolute;
  left: 34%;
  top: -10%;
  width: 32%;
  height: 16%;
  border-radius: 30% 30% 16% 16%;
  background: linear-gradient(180deg, rgba(214, 197, 183, 0.98), rgba(174, 149, 137, 0.98));
}

.contact {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1rem;
  padding: 2rem 0 5rem;
}

.contact-panel {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(8, 21, 61, 0.98), rgba(19, 36, 91, 0.92));
  color: var(--ivory);
}

.contact-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(8, 21, 61, 0.08);
}

.contact-card p + p {
  margin-top: 1rem;
}

.contact-card span {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--warm-brown);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--midnight);
  font-weight: 700;
}

@media (max-width: 980px) {
  .intro,
  .experience,
  .contact,
  .price-list {
    grid-template-columns: 1fr;
  }

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

  .experience-photo {
    min-height: 22rem;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-bottom: 4rem;
    background-position: 72% center;
  }

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

  .nav-links {
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
  }

  .brand-script {
    margin-left: 2rem;
    font-size: 1.8rem;
  }

  .brand-serif {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 13vw, 4.3rem);
    max-width: 10ch;
  }

  .price-card {
    flex-direction: column;
  }

  .price-card strong {
    font-size: 1.75rem;
  }

  .intro,
  .services,
  .experience,
  .contact {
    width: min(100% - 1.5rem, 72rem);
  }

  .hero-shell {
    width: min(100% - 1.5rem, 72rem);
  }

  .hero-body {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2.5rem 0 4rem;
  }

  .hero-content {
    max-width: 30rem;
  }

  .hero-note {
    justify-self: start;
    width: 100%;
    max-width: 25rem;
  }
}
