@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Cormorant+Garamond:wght@600;700&display=swap");

:root {
  --navy: #061f3f;
  --navy-2: #0b2d55;
  --gold: #b98d3b;
  --gold-2: #d7b56b;
  --ink: #151a22;
  --muted: #606977;
  --line: #e5dfd3;
  --paper: #f8f6f1;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 31, 63, 0.12);
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --page-x: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  --header-x: clamp(28px, 5vw, 72px);
  --section-y: clamp(56px, 7vw, 86px);
  --section-y-tight: clamp(42px, 6vw, 64px);
  --card-pad: clamp(22px, 3vw, 32px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.55;
}

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

p,
h1,
h2,
h3,
dl,
dd {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px var(--header-x);
  background: rgba(248, 246, 241, 0.96);
  border-bottom: 1px solid rgba(185, 141, 59, 0.28);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: "Great Vibes", "Brush Script MT", "Segoe Script", cursive;
  font-size: 28px;
  font-weight: 400;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.1;
}

.script-name {
  color: var(--navy);
  font-family: "Great Vibes", "Brush Script MT", "Segoe Script", cursive;
  font-size: 34px;
  font-weight: 400;
  line-height: 0.86;
}

.brand-legal {
  font-family: "Great Vibes", "Brush Script MT", "Segoe Script", cursive;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0;
}

.brand small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 11px 16px;
  color: var(--navy);
  border-radius: 6px;
  font-size: 18px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: var(--navy);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) var(--page-x);
  background:
    linear-gradient(115deg, rgba(248, 246, 241, 0.98) 0%, rgba(248, 246, 241, 0.96) 57%, rgba(6, 31, 63, 0.08) 57.1%, rgba(6, 31, 63, 0.16) 100%),
    radial-gradient(circle at 86% 18%, rgba(185, 141, 59, 0.28), transparent 28%);
}

.hero-copy-block {
  max-width: 720px;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--navy);
  font-family: "Great Vibes", "Brush Script MT", "Segoe Script", cursive;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  margin-bottom: clamp(14px, 2vw, 20px);
  font-size: clamp(54px, 7vw, 92px);
}

h2 {
  margin-bottom: clamp(12px, 1.8vw, 16px);
  font-size: clamp(42px, 5vw, 68px);
}

.hero-brand {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  margin-bottom: clamp(18px, 2.5vw, 24px);
}

.hero-brand span {
  color: var(--navy);
  font-family: "Great Vibes", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(88px, 11vw, 138px);
  font-weight: 400;
  line-height: 0.78;
}

.hero-brand small {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-transform: uppercase;
}

.lead {
  max-width: 680px;
  margin-bottom: clamp(22px, 3vw, 30px);
  color: var(--muted);
  font-size: clamp(22px, 2.5vw, 29px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 900;
}

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

.phone-display {
  cursor: default;
}

.btn.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--gold);
}

.appointment-panel,
.quick-links a,
.service-list article,
.pricing-table,
.contact-methods article,
.appointment-checklist,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.appointment-panel {
  padding: var(--card-pad);
}

.appointment-panel h2 {
  font-size: clamp(42px, 4vw, 58px);
}

.appointment-panel p {
  margin-bottom: 22px;
  color: var(--muted);
}

.appointment-panel dl {
  display: grid;
  gap: 0;
  margin-bottom: 0;
}

.appointment-panel div {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.appointment-panel dt,
.contact-methods span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.appointment-panel dd {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 var(--page-x);
  background: var(--navy);
  color: var(--white);
}

.feature-band div {
  padding: 26px clamp(18px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-band div:first-child {
  padding-left: 0;
}

.feature-band div:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature-band strong,
.feature-band span {
  display: block;
}

.feature-band strong {
  color: var(--gold-2);
  font-size: 20px;
  text-transform: uppercase;
}

.feature-band span {
  color: rgba(255, 255, 255, 0.78);
}

.section,
.page-hero {
  padding-right: var(--page-x);
  padding-left: var(--page-x);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.page-hero {
  padding-top: var(--section-y-tight);
  padding-bottom: var(--section-y-tight);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--paper), #efe6d6);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 720px;
}

.page-hero .lead {
  margin-bottom: 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  background: var(--white);
}

.visual-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--white);
}

.feature-photo,
.image-band img,
.contact-visual img {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-photo img,
.image-band img,
.contact-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-photo {
  aspect-ratio: 16 / 10;
}

.visual-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 22px;
}

.image-band,
.contact-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.image-band {
  padding-bottom: 0;
}

.image-band img,
.contact-visual img {
  aspect-ratio: 16 / 8;
}

.image-band h2,
.contact-visual h2 {
  margin-bottom: 0;
}

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

.two-column h2 {
  max-width: 560px;
}

.plain-copy {
  color: var(--muted);
  font-size: 22px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quick-links a {
  display: grid;
  gap: 10px;
  padding: var(--card-pad);
}

.quick-links span {
  color: var(--muted);
  font-weight: 700;
}

.quick-links strong {
  color: var(--navy);
  font-family: "Great Vibes", "Brush Script MT", "Segoe Script", cursive;
  font-size: 42px;
  font-weight: 400;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-list article {
  position: relative;
  min-height: 188px;
  padding: var(--card-pad);
  border-top: 4px solid var(--gold);
}

.service-list h2 {
  margin-bottom: 8px;
  font-size: clamp(42px, 4vw, 58px);
}

.service-list p,
.faq-list p,
.notice p,
.appointment-checklist li,
.contact-methods p {
  color: var(--muted);
}

.compact-section {
  padding-top: var(--section-y-tight);
}

.pricing-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.pricing-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pricing-card h2 {
  margin: 0;
  padding: 22px var(--card-pad);
  color: var(--white);
  background: var(--navy);
  font-size: 42px;
}

.fee-schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.schedule-section,
.policy-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.schedule-heading {
  padding: 24px var(--card-pad);
  color: var(--white);
  background: var(--navy);
}

.schedule-heading h2 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(40px, 4vw, 58px);
}

.schedule-heading p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.schedule-table {
  display: grid;
}

.schedule-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
  gap: 18px;
  align-items: start;
  padding: 18px var(--card-pad);
  border-bottom: 1px solid var(--line);
}

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

.schedule-row span {
  color: var(--muted);
}

.schedule-row strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
  text-align: right;
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 24px;
  padding-top: 0;
}

.policy-card {
  padding: var(--card-pad);
}

.policy-card h2 {
  margin-bottom: 14px;
  font-size: clamp(40px, 4vw, 58px);
}

.policy-card p {
  color: var(--muted);
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.payment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.contact-policy a {
  color: var(--navy);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.fee-line {
  display: grid;
  gap: 14px;
  padding: 22px var(--card-pad);
  border-bottom: 1px solid var(--line);
}

.fee-line:last-child {
  border-bottom: 0;
}

.fee-line strong,
.fee-line span,
.fee-line b,
.fee-line small {
  display: block;
}

.fee-line strong {
  color: var(--navy);
  font-size: 18px;
  text-transform: uppercase;
}

.fee-line span {
  margin-top: 4px;
  color: var(--muted);
}

.fee-line b {
  color: var(--navy);
  font-size: 34px;
  line-height: 1.05;
}

.fee-line small {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-table {
  overflow: hidden;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, auto);
  gap: 22px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

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

.price-row strong,
.price-row span,
.price-row b,
.price-row small {
  display: block;
}

.price-row strong {
  color: var(--navy);
  font-size: 17px;
  text-transform: uppercase;
}

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

.price-row b {
  color: var(--navy);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.05;
  text-align: right;
}

.price-row small {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.notice {
  margin: 0 var(--page-x) var(--section-y);
  padding-right: var(--card-pad);
  padding-left: var(--card-pad);
  padding-top: 24px;
  padding-bottom: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
}

.notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-2);
  text-transform: uppercase;
}

.notice p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  box-shadow: none;
}

summary {
  cursor: pointer;
  padding: 20px var(--card-pad);
  color: var(--navy);
  font-size: 23px;
  font-weight: 900;
}

details p {
  max-width: 820px;
  padding: 0 var(--card-pad) 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(410px, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(26px, 4vw, 44px);
  align-items: start;
}

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

.contact-methods article {
  padding: var(--card-pad);
}

.contact-methods a,
.contact-value {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(24px, 1.9vw, 31px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-methods article:nth-child(2) a {
  font-size: clamp(21px, 1.45vw, 25px);
  line-height: 1.35;
}

.contact-methods p {
  margin: 6px 0 0;
  font-size: 22px;
}

.appointment-checklist {
  padding: var(--card-pad);
}

.appointment-checklist h2 {
  font-size: clamp(48px, 5vw, 70px);
}

.appointment-checklist ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 var(--page-x) var(--section-y);
  padding-right: var(--card-pad);
  padding-left: var(--card-pad);
  padding-top: 28px;
  padding-bottom: 28px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.cta-strip strong {
  color: var(--gold-2);
  font-family: "Great Vibes", "Brush Script MT", "Segoe Script", cursive;
  font-size: 42px;
  font-weight: 400;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 22px var(--page-x);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: var(--gutter);
    left: var(--gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .home-hero,
  .two-column,
  .visual-feature,
  .image-band,
  .contact-visual,
  .contact-layout,
  .pricing-groups,
  .fee-schedule,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    align-items: start;
  }

  .feature-band,
  .quick-links,
  .service-list {
    grid-template-columns: 1fr;
  }

  .feature-band div {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .feature-band div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 16px;
    --section-y: 46px;
    --section-y-tight: 38px;
    --card-pad: 20px;
  }

  .site-header {
    min-height: 70px;
    padding: 12px var(--gutter);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    font-size: 11px;
  }

  .brand strong {
    gap: 6px;
  }

  .script-name {
    font-size: 30px;
  }

  .brand-legal {
    font-size: 21px;
  }

  .site-nav {
    top: 70px;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  h1 {
    font-size: 54px;
    line-height: 1.08;
  }

  .hero-brand span {
    font-size: 82px;
  }

  .hero-brand small {
    font-size: 29px;
    letter-spacing: 0.06em;
  }

  h2 {
    font-size: 44px;
    line-height: 1.1;
  }

  .home-hero {
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 44px;
    background:
      linear-gradient(180deg, rgba(248, 246, 241, 0.98), rgba(248, 246, 241, 0.96)),
      radial-gradient(circle at 90% 20%, rgba(185, 141, 59, 0.22), transparent 34%);
  }

  .lead {
    font-size: 22px;
  }

  .feature-band div {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .appointment-panel {
    padding: var(--card-pad);
  }

  .appointment-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
  }

  .appointment-panel dd {
    font-size: 17px;
  }

  .contact-layout {
    gap: 18px;
  }

  .contact-methods {
    gap: 12px;
  }

  .contact-methods a {
    font-size: 24px;
    line-height: 1.28;
  }

  .service-list article,
  .pricing-card,
  .schedule-section,
  .policy-card,
  .feature-photo,
  .image-band img,
  .contact-visual img,
  .contact-methods article,
  .appointment-checklist,
  details {
    border-radius: 6px;
  }

  .service-list article {
    min-height: 0;
    padding: var(--card-pad);
  }

  .feature-photo,
  .image-band img,
  .contact-visual img {
    aspect-ratio: 4 / 3;
  }

  .pricing-card h2 {
    font-size: 38px;
  }

  .schedule-heading {
    padding: 22px var(--card-pad);
  }

  .schedule-heading h2,
  .policy-card h2 {
    font-size: 40px;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px var(--card-pad);
  }

  .schedule-row strong {
    font-size: 23px;
    text-align: left;
  }

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

  .price-row {
    grid-template-columns: 1fr;
  }

  .price-row b {
    text-align: left;
  }

  .cta-strip {
    align-items: stretch;
    flex-direction: column;
  }
}
