:root {
  --ink-900: #162028;
  --ink-700: #2d4352;
  --ocean-700: #0f5776;
  --ocean-500: #2489b4;
  --sand-100: #f7f2e8;
  --coral-400: #f06f5a;
  --white: #ffffff;
  --card-shadow: 0 16px 32px rgba(18, 50, 68, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(1100px 400px at 10% -5%, #cde8f4 0%, transparent 70%),
    radial-gradient(900px 400px at 95% 0%, #ffe5d8 0%, transparent 68%),
    var(--sand-100);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(247, 242, 232, 0.84);
  border-bottom: 1px solid rgba(22, 32, 40, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: min(290px, 45vw);
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.phone-icon {
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
}

.phone-link,
.about-link {
  text-decoration: none;
  color: var(--ink-900);
  font-weight: 700;
}

.phone-link:hover,
.about-link:hover {
  color: var(--ocean-700);
}

.about-link {
  border: 2px solid var(--ocean-700);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
}

.about-link:hover {
  transform: translateY(-2px);
  background-color: var(--ocean-700);
  color: var(--white);
}

.section-space {
  padding: clamp(2.5rem, 4vw, 5rem) 0;
}

.hero {
  padding-top: clamp(3rem, 6vw, 6rem);
}

.hero-content {
  max-width: 750px;
  animation: rise-in 800ms ease forwards;
}

.hero-kicker {
  color: var(--ocean-700);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  margin-top: 0.65rem;
  line-height: 1.1;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.hero-subtitle {
  margin-top: 1.2rem;
  color: var(--ink-700);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 65ch;
}

.packages h2,
.about h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  margin-bottom: 1.25rem;
}

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

.package-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.3rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(36, 137, 180, 0.12);
  animation: rise-in 850ms ease both;
}

.package-card:nth-child(2) {
  animation-delay: 120ms;
}

.package-card:nth-child(3) {
  animation-delay: 240ms;
}

.package-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.package-card p {
  margin: 0.4rem 0;
  color: var(--ink-700);
}

.package-card ul {
  margin: 0.7rem 0;
  padding-left: 1.15rem;
}

.package-card li {
  margin: 0.35rem 0;
}

.price {
  font-weight: 800;
  color: var(--coral-400);
}

.about-content {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 32, 40, 0.08);
  border-radius: 18px;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.about-content p {
  color: var(--ink-700);
  line-height: 1.7;
  margin: 0.7rem 0;
}

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

.about-grid > div {
  padding: 1.15rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
}

.about-grid h3 {
  color: var(--ocean-700);
  font-size: 1.1rem;
}

.feature-list {
  margin: 0.7rem 0 0;
  padding-left: 1.25rem;
  color: var(--ink-700);
  line-height: 1.6;
}

.about-cta {
  font-weight: 700;
}

.quote-link {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--ocean-700);
  font-weight: 800;
  text-decoration: none;
}

.quote-link:hover {
  background: var(--ocean-500);
}

.site-footer {
  margin-top: 1.25rem;
  background: linear-gradient(135deg, #113a4f, #1f5872);
  color: var(--white);
}

.footer-content {
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-address,
.footer-email {
  margin: 0;
  color: var(--white);
}

.footer-email {
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.75);
}

.footer-email:hover {
  color: #d8f3ff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-social a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.footer-social a:hover {
  color: #ffdfd0;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
}

.shape-left {
  width: 240px;
  height: 240px;
  left: -90px;
  top: 28%;
  background: linear-gradient(145deg, #96d5ee, #e8f6fd);
}

.shape-right {
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: 8%;
  background: linear-gradient(145deg, #ffc8ad, #ffede3);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .package-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-nav {
    width: 100%;
    justify-content: space-between;
  }

  .brand-logo {
    width: min(290px, 72vw);
  }

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

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

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