:root {
  --ivory: #fcf9f1;
  --paper: #f6f0e4;
  --sage: #dfe8d4;
  --sage-deep: #5f7255;
  --clay: #bb765a;
  --clay-dark: #7b432f;
  --olive: #293329;
  --brown: #3a2e26;
  --muted: #75685e;
  --line: rgba(58, 46, 38, .14);
  --white: #fffefb;
  --shadow: 0 22px 60px rgba(58, 46, 38, .12);
  --container: 1180px;
  --radius-xl: 34px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--brown);
  background:
    radial-gradient(circle at 10% 0%, rgba(223,232,212,.75), transparent 28rem),
    linear-gradient(180deg, var(--ivory), var(--paper));
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img, picture { display: block; max-width: 100%; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--clay-dark); }
button, input, textarea { font: inherit; }
address { font-style: normal; }

.container { width: min(100% - 36px, var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute; left: 12px; top: 12px; z-index: 1000;
  background: var(--olive); color: white; padding: 10px 14px; border-radius: 999px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 70;
  background: rgba(252,249,241,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(150%);
}
.header-grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { filter: drop-shadow(0 10px 16px rgba(123,67,47,.14)); }
.brand strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; line-height: 1; }
.brand small { display: block; color: var(--muted); font-size: .78rem; margin-top: 4px; }
.nav-menu { justify-self: center; display: flex; gap: 6px; align-items: center; }
.nav-menu a {
  color: #51463d; font-weight: 760; font-size: .95rem;
  padding: 10px 13px; border-radius: 999px;
}
.nav-menu a:hover { background: rgba(187,118,90,.11); color: var(--clay-dark); }
.quick-call {
  justify-self: end;
  background: var(--olive); color: white; font-weight: 850;
  padding: 12px 18px; border-radius: 999px;
  box-shadow: 0 14px 32px rgba(41,51,41,.15);
}
.quick-call:hover { color: white; background: var(--clay-dark); }
.menu-button { display: none; }

.hero-shell { padding: 46px 0 28px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.hero-copy { padding: clamp(12px, 2vw, 22px) 0; }
.label {
  margin: 0 0 14px;
  color: var(--clay-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
  letter-spacing: -.035em;
  color: var(--olive);
}
h1 { font-size: clamp(3.15rem, 7.4vw, 6.7rem); max-width: 780px; }
h2 { font-size: clamp(2.2rem, 4.7vw, 4.15rem); }
h3 { font-size: clamp(1.55rem, 3vw, 2.35rem); }
.lead {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
}
.hero-actions, .contact-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-actions.compact { margin-top: 22px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 13px 21px; border-radius: 999px;
  font-weight: 900; border: 1px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--clay); color: white; box-shadow: 0 18px 36px rgba(187,118,90,.25); }
.button-primary:hover { color: white; background: var(--clay-dark); }
.button-soft { background: #fffaf0; border-color: rgba(123,67,47,.16); color: var(--brown); }
.button-soft:hover { background: var(--sage); color: var(--olive); }
.hero-facts {
  margin: 26px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px;
}
.hero-facts div {
  background: rgba(255,254,251,.72); border: 1px solid var(--line);
  border-radius: 22px; padding: 18px; box-shadow: 0 18px 36px rgba(58,46,38,.06);
}
.hero-facts dt { color: var(--muted); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 900; }
.hero-facts dd { margin: 6px 0 0; font-weight: 900; color: var(--olive); }

.hero-visual { position: relative; min-height: 560px; }
.hero-photo { overflow: hidden; box-shadow: var(--shadow); border: 10px solid rgba(255,254,251,.8); background: var(--paper); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main {
  position: absolute; inset: 0 7% 10% 8%;
  border-radius: 42% 42% 34px 34px;
}
.hero-photo-small {
  position: absolute; right: 0; bottom: 0;
  width: 39%; height: 290px; border-radius: 999px 999px 28px 28px;
}
.floating-card {
  position: absolute; left: 0; bottom: 70px;
  min-width: 190px; padding: 22px;
  background: var(--olive); color: #fff8ec;
  border-radius: 28px;
  box-shadow: 0 26px 58px rgba(41,51,41,.24);
}
.floating-card span, .floating-card small { display: block; color: rgba(255,248,236,.72); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; }
.floating-card strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 3.4rem; line-height: .95; margin: 8px 0; }

.calm-strip { padding: 12px 0; }
.strip-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px;
  background: var(--olive); color: white; padding: 14px; border-radius: 28px;
  box-shadow: var(--shadow);
}
.strip-grid a { padding: 14px 18px; border-radius: 18px; background: rgba(255,255,255,.06); font-weight: 900; overflow-wrap: anywhere; }
.strip-grid span { display: block; color: rgba(255,255,255,.62); font-size: .72rem; text-transform: uppercase; letter-spacing: .13em; }
.strip-grid a:hover { color: white; background: rgba(255,255,255,.12); }

.section { padding: 46px 0; }
.two-column, .service-grid, .hours-layout, .location-grid, .contact-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(22px, 4vw, 48px); align-items: center;
}
.image-window {
  overflow: hidden; border-radius: 30px; border: 8px solid rgba(255,254,251,.8); box-shadow: var(--shadow);
  background: var(--paper);
}
.image-window img { width: 100%; height: 500px; object-fit: cover; }
.copy-panel, .service-ticket, .location-card, .contact-form {
  background: rgba(255,254,251,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3.8vw, 38px);
  box-shadow: var(--shadow);
}
.copy-panel p, .service-intro p, .service-ticket p, .hours-layout p, .location-card p, .contact-heading p { color: var(--muted); }
.ticks { display: grid; gap: 10px; padding: 0; margin: 20px 0 0; list-style: none; }
.ticks li { position: relative; padding-left: 34px; font-weight: 760; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .32em; width: 20px; height: 20px; border-radius: 50%; background: var(--sage-deep); box-shadow: inset 0 0 0 6px var(--sage); }

.professional-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(223,232,212,.76), rgba(255,250,240,.9));
  border: 1px solid rgba(95,114,85,.2);
}
.professional-note strong {
  display: block;
  color: var(--olive);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.professional-note p {
  margin: 8px 0 0;
  color: var(--muted);
}

.service-band {
  background:
    radial-gradient(circle at 78% 16%, rgba(187,118,90,.14), transparent 26rem),
    linear-gradient(135deg, rgba(223,232,212,.58), rgba(246,240,228,.85));
}
.service-intro { max-width: 530px; }
.service-ticket { position: relative; overflow: hidden; }
.service-ticket::before {
  content: ""; position: absolute; inset: 18px 18px auto auto; width: 110px; height: 110px;
  border-radius: 50%; background: rgba(223,232,212,.72); z-index: 0;
}
.service-ticket > * { position: relative; z-index: 1; }
.ticket-top { display: flex; justify-content: space-between; align-items: start; gap: 18px; margin-bottom: 18px; }
.ticket-top span { color: var(--clay-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; }
.ticket-top strong { font-family: Georgia, "Times New Roman", serif; font-size: 3.5rem; color: var(--olive); line-height: .9; }
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0 22px; }
.benefits span { background: var(--sage); color: var(--olive); border-radius: 999px; padding: 10px 14px; font-weight: 850; text-align: center; }

.gallery-section {
  background: linear-gradient(180deg, rgba(252,249,241,.18), rgba(223,232,212,.38));
}
.gallery-heading { max-width: 760px; margin-bottom: 24px; text-align: center; }
.gallery-heading p:last-child { margin: 14px auto 0; color: var(--muted); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.gallery-item {
  display: block; width: 100%; padding: 0; overflow: hidden;
  border: 8px solid rgba(255,254,251,.82); border-radius: 28px;
  background: var(--paper); box-shadow: var(--shadow); cursor: pointer;
  aspect-ratio: 4 / 3;
}
.gallery-item picture, .gallery-item img { width: 100%; height: 100%; }
.gallery-item img { object-fit: cover; transition: transform .28s ease, filter .28s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.04); filter: saturate(1.04); }
.gallery-item:focus-visible { outline: 4px solid rgba(187,118,90,.36); outline-offset: 4px; }

.hours-section { background: var(--ivory); }
.hours-layout { align-items: start; }
.hours-layout a { color: var(--clay-dark); font-weight: 900; }
.hours-list { display: grid; gap: 8px; }
.hours-list div { display: flex; justify-content: space-between; gap: 18px; padding: 14px 18px; background: rgba(255,254,251,.82); border: 1px solid var(--line); border-radius: 18px; }
.hours-list span { font-weight: 900; }
.hours-list strong { color: var(--sage-deep); }

.location-section { background: linear-gradient(180deg, rgba(223,232,212,.56), rgba(252,249,241,.96)); }
.location-card address { margin: 22px 0; padding: 18px 20px; border-radius: 22px; background: var(--paper); border: 1px solid var(--line); }
.map-frame { height: 460px; padding: 10px; background: rgba(255,254,251,.76); border-radius: var(--radius-xl); border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; border: 0; border-radius: 26px; }

.contact-section { padding-bottom: 58px; }
.contact-layout { align-items: start; grid-template-columns: .92fr 1.08fr; }
.contact-buttons a { padding: 13px 17px; border-radius: 999px; background: var(--sage); color: var(--olive); font-weight: 900; overflow-wrap: anywhere; }
.contact-buttons a:first-child { background: var(--olive); color: white; }
.contact-form { display: grid; gap: 16px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; font-weight: 900; color: #473a31; }
input, textarea {
  width: 100%; border: 1px solid rgba(58,46,38,.18); border-radius: 17px;
  background: #fffdf7; color: var(--brown); padding: 13px 14px; outline: none;
}
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: var(--clay); box-shadow: 0 0 0 4px rgba(187,118,90,.13); }
.small-note { margin: 0; color: var(--muted); font-size: .92rem; }

.site-footer { background: var(--olive); color: rgba(255,255,255,.76); padding: 34px 0; }
.footer-layout { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 26px; }
.site-footer strong { font-family: Georgia, "Times New Roman", serif; color: #fff8ec; font-size: 1.35rem; }
.site-footer span { display: block; color: #dfe8d4; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; margin-bottom: 8px; }
.site-footer p { margin: 8px 0 0; }
.site-footer a { color: #fff8ec; font-weight: 900; }
.footer-credit {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  text-align: center;
  font-size: .92rem;
}
.footer-credit p { margin: 0; }
.mobile-bar { display: none; }

.carousel-modal[hidden] { display: none; }
.carousel-modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; grid-template-columns: auto minmax(0, 960px) auto; align-items: center; gap: 18px;
  padding: clamp(18px, 4vw, 46px);
  background: rgba(28, 24, 21, .82);
  backdrop-filter: blur(10px);
}
.carousel-panel { margin: 0; color: white; text-align: center; }
.carousel-panel img {
  width: 100%; max-height: min(74vh, 760px); object-fit: contain;
  border-radius: 24px; box-shadow: 0 28px 80px rgba(0,0,0,.35);
  background: var(--paper);
}
.carousel-panel figcaption { margin-top: 12px; font-weight: 850; color: rgba(255,255,255,.86); }
.carousel-close, .carousel-arrow {
  border: 0; cursor: pointer; color: var(--olive); background: rgba(255,254,251,.95);
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}
.carousel-close {
  position: fixed; top: 18px; right: 18px;
  width: 48px; height: 48px; border-radius: 50%; font-size: 2rem; line-height: 1;
}
.carousel-arrow { width: 54px; height: 54px; border-radius: 50%; font-size: 2.3rem; line-height: 1; }
.carousel-arrow:hover, .carousel-close:hover { background: var(--sage); }

@media (max-width: 980px) {
  .header-grid { grid-template-columns: auto auto; }
  .quick-call { display: none; }
  .menu-button {
    display: inline-flex; justify-self: end; min-height: 44px; align-items: center; justify-content: center;
    border-radius: 999px; border: 1px solid var(--line); background: #fffdf7; color: var(--olive); font-weight: 900; padding: 10px 16px;
  }
  .nav-menu {
    position: fixed; inset: 92px 18px auto 18px; display: grid; padding: 16px;
    border-radius: 28px; background: rgba(255,253,247,.98); border: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 13px 14px; }
  .hero-grid, .two-column, .service-grid, .hours-layout, .location-grid, .contact-layout, .footer-layout { grid-template-columns: 1fr; }
  .hero-visual { min-height: 540px; }
  .strip-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .carousel-modal { grid-template-columns: 1fr; gap: 10px; }
  .carousel-arrow { position: fixed; top: 50%; transform: translateY(-50%); }
  .carousel-prev { left: 14px; }
  .carousel-next { right: 14px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 72px; }
  .container { width: min(100% - 24px, var(--container)); }
  .brand small { display: none; }
  .site-header .brand strong { font-size: 1.05rem; }
  .hero-shell { padding: 32px 0 18px; }
  h1 { font-size: clamp(2.55rem, 15vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; }
  .hero-photo-main { inset: 0 0 96px 0; border-radius: 34px 34px 28px 28px; }
  .hero-photo-small { width: 54%; height: 190px; }
  .floating-card { left: 12px; bottom: 28px; min-width: 155px; padding: 16px; }
  .floating-card strong { font-size: 2.55rem; }
  .hero-actions, .contact-buttons { flex-direction: column; }
  .button, .contact-buttons a { width: 100%; }
  .section { padding: 34px 0; }
  .copy-panel, .service-ticket, .location-card, .contact-form { padding: 22px; border-radius: 24px; }
  .image-window img { height: auto; aspect-ratio: 4 / 3; }
  .benefits, .form-row.two, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { border-width: 6px; }
  .carousel-panel img { max-height: 72vh; }
  .carousel-arrow { width: 46px; height: 46px; font-size: 1.9rem; }
  .map-frame { height: 380px; }
  .hours-list div { align-items: center; }
  .mobile-bar {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80;
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px;
    background: rgba(255,253,247,.96); border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 22px 48px rgba(41,51,41,.22);
    backdrop-filter: blur(12px);
  }
  .mobile-bar a { display: grid; place-items: center; min-height: 46px; border-radius: 999px; font-weight: 950; }
  .mobile-bar a:first-child { background: var(--olive); color: white; }
  .mobile-bar a:last-child { background: var(--sage); color: var(--olive); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
