:root {
  --bg: #fcfaf5;
  --surface: #ffffff;
  --surface-soft: #f7f1e8;
  --surface-tint: #eef5f2;
  --text: #243129;
  --muted: #5f6b62;
  --brand: #2f6f67;
  --brand-deep: #234e48;
  --accent: #ca7a47;
  --accent-deep: #9d5b31;
  --accent-soft: #f1ddcf;
  --border: #e7ddd1;
  --shadow: 0 18px 40px rgba(31, 41, 35, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffdf9 0%, var(--bg) 40%, #f7f3ec 100%);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.section-header {
  max-width: 700px;
  margin-bottom: 2rem;
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand);
  background: rgba(47, 111, 103, 0.09);
  border: 1px solid rgba(47, 111, 103, 0.14);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.12;
  margin: 0 0 0.9rem;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  max-width: 65ch;
}

.muted {
  color: var(--muted);
}

.kicker {
  color: var(--brand);
  font-weight: 700;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: white;
  box-shadow: 0 16px 32px rgba(35, 78, 72, 0.22);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  box-shadow: 0 16px 32px rgba(157, 91, 49, 0.2);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.28);
  color: white;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(252, 250, 245, 0.86);
  border-bottom: 1px solid rgba(36, 49, 41, 0.06);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(47, 111, 103, 0.18);
  background: #fff;
}

.brand__text {
  min-width: 0;
}

.brand__name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}

.brand__tag {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav a {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(47, 111, 103, 0.1);
  color: var(--brand-deep);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  padding: 4.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

.hero-card {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.4rem);
  border-radius: calc(var(--radius-lg) + 6px);
  background: linear-gradient(145deg, rgba(255,255,255,0.97), rgba(247, 241, 232, 0.96));
  border: 1px solid rgba(202, 122, 71, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -32% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 103, 0.11), transparent 70%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy p {
  max-width: 58ch;
}

.hero-photo {
  position: relative;
  min-height: 540px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e9e2d7;
}

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

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 35, 31, 0.06), rgba(25, 35, 31, 0.25));
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.35rem 0 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.95rem;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(36, 49, 41, 0.08);
  border-radius: 999px;
  color: var(--text);
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.floating-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255,255,255,0.52);
  border-radius: 20px;
  padding: 1rem 1rem 0.9rem;
  box-shadow: 0 22px 42px rgba(31, 41, 35, 0.16);
  z-index: 2;
}

.floating-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.trust-strip {
  margin-top: 1.5rem;
}

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

.info-pill,
.feature-card,
.category-card,
.content-card,
.contact-card,
.small-card,
.step-card,
.gallery-card,
.faq-card,
.map-card,
.cta-panel,
.hours-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.info-pill {
  padding: 1.1rem 1.2rem;
}

.info-pill span {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.info-pill strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.card-grid-3,
.card-grid-4,
.photo-grid,
.value-grid,
.stats-grid,
.contact-grid,
.steps-grid,
.inventory-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid-3,
.value-grid,
.contact-grid,
.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-4,
.inventory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.photo-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.feature-card,
.category-card,
.content-card,
.contact-card,
.small-card,
.step-card,
.gallery-card,
.faq-card,
.hours-card {
  overflow: hidden;
}

.feature-card img,
.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.feature-card__body,
.category-card__body,
.content-card__body,
.contact-card__body,
.step-card__body,
.gallery-card__body,
.hours-card__body {
  padding: 1.35rem;
}

.category-card {
  background: linear-gradient(180deg, var(--surface), #fff8f1);
}

.category-card__label,
.small-label {
  display: inline-flex;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.feature-card h3,
.category-card h3,
.content-card h3,
.contact-card h3,
.step-card h3,
.hours-card h3 {
  margin-bottom: 0.65rem;
}

.value-list,
.clean-list,
.icon-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.value-list li,
.clean-list li,
.icon-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.value-list li::before,
.clean-list li::before,
.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.banner {
  border-radius: calc(var(--radius-lg) + 6px);
  background: linear-gradient(125deg, var(--brand-deep), var(--brand), #4e8f84);
  color: white;
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.banner p {
  color: rgba(255,255,255,0.84);
  max-width: 58ch;
}

.banner .btn-secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.22);
  box-shadow: none;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.split-section.reverse .split-copy {
  order: 2;
}

.split-media {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid .gallery-card:nth-child(1) {
  grid-column: span 7;
}

.photo-grid .gallery-card:nth-child(2) {
  grid-column: span 5;
}

.photo-grid .gallery-card:nth-child(3) {
  grid-column: span 4;
}

.photo-grid .gallery-card:nth-child(4) {
  grid-column: span 4;
}

.photo-grid .gallery-card:nth-child(5) {
  grid-column: span 4;
}

.gallery-card__body p:last-child,
.feature-card__body p:last-child,
.category-card__body p:last-child,
.content-card__body p:last-child,
.contact-card__body p:last-child,
.step-card__body p:last-child {
  margin-bottom: 0;
}

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

.stat-box {
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.stat-box strong {
  display: block;
  font-size: 1.9rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.filter-chip {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.inventory-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.inventory-card.hidden {
  display: none;
}

.inventory-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.inventory-card__body {
  padding: 1.2rem;
}

.inventory-tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.7rem;
}

.page-hero {
  padding: 3.5rem 0 1.5rem;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.6rem;
  align-items: stretch;
}

.page-hero__panel,
.map-card,
.cta-panel {
  padding: clamp(1.5rem, 3vw, 2.3rem);
}

.page-hero__panel {
  border-radius: calc(var(--radius-lg) + 6px);
  background: linear-gradient(155deg, #fffefb 0%, #f7efe5 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.page-hero__media {
  border-radius: calc(var(--radius-lg) + 6px);
  overflow: hidden;
  min-height: 100%;
  box-shadow: var(--shadow);
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 18px;
}

.location-stack {
  display: grid;
  gap: 1rem;
}

.hours-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: rgba(47, 111, 103, 0.09);
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 700;
}

.faq-card {
  padding: 1.1rem 1.15rem;
}

details {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
}

details + details {
  margin-top: 1rem;
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--text);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-size: 1.2rem;
  line-height: 1;
}

details[open] summary::after {
  content: "–";
}

footer.site-footer {
  padding: 3.5rem 0 6.5rem;
  background: linear-gradient(180deg, #faf5ed 0%, #f0e7db 100%);
  border-top: 1px solid rgba(36, 49, 41, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1.5rem;
}

.footer-brand {
  max-width: 420px;
}

.footer-links a {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-deep);
}

.footer-note {
  margin-top: 1.3rem;
  font-size: 0.92rem;
}

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.7rem 0.75rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(252, 250, 245, 0.96);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(36, 49, 41, 0.08);
  box-shadow: 0 -12px 30px rgba(31, 41, 35, 0.12);
}

.mobile-action-bar a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 14px;
  text-align: center;
  padding: 0.75rem 0.45rem;
  font-size: 0.9rem;
  font-weight: 800;
  background: var(--surface);
  border: 1px solid var(--border);
}

.mobile-action-bar a.primary {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36,49,41,0.12), transparent);
  margin: 1.8rem 0;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.notice {
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: rgba(202, 122, 71, 0.08);
  border: 1px solid rgba(202, 122, 71, 0.16);
  color: var(--text);
}

.notice strong {
  color: var(--accent-deep);
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero__grid,
  .split-section,
  .footer-grid,
  .card-grid-4,
  .inventory-grid,
  .card-grid-3,
  .value-grid,
  .contact-grid,
  .steps-grid,
  .text-columns {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-photo {
    min-height: 420px;
  }

  .photo-grid .gallery-card {
    grid-column: span 12 !important;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    background: rgba(252, 250, 245, 0.98);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 0.8rem;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 1rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .trust-grid,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .info-pill,
  .page-hero__panel,
  .hero-card,
  .feature-card__body,
  .category-card__body,
  .content-card__body,
  .contact-card__body,
  .step-card__body,
  .gallery-card__body,
  .hours-card__body,
  .map-card {
    padding-inline: 1rem;
  }

  .mobile-action-bar {
    display: grid;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .hero-photo {
    min-height: 360px;
  }

  h1 {
    letter-spacing: -0.04em;
  }

  .btn {
    width: 100%;
  }

  .btn-row {
    flex-direction: column;
  }

  .brand__tag {
    display: none;
  }
}
