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

:root {
  --bg: #e8e4de;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-dark: #1f2328;
  --ink: #121417;
  --muted: #5d646d;
  --line: rgba(18, 20, 23, 0.1);
  --accent: #ef4f2f;
  --accent-dark: #c83c21;
  --accent-soft: rgba(239, 79, 47, 0.12);
  --shadow: 0 24px 60px rgba(17, 19, 23, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1044px;
  --header-height: 90px;
  --anchor-offset: var(--header-height);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

#prices,
#what,
#contacts,
#programs,
#wash,
#drying {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(239, 79, 47, 0.16), transparent 25%),
    linear-gradient(180deg, #f4f1ec 0%, var(--bg) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 20, 23, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 20, 23, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.28;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 85%);
}

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

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

.site-shell {
  position: relative;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 241, 236, 0.8);
  border-bottom: 1px solid rgba(18, 20, 23, 0.08);
}

.site-header-subpage {
  background: rgba(244, 241, 236, 0.88);
}

.header-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(239, 79, 47, 0.18);
}

.brand-title,
h1,
h2,
h3,
.price-value,
.button,
.lang-button,
.step-number {
  font-family: "Archivo", "Segoe UI", sans-serif;
}

.brand-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.mobile-menu-toggle {
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(18, 20, 23, 0.08);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--ink);
  font-family: "Archivo", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(18, 20, 23, 0.08);
}

.mobile-menu-toggle-icon {
  position: relative;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu-toggle-icon::before,
.mobile-menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu-toggle-icon::before {
  top: -5px;
}

.mobile-menu-toggle-icon::after {
  top: 5px;
}

.mobile-menu-panel {
  padding-bottom: 12px;
}

.mobile-menu-nav {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(18, 20, 23, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(18, 20, 23, 0.08);
}

.mobile-menu-nav a {
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(18, 20, 23, 0.04);
}

.lang-switch {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(18, 20, 23, 0.05);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.lang-button.is-active {
  background: var(--surface-strong);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(18, 20, 23, 0.08);
}

.hero {
  padding: 44px 0 32px;
}

.hero-subpage {
  padding-top: 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.guide-hero-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(18, 20, 23, 0.05);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.45rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 18px 0 18px;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 14px 0;
  max-width: 18ch;
}

#what h2 {
  max-width: 14ch;
}

#reviews h2,
.section-gallery h2 {
  max-width: 22ch;
}

#prices h2 {
  max-width: none;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.hero-lead,
.section-heading p,
.spotlight-card p,
.usage-card p,
.review-card p,
.detail-card span,
.summary-card p,
.price-card p,
.step-card p,
.tips-list li,
.final-cta p {
  color: var(--muted);
}

.hero-lead {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 58ch;
  margin: 0 0 24px;
}

.hero-cta,
.section-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #ff7b32 100%);
  box-shadow: 0 18px 36px rgba(239, 79, 47, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #ff6b29 100%);
}

.button-secondary {
  color: var(--ink);
  background: var(--surface-strong);
  border-color: rgba(18, 20, 23, 0.08);
  box-shadow: 0 14px 32px rgba(18, 20, 23, 0.08);
}

.button-ghost {
  border-color: rgba(18, 20, 23, 0.16);
  color: var(--ink);
  background: transparent;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.fact-card,
.spotlight-card,
.price-card,
.usage-card,
.review-card,
.detail-card,
.summary-card,
.step-card,
.guide-panel,
.program-card,
.map-card,
.gallery-card,
.guide-visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.fact-card {
  min-height: 74px;
  padding: 12px 16px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-color: rgba(18, 20, 23, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    var(--surface);
  box-shadow: 0 16px 34px rgba(18, 20, 23, 0.09);
}

.fact-card::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #ff8a47);
}

.fact-card-detergent {
  border-color: rgba(239, 79, 47, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 245, 240, 0.98), rgba(255, 255, 255, 0.88)),
    var(--surface);
  box-shadow: 0 18px 38px rgba(239, 79, 47, 0.14);
}

.fact-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: 0;
  margin-top: 0;
  color: var(--ink);
  font-weight: 800;
}

.fact-label {
  display: block;
  font-size: 0.72rem;
  line-height: 1.2;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fact-note {
  display: none;
}

.fact-card-single {
  display: block;
}

.fact-card-single strong {
  margin-top: 6px;
  font-size: 0.96rem;
  line-height: 1.18;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-visual {
  height: auto;
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
}


.visual-frame {
  position: relative;
  min-height: 420px;
  padding: 10px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(31, 35, 40, 0.08), rgba(31, 35, 40, 0.02));
  box-shadow: var(--shadow);
}

.visual-frame::after {
  content: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
}

.visual-badge {
  position: relative;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(18, 20, 23, 0.84);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 36px rgba(18, 20, 23, 0.16);
}

.visual-badge span,
.spotlight-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
  margin-bottom: 6px;
}

.visual-badge strong {
  font-size: 0.82rem;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.03em;
}

.spotlight-card {
  padding: 24px;
}

.spotlight-card h2 {
  max-width: 12ch;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.check-list,
.tips-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li,
.tips-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.55;
}

.check-list li::before,
.tips-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 0.5em;
  flex: none;
  background: linear-gradient(135deg, var(--accent), #ff8a47);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.section {
  padding: 32px 0;
}

.section-alt {
  padding-top: 48px;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading p {
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 58ch;
  margin: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.review-grid,
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-grid,
.guide-note-grid {
  display: grid;
  gap: 18px;
}

.program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.guide-note-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  padding: 20px;
  min-height: 180px;
}

.price-card-highlight {
  background:
    linear-gradient(180deg, rgba(239, 79, 47, 0.14), rgba(255, 255, 255, 0.92)),
    var(--surface);
}

.price-kind {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-value {
  margin: 12px 0;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.two-column-section,
.location-grid,
.guide-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: start;
}

.location-grid {
  grid-template-columns: minmax(500px, 0.8fr) minmax(0, 1.5fr);
  gap: 16px;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-link {
  color: inherit;
}

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

.usage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.occupancy-section {
  padding-top: 42px;
  padding-bottom: 40px;
}

.occupancy-section > .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  align-items: start;
}

.occupancy-heading {
  grid-column: 1;
  grid-row: 1;
  max-width: 560px;
  margin-bottom: 0;
  padding-top: 6px;
}

.occupancy-grid {
  display: contents;
}

.occupancy-chart {
  display: grid;
  place-items: center;
  margin: 0;
  overflow: visible;
  border: 1px solid rgba(18, 20, 23, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(17, 19, 23, 0.09);
}

.occupancy-chart-wide {
  grid-column: 2;
  grid-row: 1;
}

.occupancy-chart img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.occupancy-chart:not(.occupancy-chart-wide) {
  grid-row: 2;
  min-height: 0;
}

.occupancy-chart:not(.occupancy-chart-wide):nth-of-type(2) {
  grid-column: 1;
}

.occupancy-chart:not(.occupancy-chart-wide):nth-of-type(3) {
  grid-column: 2;
}

.occupancy-chart:not(.occupancy-chart-wide) img {
  aspect-ratio: 5 / 3;
  object-fit: contain;
}

.usage-card,
.review-card,
.detail-card,
.summary-card,
.step-card,
.guide-panel,
.program-card {
  padding: 24px;
}

.program-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.program-label {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-family: "Archivo", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.program-meta {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

.review-card {
  padding: 20px;
  min-height: 210px;
}

.detail-card {
  padding: 20px;
  min-height: 150px;
}

.compact-contact-grid {
  grid-template-columns: minmax(210px, 0.9fr) minmax(280px, 1.1fr);
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 4px;
}

.compact-detail-card {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px 20px;
  min-height: 104px;
}

.compact-detail-card span {
  margin-bottom: 6px;
  font-size: 0.72rem;
}

.compact-detail-card strong {
  font-size: 0.92rem;
  line-height: 1.2;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.compact-detail-card strong[data-i18n="contactEmailValue"] {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  overflow-wrap: normal;
  white-space: nowrap;
}

.location-title-street,
.location-title-city {
  display: inline;
}

.location-title-separator {
  display: inline;
}

.contact-call-card {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 4px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-call-card span {
  margin-bottom: 2px;
}

.contact-call-card strong {
  font-size: 1.05rem;
}

.contact-call-card small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.25;
}

.contact-call-card:hover,
.contact-call-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(239, 79, 47, 0.25);
  background: linear-gradient(180deg, rgba(239, 79, 47, 0.08), rgba(255, 255, 255, 0.92));
}

.review-stars {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 18px;
}

.review-card strong {
  display: inline-block;
  margin-top: 16px;
}

#reviews .section-actions {
  margin-top: 10px;
}

#location .section-actions {
  margin-top: 14px;
}

.gallery-shell {
  display: grid;
  gap: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.gallery-card {
  min-height: 240px;
}

.gallery-card img,
.guide-visual-card img,
.map-card img,
.map-card iframe,
.guide-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-card iframe {
  border: 0;
  display: block;
  position: absolute;
  inset: 0;
}

.gallery-card-large {
  grid-row: span 2;
  min-height: 500px;
}

.map-card {
  margin: 0;
  min-height: 440px;
}

.detail-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-card span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.detail-card strong,
.summary-card strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.guide-visual-card {
  min-height: 360px;
}

.step-card {
  min-height: 240px;
}

body[data-page="guide"] main .section .eyebrow {
  display: none;
}

body[data-page="home"] main .section .eyebrow {
  display: none;
}

body[data-page="home"] .hero .eyebrow,
body[data-page="guide"] .hero .eyebrow {
  display: none;
}

body[data-page="home"] .hero h1,
body[data-page="guide"] .hero h1 {
  margin-top: 0;
}

body[data-page="home"] main .section .section-heading,
body[data-page="guide"] main .section .section-heading {
  margin-bottom: 18px;
}

body[data-page="home"] main .section .section-heading h2,
body[data-page="guide"] main .section .section-heading h2 {
  margin-top: 0;
}

body[data-page="guide"] #programs h2 {
  max-width: none;
}

body[data-page="guide"] .step-card {
  min-height: 180px;
  padding: 18px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.summary-grid {
  margin-bottom: 18px;
}

.summary-card {
  min-height: 150px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(18, 20, 23, 0.98), rgba(46, 53, 60, 0.9)),
    var(--surface-dark);
  color: #fff;
  box-shadow: 0 28px 54px rgba(18, 20, 23, 0.22);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.7);
}

.final-cta h2 {
  max-width: 22ch;
}

.site-footer {
  padding: 32px 0 100px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 20, 23, 0.08);
}

.footer-right {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 22px;
  color: var(--muted);
}

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

.footer-socials a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-icon-facebook {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 30;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(18, 20, 23, 0.92);
  box-shadow: 0 22px 40px rgba(18, 20, 23, 0.22);
}

.mobile-cta a {
  flex: 1;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-family: "Archivo", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-cta a:first-child {
  background: linear-gradient(135deg, var(--accent) 0%, #ff7b32 100%);
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-column-section,
  .location-grid,
  .guide-content-grid,
  .final-cta,
  .price-grid,
  .review-grid,
  .program-grid,
  .guide-note-grid,
  .summary-grid,
  .guide-gallery,
  .usage-grid,
  .occupancy-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    gap: 28px;
  }

  .occupancy-section > .container {
    grid-template-columns: 1fr;
  }

  .occupancy-heading {
    max-width: 720px;
  }

  .occupancy-chart-wide,
  .occupancy-chart:not(.occupancy-chart-wide),
  .occupancy-chart:not(.occupancy-chart-wide):nth-of-type(2),
  .occupancy-chart:not(.occupancy-chart-wide):nth-of-type(3) {
    grid-column: 1;
    grid-row: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 247px;
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  #location .location-copy {
    display: grid;
    justify-items: center;
  }

  #location .compact-contact-grid {
    width: min(100%, 372px);
  }

  #location .compact-detail-card {
    display: grid;
    place-items: center;
    text-align: center;
  }

  #location .section-actions {
    justify-content: center;
    width: 100%;
  }

  .gallery-card-large {
    grid-row: auto;
    min-height: 320px;
  }

  .detail-grid,
  .steps-grid,
  .fact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav {
    display: none;
  }

  .footer-right {
    width: 100%;
    justify-items: start;
  }

  .footer-socials,
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  html,
  body,
  .site-shell {
    max-width: 100%;
    overflow-x: hidden;
  }

  :root {
    --header-height: 72px;
    --anchor-offset: var(--header-height);
  }

  html {
    scroll-padding-top: var(--anchor-offset);
  }

  body {
    background:
      radial-gradient(circle at top right, rgba(239, 79, 47, 0.18), transparent 35%),
      linear-gradient(180deg, #f4f1ec 0%, var(--bg) 100%);
  }

  body::before {
    opacity: 0.18;
  }

  .container {
    width: min(100% - 20px, var(--container));
  }

  .site-header {
    background: rgba(244, 241, 236, 0.94);
  }

  .header-row {
    min-height: auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    justify-self: start;
    padding: 0 12px;
    min-height: 40px;
    font-size: 0.78rem;
  }

  .mobile-menu-panel.is-open {
    display: block;
  }

  .brand {
    gap: 10px;
    justify-self: center;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-title {
    font-size: 0.88rem;
  }

  .brand-subtitle {
    display: none;
  }

  .header-actions {
    width: auto;
    gap: 8px;
    justify-content: flex-end;
  }

  .lang-switch {
    margin-left: auto;
    gap: 2px;
    padding: 4px;
    max-width: 100%;
  }

  .lang-button {
    min-width: 34px;
    padding: 6px 9px;
    font-size: 0.74rem;
  }

  h1 {
    font-size: clamp(2.35rem, 10.6vw, 3.15rem);
    line-height: 0.92;
    max-width: 10.5ch;
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
    max-width: 11ch;
  }

  #location .location-copy h2 {
    max-width: 20ch;
    text-align: center;
  }

  #location .location-title-street,
  #location .location-title-city {
    display: block;
  }

  #location .location-title-separator {
    display: none;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 20px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-lead {
    font-size: 0.92rem;
    line-height: 1.45;
    margin-bottom: 12px;
    max-width: none;
    text-align: left;
  }

  .hero-lead,
  .section-heading p,
  .price-card p,
  .usage-card p,
  .review-card p,
  .fact-card strong,
  .visual-badge strong,
  .detail-card strong {
    overflow-wrap: anywhere;
  }

  .hero-cta {
    display: none;
  }

  .hero,
  .section,
  .section-alt {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .detail-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .fact-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 8px;
  }

  .fact-card {
    min-height: 68px;
    padding: 8px 7px;
    border-radius: 14px;
    gap: 4px;
  }

  .fact-card::before {
    width: 24px;
    height: 3px;
  }

  .fact-label {
    font-size: 0.58rem;
    line-height: 1.12;
  }

  .fact-card strong {
    font-size: 0.72rem;
    line-height: 1.12;
    margin-top: 0;
  }

  .fact-note {
    display: none;
  }

  .fact-card-single strong {
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .price-card,
  .review-card,
  .usage-card,
  .detail-card,
  .summary-card,
  .step-card,
  .guide-panel,
  .program-card,
  .spotlight-card {
    padding: 20px;
  }

  .price-card {
    padding: 16px;
    min-height: 138px;
  }

  .price-value {
    margin: 10px 0 8px;
    font-size: 1.55rem;
  }

  .price-kind {
    font-size: 0.74rem;
  }

  .price-card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .visual-frame {
    padding: 4px;
    border-radius: 24px;
  }

  .visual-frame::after {
    content: none;
  }

  .visual-badge {
    padding: 8px 10px;
  }

  .visual-badge strong {
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .hero-image {
    aspect-ratio: 5 / 4;
  }

  .spotlight-card {
    display: none;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .guide-visual-card {
    min-height: 0;
  }

  .guide-visual-card img {
    height: auto;
    object-fit: contain;
  }

  .map-card {
    min-height: 195px;
  }

  .site-footer {
    padding-bottom: 110px;
  }

  .mobile-cta {
    display: flex;
  }

  .mobile-cta a {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual,
  .section,
  .final-cta {
    animation: rise-in 700ms ease both;
  }

  .hero-visual {
    animation-delay: 120ms;
  }

  .section:nth-of-type(2) {
    animation-delay: 120ms;
  }

  .section:nth-of-type(3) {
    animation-delay: 180ms;
  }

  .section:nth-of-type(4) {
    animation-delay: 240ms;
  }
}

@media (max-width: 720px) {
  .hero-copy,
  .hero-visual,
  .section,
  .final-cta {
    animation: none;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
