* {
  box-sizing: border-box;
}

:root {
  --navy: #0b1f3a;
  --navy-2: #12325b;
  --orange: #ef6b2d;
  --orange-dark: #d65319;
  --ink: #142033;
  --muted: #667085;
  --soft: #f4f7fb;
  --line: #dfe5ec;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(11, 31, 58, 0.12);
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 920px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 229, 236, 0.9);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
  padding: 7px;
  border: 2px solid var(--orange);
  border-top: 0;
  border-radius: 6px 6px 10px 10px;
  transform: skewY(-2deg);
}

.brand-mark span {
  width: 6px;
  background: var(--orange);
  border-radius: 2px;
}

.brand-mark span:nth-child(1) { height: 17px; }
.brand-mark span:nth-child(2) { height: 24px; }
.brand-mark span:nth-child(3) { height: 19px; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--navy);
  letter-spacing: 0.055em;
  font-size: 0.92rem;
}

.brand-text small {
  color: var(--navy-2);
  font-size: 0.88rem;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 650;
  font-size: 0.94rem;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--orange-dark);
}

.nav-cta {
  padding: 11px 17px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
}


.brand-logo {
  display: block;
  width: min(100%, 430px);
  height: auto;
}

.about-photo-wrap {
  display: flex;
  align-items: stretch;
}

.about-photo {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: cover;
  background: #e9edf2;
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(239, 107, 45, 0.15), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 55%, #f7f9fc 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 58px solid rgba(11, 31, 58, 0.03);
  border-radius: 50%;
  right: -210px;
  bottom: -250px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: 54px;
  align-items: center;
}

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

.eyebrow.light {
  color: #ffd8c6;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.12;
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.22rem;
  margin-bottom: 9px;
}

.hero-lead,
.section-intro {
  max-width: 720px;
  color: #475467;
  font-size: 1.14rem;
}

.hero-lead {
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--orange-dark);
}

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

.button-light {
  background: var(--white);
  color: var(--navy);
  min-width: 190px;
}

.full-width {
  width: 100%;
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-facts span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #475467;
  font-size: 0.88rem;
}

.quick-facts strong {
  color: var(--navy);
}

.appointment-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.appointment-card {
  padding: 30px;
}

.card-kicker {
  margin-top: 0;
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price {
  color: var(--navy);
  font-size: 2rem;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.small-note,
.muted,
.photo-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.appointment-card .small-note {
  margin: 12px 0 0;
  text-align: center;
}

.section {
  padding: 80px 0;
}

.section-soft {
  background: var(--soft);
}

.service-panel {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
}

.service-panel p {
  margin-bottom: 0;
}

.service-meta {
  display: grid;
  gap: 12px;
}

.service-meta div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.service-meta div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-meta span {
  color: var(--muted);
}

.service-meta strong {
  color: var(--navy);
  text-align: right;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.role {
  margin-top: -8px;
  color: var(--orange-dark);
  font-weight: 800;
}

.about-copy {
  font-size: 1.04rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  padding: 28px;
  box-shadow: none;
}

.contact-card h3:not(:first-child) {
  margin-top: 24px;
}

.contact-card address {
  font-style: normal;
}

.contact-card a {
  color: var(--navy-2);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.map-wrap {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.booking-strip {
  padding: 54px 0;
  color: var(--white);
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
}

.booking-strip h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.booking-strip p {
  margin-bottom: 0;
}

.booking-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.site-footer {
  padding: 42px 0 24px;
  color: #d7dfeb;
  background: #071426;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-inner,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #d7dfeb;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom .small-note {
  color: #a9b6c8;
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    display: none;
    top: 70px;
    left: 14px;
    right: 14px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 11px 12px;
    border-radius: 9px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding: 54px 0;
  }

  .hero-grid,
  .service-panel,
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .section {
    padding: 60px 0;
  }

  .service-panel,
  .appointment-card,
  .contact-card {
    padding: 22px;
  }

  .about-grid {
    gap: 10px;
  }

  .booking-strip-inner,
  .footer-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .button-light {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    max-width: 280px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    display: grid;
  }

  .service-meta div {
    flex-direction: column;
    gap: 2px;
  }

  .service-meta strong {
    text-align: left;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 320px;
  }
}
