:root {
  --cream: #fff6e8;
  --cream-2: #eadcc3;
  --forest: #123b28;
  --forest-2: #1e563a;
  --gold: #f4b321;
  --gold-2: #d89313;
  --coral: #c2410c;
  --ink: #0d0b08;
  --muted: #6f665c;
  --white: #ffffff;
  --wa: #25d366;

  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 42px;

  --shadow: 0 18px 48px rgba(13, 11, 8, 0.14);
  --shadow-lg: 0 34px 90px rgba(13, 11, 8, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  width: min(1220px, calc(100% - 28px));
  transform: translateX(-50%);
  transition: top 0.25s var(--ease);
}

.site-header.scrolled {
  top: 10px;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 9px 12px 9px 16px;
  border: 1px solid rgba(13, 11, 8, 0.08);
  border-radius: 999px;
  background: rgba(255, 246, 232, 0.92);
  box-shadow: 0 10px 38px rgba(13, 11, 8, 0.16);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 24px);
  font-weight: 700;
  white-space: nowrap;
}

.brand img {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 15px;
  border-radius: 999px;
  color: rgba(13, 11, 8, 0.66);
  font-size: 15px;
  font-weight: 700;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.nav-links a:hover,
.nav-links a.nav-active {
  background: rgba(18, 59, 40, 0.1);
  color: var(--forest);
}

.nav-links .nav-cta {
  margin-left: 4px;
  padding-inline: 26px;
  background: var(--forest);
  color: var(--white);
}

.nav-links .nav-cta:hover {
  background: var(--forest-2);
  color: var(--white);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--white);
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  background: var(--forest);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/facade-rv-alimentation.jpeg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 13, 0.92) 0%, rgba(11, 31, 19, 0.82) 43%, rgba(11, 31, 19, 0.42) 100%),
    linear-gradient(180deg, rgba(7, 20, 13, 0.38) 0%, rgba(7, 20, 13, 0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: inherit;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: end;
  padding: 150px 0 72px;
}

.hero-copy {
  max-width: 820px;
}

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.label-tag::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.label-tag.light {
  color: rgba(255, 255, 255, 0.78);
}

.label-tag.gold {
  color: var(--gold);
}

.label-tag.coral {
  color: var(--coral);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
}

h1 {
  max-width: 860px;
  color: var(--white);
  font-size: clamp(52px, 7.5vw, 112px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.88;
  text-wrap: balance;
}

h1 em {
  color: var(--gold);
  font-style: italic;
}

h2 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.05;
}

h4 {
  font-size: 18px;
}

.lead {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 25px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    background 0.22s var(--ease),
    color 0.22s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: #ffc32c;
  box-shadow: 0 12px 32px rgba(244, 179, 33, 0.34);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-forest {
  background: var(--forest);
  color: var(--white);
}

.btn-forest:hover {
  background: var(--forest-2);
  box-shadow: 0 12px 32px rgba(18, 59, 40, 0.26);
}

.btn-soft {
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 12px 30px rgba(13, 11, 8, 0.08);
}

.btn-soft:hover {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(13, 11, 8, 0.12);
}

.btn-wa {
  background: var(--wa);
  color: #052e12;
}

.btn-wa:hover {
  background: #31e876;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.34);
}

.full-w {
  width: 100%;
}

.hero-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 246, 232, 0.94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.13);
  color: #0f6b33;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel h2 {
  color: var(--forest);
  font-size: clamp(31px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.hero-panel p:not(.panel-kicker) {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.ticker {
  overflow: hidden;
  background: var(--forest);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.ticker-track span {
  position: relative;
  padding: 15px 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.ticker-track span::after {
  content: "·";
  position: absolute;
  right: -4px;
  color: var(--gold);
}

@keyframes ticker {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.intro-left h2 {
  max-width: 560px;
  margin-bottom: 34px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-card {
  padding: 24px 18px;
  border-radius: var(--radius-sm);
  background: var(--forest);
  color: var(--white);
}

.stat-num {
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.stat-num sup,
.stat-num sub {
  font-size: 17px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.45;
}

.intro-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.big-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.82;
}

.hours-card {
  width: 100%;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #e8f5ee;
  color: #1a5e38;
  font-size: 12px;
  font-weight: 900;
}

.open-badge.closed {
  background: #fdecea;
  color: #7d2218;
}

.open-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wa);
  animation: pulse 2s ease-in-out infinite;
}

.open-badge.closed .open-dot {
  background: #d94040;
  animation: none;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.82);
  }
}

.hours-list {
  display: grid;
  gap: 12px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14.5px;
}

.hours-list strong {
  color: var(--ink);
  white-space: nowrap;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.apercu {
  padding-top: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 179, 33, 0.2), transparent 28%),
    radial-gradient(circle at 90% 40%, rgba(194, 65, 12, 0.12), transparent 26%),
    var(--cream);
}

.section-head {
  margin-bottom: 48px;
}

.section-head h2 {
  max-width: 840px;
}

.section-subtitle {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.apercu-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74));
  box-shadow: var(--shadow);
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    background 0.28s var(--ease);
}

.apercu-card::before {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(244, 179, 33, 0.18);
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease);
}

.apercu-card:nth-child(2)::before {
  background: rgba(18, 59, 40, 0.13);
}

.apercu-card:nth-child(3)::before {
  background: rgba(194, 65, 12, 0.13);
}

.apercu-card:nth-child(4)::before {
  background: rgba(37, 211, 102, 0.12);
}

.apercu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(13, 11, 8, 0.18);
}

.apercu-card:hover::before {
  transform: scale(1.22);
}

.apercu-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.apercu-card h3,
.apercu-card p {
  position: relative;
  z-index: 1;
}

.apercu-card h3 {
  max-width: 240px;
  color: var(--forest);
  font-size: clamp(24px, 2.4vw, 34px);
}

.apercu-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.apercu-note {
  margin-top: 18px;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: var(--forest);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.apercu-note p {
  max-width: 920px;
  font-size: 16px;
  line-height: 1.75;
}

.products {
  padding-top: 0;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.card-a {
  grid-column: 1 / 8;
  height: 470px;
}

.card-b {
  grid-column: 8 / 13;
  height: 470px;
}

.card-c {
  grid-column: 1 / 6;
  height: 410px;
}

.card-d {
  grid-column: 6 / 13;
  height: 410px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: translateZ(0);
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transition:
    transform 0.8s var(--ease),
    opacity 0.8s var(--ease);
}

.bento-card:hover img {
  transform: scale(1.05);
  opacity: 0.68;
}

.bento-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.1) 62%, transparent);
}

.bento-body span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.bento-body h3 {
  color: var(--white);
}

.bento-body p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.92fr 1fr;
  gap: 16px;
  align-items: end;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-2);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item:nth-child(2) img {
  height: 580px;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.reviews {
  padding-top: 0;
  background: var(--cream);
}

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

.review-card {
  position: relative;
  min-height: 240px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(244, 179, 33, 0.2), transparent 34%),
    var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 28px;
  color: rgba(244, 179, 33, 0.24);
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
}

.review-card p {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.55;
}

.visit {
  background: #0d0b08;
}

.visit-head {
  margin-bottom: 52px;
}

.visit-head h2 {
  color: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.38fr;
  gap: 20px;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.info-label {
  margin-bottom: 6px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-value {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15.5px;
}

.info-value a:hover {
  color: var(--gold);
}

.visit-map {
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.suggestion {
  padding-top: 0;
  background: #0d0b08;
}

.suggestion-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(244, 179, 33, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.suggestion-content h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 58px);
}

.suggestion-content p:not(.label-tag) {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.suggestion-action {
  display: flex;
  justify-content: flex-end;
}

.seo-text {
  padding-top: 0;
  background: #0d0b08;
}

.seo-card {
  padding: 28px 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.seo-card p {
  max-width: 980px;
  font-size: 15px;
  line-height: 1.8;
}

.footer {
  padding: 68px 0 30px;
  background: #070604;
  color: rgba(255, 255, 255, 0.58);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.85fr 0.85fr 1.45fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 16px;
  object-fit: cover;
}

.footer h4 {
  margin-bottom: 14px;
  color: var(--white);
}

.footer p,
.footer address {
  font-size: 13.5px;
  font-style: normal;
  line-height: 1.85;
}

.footer p + p {
  margin-top: 10px;
}

.footer a:hover {
  color: var(--white);
}

.footer strong {
  color: rgba(255, 255, 255, 0.78);
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--wa);
  color: #052e12;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
  font-size: 14px;
  font-weight: 900;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}

.floating-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(37, 211, 102, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

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

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

  .card-a,
  .card-d {
    grid-column: 1 / 3;
    height: 390px;
  }

  .card-b,
  .card-c {
    grid-column: auto;
    height: 320px;
  }

  .visit-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item:last-child {
    grid-column: 1 / 3;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(13, 11, 8, 0.08);
    border-radius: 24px;
    background: rgba(255, 246, 232, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 18px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    height: auto;
  }

  .hero-inner {
    padding: 138px 0 56px;
  }

  .section {
    padding: 78px 0;
  }

  .apercu,
  .products,
  .reviews,
  .suggestion,
  .seo-text {
    padding-top: 0;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item img,
  .gallery-item:nth-child(2) img {
    height: 360px;
  }

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

  .suggestion-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .suggestion-action {
    justify-content: flex-start;
  }

  .suggestion-action .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .site-header {
    width: min(100% - 18px, 1220px);
    top: 9px;
  }

  .header-inner {
    min-height: 60px;
    padding: 7px 8px 7px 10px;
  }

  .brand span {
    max-width: 190px;
    overflow: hidden;
    font-size: 17px;
    text-overflow: ellipsis;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 76px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 54px);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 24px;
  }

  .intro-actions,
  .intro-actions .btn {
    width: 100%;
  }

  .stats-row,
  .apercu-grid,
  .bento,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .apercu-card {
    min-height: auto;
  }

  .card-a,
  .card-b,
  .card-c,
  .card-d,
  .gallery-item:last-child {
    grid-column: auto;
  }

  .card-a,
  .card-b,
  .card-c,
  .card-d {
    height: 295px;
  }

  .gallery-item img,
  .gallery-item:nth-child(2) img {
    height: 300px;
  }

  .hours-list li {
    flex-direction: column;
    gap: 2px;
  }

  .review-card {
    min-height: auto;
    padding: 30px;
  }

  .review-card p {
    font-size: 18px;
  }

  .visit-info {
    padding: 26px;
  }

  .visit-map,
  .visit-map iframe {
    min-height: 380px;
  }

  .seo-card {
    padding: 24px;
  }

  .copyright {
    flex-direction: column;
    text-align: center;
  }
}