:root {
  --cream: #FAF6EF;
  --navy: #1F3157;
  --brown: #674A2B;
  --tan: #DDBA8D;
  --tan-dark: #3A2A17;
  --sky: #C9DCEB;
  --periwinkle: #849BFF;
  --periwinkle-pale: #C6D0FF;
  --strip-blue: #5B7ABC;
  --ink: #4A4033;
  --white: #FFFFFF;
  --border-cream: #E6DDCE;
  --border-warm: #D9CFBF;
  --placeholder: #9A9287;
  --serif: 'Instrument Serif', serif;
  --label: 'Josefin Sans', sans-serif;
  --body: Figtree, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--body);
}

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

input, textarea, select, button {
  font-family: inherit;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}

::placeholder { color: var(--placeholder); }

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

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-cream);
}

.site-header .wrap {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  flex-wrap: wrap;
}

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

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  font-family: var(--label);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.header-rule {
  width: 1px;
  height: 30px;
  background: var(--border-warm);
}

.header-motto {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: #43474F;
}

.town-bar {
  background: var(--periwinkle);
  border-top: 1px solid var(--navy);
  padding: 9px 20px;
  display: flex;
  gap: 10px 22px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-family: var(--label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav a { color: var(--navy); text-decoration: none; }

.main-nav .btn-book {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: var(--navy);
  color: var(--cream);
  padding: 11px 22px;
  border-radius: 999px;
}

.main-nav .btn-book:hover { background: var(--brown); }

@media (max-width: 759px) {
  .site-header .wrap { justify-content: space-between; }
  .header-rule,
  .header-motto,
  .main-nav .nav-link { display: none; }
}

/* Buttons */
.btn-pill {
  display: inline-block;
  text-decoration: none;
  font-family: var(--label);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--tan);
  color: var(--tan-dark);
}

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

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

.btn-navy:hover { background: var(--brown); }

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 138%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(31, 49, 87, 0.96) 0%, rgba(31, 49, 87, 0.92) 30%, rgba(31, 49, 87, 0.58) 47%, rgba(31, 49, 87, 0) 64%);
}

.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 58px) 20px clamp(200px, 26vw, 370px);
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 13vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: var(--white);
  text-wrap: balance;
  text-shadow: 0 4px 30px rgba(12, 19, 38, 0.7);
}

.hero h1 em {
  color: var(--periwinkle-pale);
  font-size: 1.18em;
  text-shadow: 0 2px 18px rgba(31, 49, 87, 0.55);
}

.hero-cta-row {
  position: relative;
  background: var(--navy);
  border-top: 2px solid var(--periwinkle);
  padding: clamp(24px, 3vw, 36px) 20px;
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-cta-row p {
  margin: 0;
  max-width: 26em;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.45;
  color: var(--white);
}

.hero-cta-row .btn-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 20px 34px;
  font-size: 15px;
}

@media (max-width: 759px) {
  .hero { display: flex; flex-direction: column; }
  .hero img.hero-bg {
    position: relative;
    inset: auto;
    height: auto;
    aspect-ratio: 16 / 9;
    object-position: 50% 50%;
    order: 1;
  }
  .hero-overlay { display: none; }
  .hero-inner { order: 2; padding: 34px 20px 30px; }
  .hero-cta-row { order: 3; }
}

/* Ticker */
.ticker-band {
  background: var(--periwinkle);
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  overflow: hidden;
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 44px;
  animation: ticker 38s linear infinite;
  font-family: var(--label);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* Prices */
.prices-section { padding: clamp(56px, 8vw, 104px) 20px; }

.section-head {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 7vw, 88px);
  line-height: 0.95;
}

.section-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 24em;
}

.price-list {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--navy);
}

.price-row {
  display: flex;
  gap: 16px 30px;
  flex-wrap: wrap;
  align-items: baseline;
  padding: clamp(22px, 3vw, 34px) 6px;
  border-bottom: 1px solid var(--border-warm);
}

.price-row:last-child { border-bottom: 2px solid var(--navy); }

.price-row:hover { background: var(--white); }

.price-row h3 {
  margin: 0;
  flex: 1 1 240px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.price-row p {
  margin: 0;
  flex: 2 1 300px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}

.price-row .price {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--brown);
  white-space: nowrap;
}

.price-row .price span {
  font-family: var(--label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Photo strip */
.photo-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 4px;
  background: var(--strip-blue);
  overflow-x: auto;
}

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

/* Reviews */
.reviews-section { background: var(--navy); color: var(--cream); }

.reviews-inner { padding: clamp(56px, 8vw, 110px) 20px; }

.reviews-kicker {
  margin: 0 0 14px;
  font-family: var(--label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
}

.reviews-pullquote {
  margin: 0 0 clamp(36px, 5vw, 64px);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 1.02;
  color: var(--white);
  max-width: 22em;
  text-wrap: pretty;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
}

.review-card {
  margin: 0;
  background: rgba(250, 246, 239, 0.07);
  border: 1px solid rgba(201, 220, 235, 0.3);
  border-radius: 18px;
  padding: 26px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.review-card blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--white);
}

.review-card figcaption {
  font-family: var(--label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan);
}

.review-cta {
  background: var(--tan);
  border-radius: 18px;
  padding: 26px;
  display: grid;
  gap: 14px;
  align-content: center;
}

.review-cta p {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  color: var(--tan-dark);
}

.review-cta .btn-pill {
  justify-self: start;
  padding: 15px 24px;
  font-size: 13px;
}

/* About */
.about-section { background: var(--white); }

.about-inner {
  padding: clamp(56px, 8vw, 110px) 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.about-inner img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
}

.about-copy { display: grid; gap: 18px; }

.eyebrow {
  margin: 0;
  font-family: var(--label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
}

.about-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.0;
}

.about-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
}

.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--navy);
}

.about-list li { display: flex; gap: 12px; }
.about-list li::before { content: "●"; color: var(--tan); }

/* Text updates */
.updates-section { background: var(--periwinkle); }

.updates-inner {
  padding: clamp(56px, 8vw, 104px) 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.updates-copy { display: grid; gap: 18px; }

.updates-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 68px);
  line-height: 0.98;
}

.updates-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
}

.updates-copy .btn-pill {
  justify-self: start;
  padding: 17px 28px;
  font-size: 14px;
}

.phone-mock {
  justify-self: center;
  width: 100%;
  max-width: 360px;
  background: var(--navy);
  border-radius: 46px;
  padding: 12px;
}

.phone-screen {
  background: var(--white);
  border-radius: 36px;
  overflow: hidden;
}

.phone-bar {
  background: #F2F2F4;
  padding: 14px 18px 12px;
  display: grid;
  gap: 2px;
  justify-items: center;
  border-bottom: 1px solid #E1E1E4;
}

.phone-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--tan);
  display: grid;
  place-items: center;
  font-family: var(--label);
  font-weight: 700;
  font-size: 15px;
  color: var(--tan-dark);
}

.phone-bar p {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #1B1B1F;
}

.phone-thread {
  padding: 16px 14px 20px;
  display: grid;
  gap: 10px;
  background: var(--white);
}

.phone-thread .timestamp {
  margin: 0 0 2px;
  text-align: center;
  font-size: 11px;
  color: #8A8A8F;
}

.bubble {
  max-width: 82%;
  border-radius: 20px 20px 20px 6px;
  padding: 11px 15px;
  font-size: 15px;
  line-height: 1.4;
  color: #1B1B1F;
  justify-self: start;
}

.bubble.in { background: #EDEDF0; }

.bubble.out {
  justify-self: end;
  background: var(--navy);
  color: var(--white);
  border-radius: 20px 20px 6px 20px;
}

.bubble-photo {
  justify-self: start;
  width: 72%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px 20px 20px 6px;
}

/* Service area */
.area-section { background: var(--brown); }

.area-inner {
  padding: clamp(48px, 7vw, 88px) 20px;
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

.area-inner .section-head h2 { color: var(--white); font-size: clamp(34px, 6vw, 72px); line-height: 0.98; }
.area-inner .section-head p { color: #F6E9D8; max-width: 26em; }

.area-list { display: grid; gap: 10px; }

.area-pill {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--tan);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 34px) clamp(22px, 3vw, 38px);
}

.area-pill span {
  font-family: var(--serif);
  font-size: clamp(44px, 9vw, 116px);
  line-height: 0.95;
  color: var(--tan-dark);
}

/* FAQ */
.faq-section {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 20px;
}

.faq-section > h2 {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.98;
}

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

.faq-list details {
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 16px;
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.25;
  color: var(--navy);
}

.faq-list p {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}

/* Contact */
.contact-section { background: var(--periwinkle); }

.contact-inner {
  padding: clamp(56px, 8vw, 110px) 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(30px, 5vw, 60px);
}

.contact-copy { display: grid; gap: 18px; align-content: start; }

.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.98;
}

.contact-copy > p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--navy);
}

.contact-details {
  display: grid;
  gap: 8px;
  font-size: 18px;
  line-height: 1.6;
}

.contact-details p { margin: 0; }
.contact-details a { color: var(--navy); }

.contact-details .towns {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
  color: var(--navy);
}

.contact-form {
  background: var(--cream);
  border-radius: 22px;
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-family: var(--label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--body);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--navy);
  padding: 14px 16px;
  border: 1px solid var(--border-warm);
  border-radius: 12px;
  background: var(--white);
}

.contact-form textarea { resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 16px;
}

.contact-form button {
  margin-top: 6px;
  padding: 18px 28px;
  font-size: 14px;
}

.form-status {
  margin: 0;
  min-height: 1.4em;
  font-size: 15px;
  color: #2F6B4F;
}

/* Footer */
.site-footer { background: var(--cream); border-top: 2px solid var(--navy); }

.footer-inner {
  padding: 44px 20px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-inner img { width: 76px; height: 76px; object-fit: contain; }

.footer-brand { display: grid; gap: 4px; margin-right: auto; }
.footer-brand p:first-child { margin: 0; font-family: var(--serif); font-size: 26px; color: var(--navy); }
.footer-brand p:last-child { margin: 0; font-size: 16px; color: var(--brown); }

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a { color: var(--navy); text-decoration: none; }

/* Sticky call bar */
.call-bar {
  position: sticky;
  bottom: 0;
  z-index: 40;
  background: var(--brown);
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  flex-wrap: wrap;
}

.call-bar span { color: #F6E9D8; font-size: 16px; }
.call-bar .btn-pill { padding: 12px 22px; font-size: 13px; }
