:root {
  --navy: #2b4a73;
  --navy-dark: #21395c;
  --navy-deep: #16263f;
  --navy-soft: #e8eef6;
  --bg: #ffffff;
  --bg-soft: #f4f6f9;
  --bg-gray: #e9edf3;
  --line: #d9e0ea;
  --ink: #1f2937;
  --muted: #5b6b7f;
  --radius: 14px;
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--navy); color: #fff; }

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

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

.container { width: min(1120px, 100% - 48px); margin-inline: auto; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(22, 38, 63, .06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .06em;
  color: var(--navy-deep);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.logo .dot { color: var(--navy); }
.logo .sub {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .34em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--muted); transition: color .2s ease; }
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-cta {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  padding: 10px 18px;
  border-radius: 8px;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--navy-dark); transform: translateY(-1px); }
/* Override the higher-specificity .nav-links a color so CTA text stays white */
.nav-links a.nav-cta, .nav-links a.nav-cta:hover { color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  color: var(--navy-deep);
  font-size: 1.2rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 96px;
  background:
    linear-gradient(90deg, rgba(22,38,63,.93) 0%, rgba(43,74,115,.78) 48%, rgba(43,74,115,.35) 100%),
    url("images/ceramic-front.jpg") center / cover no-repeat;
}
.hero-inner { max-width: 620px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: #fff; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.2vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; font-weight: 500; color: #bcd3ee; }
.hero p.lead { font-size: 1.08rem; color: rgba(255,255,255,.82); max-width: 52ch; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.btn-primary { background: #fff; color: var(--navy-deep); }
.btn-primary:hover { background: var(--navy-soft); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.06); }
.btn-ghost:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.12); }
.btn-outline { border-color: var(--line); color: var(--navy); background: #fff; }
.btn-outline:hover { border-color: var(--navy); background: var(--navy-soft); }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero-meta strong { color: rgba(255,255,255,.85); font-weight: 600; }

/* ---------- Section scaffolding ---------- */
section { padding: 100px 0; }
.section-head { margin-bottom: 52px; }
.section-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--navy-deep);
  max-width: 24ch;
}
.section-head p { color: var(--muted); margin-top: 16px; max-width: 58ch; }
.section-head p .save-em {
  color: var(--navy);
  background: var(--navy-soft);
  border: 1px solid #d3deec;
  padding: 3px 12px;
  border-radius: 100px;
  font-weight: 700;
  white-space: nowrap;
}
.section-head.center { text-align: center; }
.section-head.center h2, .section-head.center p { margin-inline: auto; }

/* ---------- Services & pricing ---------- */
.services { background: var(--bg); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { border-color: #c3cede; transform: translateY(-4px); box-shadow: 0 14px 34px rgba(22,38,63,.08); }
.price-card .img-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.price-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.price-card:hover img { transform: scale(1.04); }
.price-card .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  padding: 5px 11px;
  border-radius: 100px;
}
.price-body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.price-body .class-lbl {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.price-body h3 { font-family: var(--font-display); font-size: 1.22rem; color: var(--navy-deep); margin-bottom: 10px; }
.price-body ul { list-style: none; margin-bottom: 18px; display: grid; gap: 7px; }
.price-body ul li { font-size: .87rem; color: var(--muted); padding-left: 18px; position: relative; }
.price-body ul li::before { content: "—"; position: absolute; left: 0; color: var(--navy); }
.price-row {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.price-row .price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy-deep); }
.price-row .price small { font-size: .78rem; font-weight: 500; color: var(--muted); }
.price-row .duration { font-size: .78rem; color: var(--muted); text-align: right; }
.price-card .btn-navy { margin-top: 16px; width: 100%; }
.pricing-note { margin-top: 22px; font-size: .8rem; color: var(--muted); }

/* ---------- Add-ons ---------- */
.addons { background: var(--bg-soft); border-block: 1px solid var(--line); }
.addon-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.addon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .2s ease, transform .2s ease;
}
.addon-card:hover { border-color: #c3cede; transform: translateY(-3px); }
.addon-card h3 { font-family: var(--font-display); font-size: .98rem; color: var(--navy-deep); }
.addon-card .addon-desc { font-size: .82rem; color: var(--muted); flex: 1; }
.addon-card .addon-price { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.addon-card .addon-price small { font-size: .72rem; font-weight: 500; color: var(--muted); }
.addon-card .addon-book {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  align-self: flex-start;
  margin-top: 2px;
}
.addon-card .addon-book:hover { text-decoration: underline; }

/* ---------- Mobile / About ---------- */
.mobile { background: var(--bg); }
.mobile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mobile-grid .img-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.mobile-grid img { width: 100%; height: 100%; object-fit: cover; }
.mobile-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  letter-spacing: -.02em;
  color: var(--navy-deep);
  margin-bottom: 18px;
  line-height: 1.12;
}
.mobile-copy p { color: var(--muted); margin-bottom: 16px; max-width: 48ch; }
.mobile-facts { list-style: none; display: grid; gap: 12px; margin: 24px 0 28px; }
.mobile-facts li { display: flex; gap: 12px; align-items: baseline; font-size: .95rem; }
.mobile-facts .lbl { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--navy); min-width: 74px; }
.mobile-facts .val { color: var(--ink); }

/* ---------- Gallery preview ---------- */
.preview { background: var(--bg-soft); border-block: 1px solid var(--line); }
.preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.preview-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: block;
  background: var(--bg-gray);
}
.preview-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.preview-item:hover img { transform: scale(1.05); }
.preview-more { text-align: center; margin-top: 36px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg); }
.review-card {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 40px;
}
.review-stars { color: var(--navy); font-size: 1rem; letter-spacing: .22em; margin-bottom: 20px; }
.review-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.5;
  color: var(--navy-deep);
  margin-bottom: 22px;
}
.review-author .name { font-weight: 600; color: var(--ink); }
.review-author .meta { font-size: .85rem; color: var(--muted); }

/* ---------- Booking ---------- */
.booking { background: var(--navy-deep); }
.booking .section-eyebrow { color: #9db8d9; }
.booking .section-head h2 { color: #fff; }
.booking .section-head p { color: rgba(255,255,255,.7); }
.booking-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 44px; }
.book-step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 28px;
}
.book-step .step-num { font-family: var(--font-display); font-size: .8rem; font-weight: 600; letter-spacing: .2em; color: #9db8d9; margin-bottom: 12px; }
.book-step h3 { font-family: var(--font-display); font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.book-step p { font-size: .9rem; color: rgba(255,255,255,.68); }
.booking-cta { text-align: center; }
.booking-cta .btn { font-size: 1.05rem; padding: 17px 34px; }
.booking-cta .btn-primary { background: #fff; color: var(--navy-deep); }
.booking-cta .btn-primary:hover { background: #e8eef6; }
.booking-alt { margin-top: 18px; font-size: .9rem; color: rgba(255,255,255,.6); }
.booking-alt a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.35); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding: 150px 0 64px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  letter-spacing: -.02em;
  color: var(--navy-deep);
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-hero p { color: var(--muted); max-width: 56ch; }

/* ---------- Gallery page ---------- */
.gallery-page { background: var(--bg); padding-top: 64px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
  background: var(--bg-gray);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 14px;
  background: linear-gradient(transparent, rgba(22,38,63,.85));
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover .caption, .gallery-item:focus-visible .caption { opacity: 1; transform: none; }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(16, 26, 42, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(1200px, 92vw); max-height: 86vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox .lb-caption { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); font-size: .86rem; color: rgba(255,255,255,.75); letter-spacing: .04em; }
.lightbox .lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.lightbox .lb-close:hover { border-color: #fff; background: rgba(255,255,255,.12); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); background: var(--bg); padding: 46px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-inner .logo { font-size: 1.1rem; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: .86rem; color: var(--muted); transition: color .2s ease; }
.footer-links a:hover { color: var(--navy); }
.footer-inner p { color: var(--muted); font-size: .86rem; }
.footer-inner .loc { letter-spacing: .18em; text-transform: uppercase; font-size: .74rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .mobile-grid { grid-template-columns: 1fr; gap: 36px; }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; max-width: 480px; }
  .gallery-grid { grid-auto-rows: 190px; }
}
@media (max-width: 720px) {
  section { padding: 76px 0; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-links a.active { color: var(--navy); }
  .nav-links .nav-cta { margin-top: 14px; border: none; text-align: center; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero { padding: 120px 0 72px; }
  .hero-meta { margin-top: 40px; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .addon-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .review-card { padding: 34px 24px; }
  .page-hero { padding: 130px 0 52px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .gallery-item.featured { grid-column: span 1; grid-row: span 1; }
  .lightbox { padding: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
