:root {
  --ink: #252022;
  --muted: #74686d;
  --paper: #fffaf7;
  --surface: #ffffff;
  --blush: #ffe7e0;
  --rose: #e5484d;
  --rose-deep: #b82331;
  --teal: #2f9f9a;
  --gold: #b88938;
  --lavender: #eee9ff;
  --line: rgba(37, 32, 34, 0.12);
  --shadow: 0 20px 60px rgba(86, 47, 50, 0.14);
  --radius: 8px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

@media (display-mode: standalone) {
  html,
  body {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
}

html.is-standalone,
html.is-standalone body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html.is-standalone::-webkit-scrollbar,
html.is-standalone body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

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

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

button,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2000;
  transform: translateY(-180%);
  background: var(--ink);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  pointer-events: none;
}

.nav {
  width: min(calc(100% - 32px), var(--max));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 0.55rem 0.7rem 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(80, 41, 47, 0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
  pointer-events: auto;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 42px rgba(57, 30, 36, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: max-content;
}

.brand-mark {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.hero-logo,
.about-logo,
.contact-logo,
.section-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 1rem;
}


.brand-text {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--rose-deep);
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.45rem);
  flex: 1;
}

.nav-panel a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-panel a:hover {
  color: var(--rose-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: max-content;
}

.language-select,
.nav-call,
.install-btn {
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0 0.75rem;
  font-weight: 800;
  font-size: 0.82rem;
}

.install-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--rose-deep);
  background: #fff5f2;
  border-color: rgba(229, 72, 77, 0.22);
  cursor: pointer;
}

.install-btn.visible {
  display: inline-flex;
}

.install-btn:hover {
  border-color: var(--rose);
  background: #fff;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--rose-deep);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #4a2529;
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37, 22, 26, 0.82), rgba(86, 42, 47, 0.36) 54%, rgba(255, 240, 234, 0.28)),
    linear-gradient(0deg, rgba(37, 22, 26, 0.48), rgba(37, 22, 26, 0));
}

.hero-content {
  position: relative;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 9.5rem 0 6.5rem;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd5ca;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

.hero-copy {
  max-width: 610px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}

.button-primary {
  background: #fff;
  color: var(--rose-deep);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-info {
  position: absolute;
  right: max(20px, calc((100% - var(--max)) / 2));
  bottom: 3.5rem;
  z-index: 10;
  width: min(340px, calc(33.333% - 0.67rem));
  padding: 1.5rem;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 24px 90px rgba(37, 32, 34, 0.44);
}

.hero-info span {
  display: block;
  color: var(--rose-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.hero-info strong {
  display: block;
  color: var(--ink);
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.quick-strip {
  width: min(calc(100% - 40px), var(--max));
  margin: -32px auto 0;
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quick-strip a {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.quick-strip a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37, 32, 34, 0.08);
}

.quick-strip a strong::after,
.contact-list a strong::after {
  content: " \2197";
  font-size: 0.85em;
  opacity: 0.5;
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.quick-strip a:hover strong::after,
.contact-list a:hover strong::after {
  transform: translate(2px, -2px);
  opacity: 1;
  color: var(--rose);
}

.strip-label {
  display: block;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-strip strong {
  display: block;
  margin-top: 0.22rem;
  color: var(--ink);
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  overflow-wrap: anywhere;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.intro-section {
  padding-top: clamp(5.5rem, 9vw, 8rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.feature-copy h2,
.contact-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.8vw, 4.4rem);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  max-width: 620px;
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

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

.service-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  min-height: 460px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(80, 41, 47, 0.08);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card > div {
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
}

.service-number {
  margin: 0 0 0.5rem;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 0;
  font-size: 1.38rem;
}

.service-card p:not(.service-number) {
  color: var(--muted);
  margin: 0.75rem 0 1rem;
}

.text-button {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--rose);
  border-radius: 30px;
  background: transparent;
  color: var(--rose-deep);
  cursor: pointer;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.text-button:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(229, 72, 77, 0.25);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) max(20px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(90deg, #fff 0%, #fff6f2 52%, var(--blush) 100%);
}

.feature-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-image {
  height: min(660px, 76vh);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.feature-stats div {
  min-height: 110px;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.35rem;
}

.feature-stats strong {
  display: block;
  color: var(--rose-deep);
  font-size: 1.7rem;
  line-height: 1;
}

.feature-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-section {
  background: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(80, 41, 47, 0.08);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    z-index: 10;
  }
}

.gallery-grid img:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

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

.review-section {
  width: 100%;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  background: #f6fbfa;
}

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

.reviews-grid figure {
  margin: 0;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(47, 159, 154, 0.18);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .reviews-grid figure:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
  }
}

.reviews-grid figure::before {
  content: "\201C"; /* Left double quotation mark */
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--teal);
  opacity: 0.15;
  margin-bottom: 0.5rem;
}

.reviews-grid blockquote {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.33rem;
  line-height: 1.22;
}

.reviews-grid figcaption {
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  min-height: 720px;
  background: #fff;
}

.contact-visuals {
  padding: clamp(2rem, 5vw, 4rem);
  padding-right: clamp(1rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: center;
}

.contact-visuals img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(47, 159, 154, 0.18);
  box-shadow: 0 14px 34px rgba(80, 41, 47, 0.08);
  display: block;
}

.contact-visuals iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(47, 159, 154, 0.18);
  box-shadow: 0 14px 34px rgba(80, 41, 47, 0.08);
  display: block;
}

.contact-panel {
  padding: clamp(2rem, 5vw, 4rem);
  align-self: center;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.contact-list a,
.hours-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--paper);
}

.contact-list span {
  display: block;
  color: var(--rose);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.contact-list strong {
  display: block;
  margin-top: 0.15rem;
  overflow-wrap: anywhere;
}

.hours-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.hours-card dl {
  margin: 0;
}

.hours-card div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 0.42rem 0;
  border-top: 1px solid var(--line);
}

.hours-card dt {
  color: var(--muted);
  font-weight: 800;
}

.hours-card dd {
  margin: 0;
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 2rem max(20px, calc((100vw - var(--max)) / 2));
  color: var(--muted);
  background: var(--ink);
}

.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer strong {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.menu-modal {
  width: min(920px, calc(100% - 24px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.menu-modal::backdrop {
  background: rgba(37, 32, 34, 0.64);
  backdrop-filter: blur(5px);
}

.modal-inner {
  padding: 1rem;
}

.modal-inner h2 {
  margin: 0 4.5rem 0.85rem 0;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
  color: var(--ink);
}

.modal-content-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
  padding-top: 1rem;
  text-align: left;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  padding: 1.5rem;
  background: #fdfaf9;
  border-radius: var(--radius);
  border: 1px solid rgba(47, 159, 154, 0.08);
}

.menu-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(47, 159, 154, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(47, 159, 154, 0.3);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.menu-item-title {
  margin: 0;
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 800;
}

.menu-item-price {
  font-weight: 900;
  color: var(--rose-deep);
  background: var(--blush);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 1.05rem;
  margin-left: 1rem;
  white-space: nowrap;
}

.menu-item-desc {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 0 0.8rem;
  cursor: pointer;
  font-weight: 900;
}

.install-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(37, 32, 34, 0.64);
  backdrop-filter: blur(10px);
  cursor: pointer;
  overflow: auto;
}

.install-guide {
  width: min(430px, 100%);
  max-height: min(92vh, 780px);
  overflow: auto;
  padding: 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 90px rgba(37, 32, 34, 0.28);
  cursor: auto;
}

.install-guide h3 {
  margin: 0 0 0.65rem;
  color: var(--rose-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.install-guide-note {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
}

.install-steps {
  display: grid;
  gap: 0.65rem;
}

.install-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.install-step img {
  flex: 0 0 auto;
}

.install-step p {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.36;
}

.install-step strong {
  color: var(--rose-deep);
}

.install-sheet {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.install-close-copy {
  margin: 0.75rem 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
  }

  .nav-toggle {
    order: 2;
    display: inline-flex;
    flex: 0 0 44px;
    margin-left: auto;
  }

  .nav-panel {
    order: 4;
    grid-column: 1 / -1;
    flex-basis: 100%;
    display: none;
    align-items: stretch;
    padding: 0.35rem 0 0.2rem;
  }

  .nav-panel.is-open {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-panel a {
    padding: 0.7rem 0.75rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .nav-actions {
    order: 3;
    grid-column: 1 / -1;
    flex: 0 0 calc(100% - 20px);
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    width: calc(100% - 20px);
    min-width: 0;
    gap: 0.5rem;
    margin-left: 0;
    justify-content: start;
  }

  .language-select,
  .nav-call {
    width: 100%;
    min-width: 0;
  }

  .language-select {
    max-width: 260px;
  }

  .nav-call {
    display: none;
  }

  .install-btn {
    padding: 0;
    width: 42px;
  }

  .install-btn span {
    display: none;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .hero-info {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -5.5rem 20px 3.5rem auto;
  }

  .quick-strip {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-visuals {
    padding: 2.5rem 20px 0;
  }

  .feature-image {
    height: 560px;
  }

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

@media (max-width: 640px) {
  .nav {
    width: min(calc(100% - 28px), var(--max));
    margin-top: 10px;
    gap: 0.5rem;
  }

  .brand {
    order: 1;
    min-width: 0;
  }

  .brand-text {
    font-size: 1.1rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-actions {
    flex-basis: 100%;
    order: 5;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    width: calc(100% - 8px);
    min-width: 0;
    gap: 0.45rem;
  }

  .language-select {
    width: 100%;
    justify-content: center;
    min-width: 0;
    padding-inline: 0.5rem;
  }

  .nav-panel.is-open {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--max));
    padding-inline: 1rem;
    padding-bottom: 7rem;
  }

  h1 {
    max-width: 330px;
    font-size: clamp(2.05rem, 8.8vw, 2.45rem);
    line-height: 1.08;
    white-space: normal;
    text-wrap: wrap;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 1rem;
    text-wrap: wrap;
  }

  .hero-actions {
    display: grid;
    max-width: 330px;
  }

  .hero-info {
    width: calc(100% - 28px);
    margin-inline: auto;
  }

  .section,
  .quick-strip {
    width: min(calc(100% - 28px), var(--max));
  }

  .services-grid,
  .reviews-grid,
  .feature-stats {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-rows: 210px 1fr;
    min-height: auto;
  }

  .feature-band {
    padding-inline: 14px;
  }

  .feature-image {
    height: 460px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .contact-panel {
    padding: 2rem 14px;
  }

  .hours-card div {
    grid-template-columns: 1fr;
    gap: 0.05rem;
  }

  .footer {
    display: grid;
    justify-items: start;
  }
}

.gallery-modal {
  width: min(1000px, calc(100% - 24px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.gallery-modal::backdrop {
  background: rgba(20, 18, 19, 0.9);
  backdrop-filter: blur(5px);
}

.gallery-modal-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-inner img {
  width: 100%;
  max-height: calc(100vh - 28px);
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}

.gallery-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
}

.rolling-counter {
  display: flex;
  line-height: 1.2em;
  height: 1.2em;
  overflow: hidden;
}

.rolling-counter span {
  color: inherit;
  font-size: inherit;
}

.digit-container {
  display: inline-flex;
  flex-direction: column;
  height: 1.2em;
}

.digit-strip {
  display: flex;
  flex-direction: column;
  transition: transform 2.5s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(0);
}

.digit-strip span {
  height: 1.2em;
  line-height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
