:root {
  --cream: #faf7f2;
  --cream-deep: #f0ebe3;
  --burgundy: #6e3b45;
  --burgundy-soft: #8a5560;
  --arch-blue: #c5d4e0;
  --ink: #1c1816;
  --muted: #5f5652;
  --white: #fff;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --max: 72rem;
  --header-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
  background: var(--cream);
  overflow-x: clip;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
  overscroll-behavior-y: none;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--burgundy);
  color: var(--white);
}

.skip-link:focus {
  left: 0;
}

/* Hours strip */
.hours-strip {
  background: var(--burgundy);
  color: rgb(255 255 255 / 0.92);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.hours-strip p {
  margin: 0;
  padding: 0.45rem 1rem;
}

/* Header — center wordmark, split nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(250 247 242 / 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgb(110 59 69 / 0.1);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--header-h);
}

.nav-links {
  display: none;
  gap: 1.15rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--burgundy);
}

.nav-links--left {
  justify-self: start;
}

.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand {
  text-align: center;
  text-decoration: none;
  line-height: 1.15;
}

.brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--burgundy);
}

.brand-tag {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--white);
  background: var(--burgundy);
  border-radius: 2px;
}

.header-cta:hover {
  background: var(--burgundy-soft);
}

/* Shared typography */
.kicker {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy-soft);
}

/* Hero — centered title + arch + wave */
.hero {
  position: relative;
  padding: 2rem 1.25rem 0;
  background: linear-gradient(180deg, var(--arch-blue) 0%, #d8e4ec 55%, var(--cream) 100%);
  text-align: center;
}

.hero-intro {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 7vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
  color: var(--burgundy);
}

.hero-lead {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
}

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

.btn-primary:hover {
  background: var(--burgundy-soft);
}

.btn-outline {
  color: var(--burgundy);
  background: transparent;
  border: 1.5px solid rgb(110 59 69 / 0.35);
}

.btn-outline:hover {
  border-color: var(--burgundy);
}

.hero-arch {
  max-width: 28rem;
  margin: 0 auto;
  aspect-ratio: 5 / 6;
  border-radius: 50% 50% 42% 42% / 38% 38% 62% 62%;
  overflow: hidden;
  box-shadow: 0 24px 56px rgb(28 24 22 / 0.18);
}

.hero-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wave {
  display: block;
  width: 100%;
  height: 3.5rem;
  margin-top: -1px;
}

/* Services — staggered arch stage */
.services {
  padding: 2.5rem 1.25rem 3.5rem;
  background: var(--cream);
}

.services-head {
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.services-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--burgundy);
}

.services-head > p:last-child {
  margin: 0;
  color: var(--muted);
}

.arch-stage {
  display: grid;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.arch-item {
  text-align: center;
}

.arch-label {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  color: var(--burgundy);
}

.arch-label--below {
  margin: 0.85rem 0 0;
}

.arch-frame {
  margin: 0 auto;
  width: min(100%, 16rem);
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 45% 45% / 40% 40% 60% 60%;
  overflow: hidden;
  background: var(--cream-deep);
}

.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arch-desc {
  max-width: 18rem;
  margin: 0.85rem auto 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

/* About — collage + copy */
.about {
  display: grid;
  gap: 2rem;
  padding: 3rem 1.25rem;
  background: var(--cream-deep);
}

.about-collage {
  position: relative;
  min-height: 18rem;
  max-width: 22rem;
  margin: 0 auto;
}

.about-arch {
  width: 75%;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% 42% 42% / 38% 38% 62% 62%;
  overflow: hidden;
  box-shadow: 0 16px 40px rgb(28 24 22 / 0.12);
}

.about-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-circle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--cream-deep);
  box-shadow: 0 8px 24px rgb(28 24 22 / 0.15);
}

.about-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  max-width: 32rem;
  margin: 0 auto;
}

.about-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--burgundy);
}

.about-copy > p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.about-quote {
  margin: 0 0 1.5rem;
  padding: 0 0 0 1rem;
  border-left: 3px solid var(--burgundy);
}

.about-quote p {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
}

.about-quote footer {
  font-size: 0.8125rem;
  color: var(--muted);
}

.about-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.about-facts li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.about-facts span {
  color: var(--muted);
}

.about-facts a {
  color: var(--burgundy);
  font-weight: 600;
  text-decoration: none;
}

.about-facts a:hover {
  text-decoration: underline;
}

/* Process rail */
.process {
  padding: 3rem 1.25rem;
  background: var(--cream);
}

.process-head {
  max-width: 28rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.process-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 600;
  color: var(--burgundy);
}

.process-rail {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--max);
  display: grid;
  gap: 1.25rem;
}

.process-rail li {
  padding: 1.25rem 1.25rem 1.25rem 3.75rem;
  position: relative;
  background: var(--white);
  border: 1px solid rgb(110 59 69 / 0.08);
  border-radius: 4px;
}

.rail-num {
  position: absolute;
  left: 1.15rem;
  top: 1.15rem;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  background: var(--burgundy);
  border-radius: 50%;
}

.process-rail h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.process-rail p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

/* Contact — map + floating card */
.contact {
  position: relative;
  min-height: 420px;
}

.contact-map {
  position: absolute;
  inset: 0;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.2) contrast(1.03);
}

.contact-card {
  position: relative;
  z-index: 2;
  max-width: 22rem;
  margin: 2rem 1.25rem 2rem auto;
  padding: 1.75rem;
  background: var(--white);
  box-shadow: 0 20px 48px rgb(28 24 22 / 0.14);
  border-radius: 4px;
}

.contact-card h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--burgundy);
}

.contact-card > p {
  margin: 0 0 1.15rem;
  font-size: 0.9375rem;
  color: var(--muted);
}

.contact-phone {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--burgundy);
}

.contact-link {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--burgundy-soft);
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-address {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
}

.contact-address:hover {
  color: var(--burgundy);
}

/* Footer */
.site-footer {
  padding: 1.5rem 1.25rem 5.5rem;
  background: var(--burgundy);
  color: rgb(255 255 255 / 0.9);
  font-size: 0.8125rem;
  text-align: center;
}

.site-footer strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.site-footer span {
  display: block;
  opacity: 0.78;
  margin-bottom: 0.65rem;
}

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

.site-footer p {
  margin: 0;
  opacity: 0.82;
}

/* Mobile CTA — single pill */
.mobile-book {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 40;
  transform: translateX(-50%);
  padding: 0.75rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  background: var(--burgundy);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgb(110 59 69 / 0.45);
  white-space: nowrap;
}

.mobile-book:hover {
  background: var(--burgundy-soft);
}

/* Tablet+ */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-links--right {
    justify-content: flex-end;
  }

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

  .arch-stage {
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    gap: 1.5rem;
  }

  .arch-item--center {
    transform: translateY(-1.25rem);
  }

  .arch-item--left .arch-label,
  .arch-item--right .arch-label {
    min-height: 2.5rem;
  }

  .about {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }

  .about-collage {
    margin: 0;
    max-width: none;
    min-height: 22rem;
  }

  .about-copy {
    margin: 0;
  }

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

  .process-rail li {
    padding: 1.5rem 1rem 1.25rem;
    text-align: center;
  }

  .rail-num {
    position: static;
    margin: 0 auto 0.75rem;
  }

  .contact {
    min-height: 480px;
  }

  .contact-card {
    margin: 3rem 1.5rem 3rem auto;
    margin-right: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  }

  .mobile-book {
    display: none;
  }

  .site-footer {
    padding-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 2.75rem;
  }

  .hero-arch {
    max-width: 32rem;
  }
}

/* phone audit 2026-06-15: floating Bookio pill covered next section */
@media(max-width:640px){
  .mobile-book{display:none!important;}
  .site-footer{padding-bottom:1.5rem!important;}
}
