:root {
  --navy: #071b34;
  --navy-2: #0e2b4f;
  --gold: #c9a45c;
  --gold-2: #e1c47a;
  --white: #ffffff;
  --mist: #f5f7f9;
  --ink: #17202b;
  --muted: #677386;
  --line: #d8dee7;
  --shadow: 0 22px 60px rgba(7, 27, 52, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 165px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 64px) 8px 16px;
  background: rgba(7, 27, 52, 0.96);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(7, 27, 52, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.05;
  letter-spacing: 0;
}

.logo-brand {
  width: 165px;
  height: 165px;
}

.logo-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  padding-top: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  border-color: var(--gold);
}

.nav-toggle,
.nav-button { display: none; }

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 78px));
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--navy);
}

.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(7, 27, 52, 0.86), rgba(7, 27, 52, 0.35) 48%, rgba(7, 27, 52, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(56px, 9vw, 100px) clamp(20px, 6vw, 80px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark { color: var(--gold); }

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 { font-size: clamp(46px, 8vw, 92px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: 25px; }
p { margin: 0; }

.hero-copy {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.1vw, 23px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.button-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.button-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.intro-grid p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  padding-top: 0;
}

.service-strip article {
  background: var(--white);
  padding: 32px 24px;
  min-height: 260px;
}

.service-strip span,
.package {
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

.service-strip h3 { margin: 18px 0 14px; }

.service-strip p,
.service-cards p,
.values-grid p,
.pricing-grid li { color: var(--muted); }

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  background: var(--mist);
}

.feature-band.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.feature-band.reverse .feature-image { order: 2; }
.feature-image { min-height: 560px; }
.feature-copy { padding: clamp(42px, 7vw, 90px); }

.feature-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

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

.image-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

figure {
  margin: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

figure img { aspect-ratio: 4 / 3; }

figcaption {
  padding: 16px 18px;
  color: var(--navy);
  font-weight: 800;
}

.cta-band {
  padding: clamp(64px, 9vw, 110px) 20px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
}

.cta-band h2 {
  max-width: 820px;
  margin: 0 auto 28px;
}

.page-hero {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 0 clamp(44px, 7vw, 80px);
}

.page-hero h1 {
  color: var(--navy);
  font-size: clamp(42px, 6vw, 76px);
}

.page-hero p:last-child {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
}

.service-cards,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-cards article,
.values-grid article,
.pricing-grid article,
.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-cards h2,
.values-grid h2,
.contact-panel h2 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 12px;
}

.portfolio-grid { grid-template-columns: repeat(2, 1fr); }
.portfolio-grid .wide { grid-column: span 2; }
.portfolio-grid .wide img { aspect-ratio: 16 / 7; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pricing-grid article {
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.pricing-grid .featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-12px);
}

.pricing-grid .featured li { color: rgba(255, 255, 255, 0.78); }

.price {
  margin: 18px 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

ul {
  padding-left: 18px;
  margin: 0 0 26px;
}

li + li { margin-top: 10px; }
.pricing-grid .button { margin-top: auto; }

.compare-section {
  padding-top: 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.comparison-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison-card.featured,
.comparison-card.estate-card {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.comparison-card h2 {
  margin: 10px 0 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
}

.comparison-card .package-note {
  min-height: 78px;
  color: var(--muted);
}

.comparison-card.featured .package-note,
.comparison-card.estate-card .package-note,
.comparison-card.featured li,
.comparison-card.estate-card li {
  color: rgba(255, 255, 255, 0.76);
}

.comparison-card ul {
  margin-top: 22px;
}

.comparison-card .button {
  margin-top: auto;
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-groups {
  display: grid;
  gap: 26px;
}

.package-group {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.package-group-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
}

.package-group.dark-panel {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.package-group.dark-panel .package-group-heading p:not(.eyebrow),
.package-group.dark-panel .addon-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.price-table {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.price-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  background: var(--white);
}

.price-table span {
  color: var(--muted);
}

.price-table strong,
.addon-grid strong {
  color: var(--gold);
  white-space: nowrap;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.addon-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.addon-grid h3 {
  font-size: 22px;
}

.addon-grid p {
  margin: 12px 0 18px;
  color: var(--muted);
}

.addon-grid strong {
  margin-top: auto;
  font-size: 22px;
}

.menu-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.monthly-grid article {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--mist);
}

.monthly-grid h3 {
  margin: 10px 0 18px;
  color: var(--navy);
  font-size: 34px;
}

.monthly-grid .button {
  margin-top: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: 26px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea { resize: vertical; }
.contact-panel { background: var(--mist); }

.contact-panel h2 + p {
  color: var(--muted);
  margin-bottom: 24px;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 34px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  background: #051323;
  font-size: 14px;
}

.site-footer p:first-child {
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

@media (max-width: 920px) {
  .nav-button {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
  }

  .nav-button span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: 165px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 22px;
    background: var(--navy);
  }

  .nav-toggle:checked ~ .site-nav { display: flex; }

  .intro-grid,
  .feature-band,
  .feature-band.reverse,
  .contact-layout { grid-template-columns: 1fr; }

  .feature-band.reverse .feature-image { order: 0; }

  .service-strip,
  .service-cards,
  .values-grid,
  .pricing-grid,
  .image-grid,
  .addon-grid,
  .comparison-grid,
  .menu-grid { grid-template-columns: repeat(2, 1fr); }

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

  .pricing-grid .featured { transform: none; }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 122px;
    padding: 8px 16px 6px 10px;
  }

  .brand { font-size: 15px; }

  .logo-brand {
    width: 118px;
    height: 118px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .site-nav { top: 122px; }
  .hero { min-height: 680px; }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(7, 27, 52, 0.92), rgba(7, 27, 52, 0.42));
  }

  .hero-content { margin: 0 auto 42px; }
  .hero-actions,
  .button { width: 100%; }

  .service-strip,
  .service-cards,
  .values-grid,
  .pricing-grid,
  .image-grid,
  .portfolio-grid,
  .addon-grid,
  .comparison-grid,
  .menu-grid,
  .monthly-grid { grid-template-columns: 1fr; }

  .comparison-card,
  .monthly-grid article {
    min-height: auto;
  }

  .price-table div {
    display: grid;
    gap: 4px;
  }

  .portfolio-grid .wide { grid-column: span 1; }

  .portfolio-grid .wide img,
  figure img { aspect-ratio: 4 / 3; }

  .feature-image { min-height: 360px; }
}
