:root {
  --navy: #123447;
  --navy-dark: #0b2531;
  --navy-mid: #1a4b60;
  --teal: #2a7d78;
  --teal-dark: #1f5f5b;
  --teal-soft: #e7f3f2;
  --cream: #f6f2eb;
  --paper: #fffcf7;
  --sand: #e6dcc8;
  --gold: #b8954f;
  --ink: #243038;
  --muted: #5a6a72;
  --line: #d9d1c4;
  --danger: #b42318;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(18, 52, 71, 0.1);
  --shadow-soft: 0 8px 24px rgba(18, 52, 71, 0.06);
  --radius: 18px;
  --header-h: 0px;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
}

.wrap-narrow {
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
}

.topbar {
  background: var(--navy-dark);
  color: #d7e4ea;
  font-size: 0.92rem;
}

.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
}

.topbar .wrap > * {
  min-width: 0;
}

.topbar a {
  color: #f3f7f8;
  text-decoration: none;
  font-weight: 600;
}

.topbar a:hover {
  color: #fff;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 247, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0 0.9rem;
  min-width: 0;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--navy);
  min-width: 0;
  overflow: visible;
}

.brand img {
  width: auto;
  height: auto;
  max-height: 92px;
  max-width: min(340px, 48vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 1;
  display: block;
}

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

.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.brand-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--teal);
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn-call {
  background: var(--teal);
  color: var(--white);
}

.btn-call:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-gold:hover {
  background: #c9a65a;
  color: var(--navy-dark);
}

.btn-lg {
  padding: 0.9rem 1.4rem;
  font-size: 1.02rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: none;
}

.nav-toggle b {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}

.site-nav {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0.5rem;
}

.site-nav a {
  display: block;
  text-decoration: none;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.hero {
  position: relative;
  min-height: 34rem;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--navy) center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 37, 49, 0.88) 0%, rgba(11, 37, 49, 0.55) 48%, rgba(11, 37, 49, 0.22) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.2rem;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.hero h1,
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.6rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  max-width: 14ch;
}

.lede {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  margin: 0 0 1.1rem;
  max-width: 28ch;
}

.hero-points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.15rem;
  max-width: 38rem;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  color: var(--white);
  padding: 4.6rem 0 3.8rem;
  min-height: 22rem;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 52, 71, 0.78), rgba(18, 52, 71, 0.46));
  z-index: 1;
}

.page-hero .wrap {
  position: relative;
  z-index: 2;
}

.page-hero-tall {
  min-height: 26rem;
}

.page-hero p {
  margin: 0;
  max-width: 46rem;
  color: #e8eef1;
}

.section {
  padding: 3.4rem 0;
}

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

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

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

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

.grid-2 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: start;
}

.grid-2.middle {
  align-items: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

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

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

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.photo-portrait img {
  aspect-ratio: 3 / 4;
}

h2,
h3 {
  font-family: var(--serif);
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-navy h2,
.section-navy h3,
.page-hero h1,
.hero h1 {
  color: var(--white);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.6rem;
}

.kicker {
  color: var(--teal-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.45rem;
}

.prose p {
  margin: 0 0 1rem;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.45rem 1.25rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  height: 100%;
}

.quote-card blockquote {
  margin: 0;
  font-size: 1rem;
}

.quote-card footer {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.quote-mark {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  background: var(--teal-soft);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.service-list,
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.service-list li,
.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.service-list li::before,
.check-list li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  border: 2px solid var(--teal);
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.two-col-list {
  columns: 2;
  gap: 1.5rem;
}

.two-col-list li {
  break-inside: avoid;
  margin-bottom: 0.45rem;
}

.price-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.price-panel h2,
.price-panel p {
  color: var(--white);
}

.price-number {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 0.95;
  margin: 0.2rem 0;
}

.price-number small {
  font-size: 0.32em;
  font-family: var(--font);
  font-weight: 700;
}

.pay-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pay-pills span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.accordion {
  display: grid;
  gap: 0.7rem;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 700;
  color: var(--navy);
  padding: 1rem 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.accordion-trigger::after {
  content: "+";
  color: var(--teal);
  font-size: 1.3rem;
  line-height: 1;
}

.accordion-item.is-open .accordion-trigger::after {
  content: "–";
}

.accordion-panel {
  display: none;
  padding: 0 1.15rem 1.1rem;
  color: var(--ink);
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.room-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.compare-card h3 {
  margin-top: 0;
}

.form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.req {
  color: var(--danger);
}

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

textarea {
  min-height: 8rem;
  resize: vertical;
}

.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 500;
}

.checkbox input {
  width: auto;
  margin-top: 0.3rem;
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 22rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  background: var(--navy-dark);
  color: #d5e1e7;
  padding: 3rem 0 6.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.mission {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: #f3efe6;
  margin: 0.8rem 0 1rem;
}

.footer-meta {
  margin: 0.2rem 0;
}

.footer-meta a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.fineprint {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.sticky-cta {
  display: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.trust-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
}

.trust-item strong {
  display: block;
  color: #fff;
}

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

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.split-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}

@media (max-width: 980px) {
  .grid-2,
  .compare,
  .footer-grid,
  .split-services,
  .cards {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 820px) {
  .header-actions .btn-ghost,
  .header-actions .btn-call {
    display: none;
  }

  .btn-phone {
    display: none;
  }

  .header-main {
    position: relative;
    padding-right: 3.25rem;
  }

  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .topbar,
  .hero,
  .page-hero,
  .section {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav ul {
    display: grid;
    padding: 0.6rem 1rem 1rem;
  }

  .site-nav a {
    padding: 0.7rem 0.8rem;
    font-size: 1rem;
  }

  .site-header {
    position: sticky;
  }

  .two-col-list,
  .form-row {
    columns: 1;
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    padding: 0.55rem 0.6rem calc(0.55rem + env(safe-area-inset-bottom));
    z-index: 60;
  }

  .sticky-cta a {
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 10px;
    padding: 0.75rem 0.25rem;
    background: var(--navy-mid);
  }

  .sticky-cta a.primary {
    background: var(--teal);
  }
}

@media (max-width: 640px) {
  .grid-3,
  .grid-4,
  .trust-strip,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 28rem;
    align-items: center;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(11, 37, 49, 0.55) 0%, rgba(11, 37, 49, 0.88) 100%);
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand img {
    width: auto;
    height: auto;
    max-height: 64px;
    max-width: calc(100vw - 5.75rem);
  }

  .topbar-hours {
    display: none;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-inner {
    padding: 3.2rem 0 2.4rem;
  }

  .page-hero h1,
  .hero h1 {
    font-size: 2rem;
  }
}
