/* ==========================================================================
   Мебель Подмосковья — "Warm Ivory" Design System
   Premium Kitchen Website Prototype
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Backgrounds */
  --bg-primary: #faf8f5;
  --bg-secondary: #f5f0eb;
  --bg-tertiary: #fffdf9;
  --bg-warm: #f0ebe3;
  --bg-footer: #2a2a2a;

  /* Text */
  --text-primary: #1a1a1a;
  --text-secondary: #2a2a2a;
  --text-muted: #6b6b6b;
  --text-light: #999;
  --text-on-dark: #faf8f5;

  /* Accents */
  --accent: #8b7355;
  --accent-light: #a68b6b;
  --accent-warm: #c4a882;
  --accent-hover: #7a6548;

  /* Borders */
  --border-light: rgba(138, 115, 85, 0.15);
  --border-medium: rgba(138, 115, 85, 0.25);
  --border-dark: rgba(26, 26, 26, 0.1);

  /* Overlays */
  --overlay-warm: rgba(250, 248, 245, 0.75);
  --overlay-warm-strong: rgba(250, 248, 245, 0.85);

  /* Spacing */
  --section-pad-desktop: 120px;
  --section-pad-mobile: 60px;
  --container-max: 1340px;
  --container-narrow: 960px;

  /* Typography */
  --font-heading: 'Geologica', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--accent);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  border-radius: 0;
}

ul, ol {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 200;
}

h2 {
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 300;
}

h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
}

h4 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.text-accent {
  color: var(--accent);
}

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

.lead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.8;
  color: var(--text-muted);
}

.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 18px 42px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  line-height: 1;
}

.btn--primary {
  background-color: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background-color: var(--accent-hover);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--text-secondary);
}

.btn--outline:hover {
  background: var(--text-secondary);
  color: var(--bg-primary);
}

.btn--outline-light {
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.btn--large {
  padding: 22px 56px;
  font-size: 16px;
}

/* ---------- Desktop Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition-base);
}

.site-header__logo {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.site-header__logo span {
  font-weight: 200;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-header__nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  transition: color var(--transition-base);
  position: relative;
}

.site-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.site-header__nav a:hover,
.site-header__nav a.active {
  color: var(--text-primary);
}

.site-header__nav a:hover::after,
.site-header__nav a.active::after {
  width: 100%;
}

.site-header__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* ---------- Mobile Bottom Tabs ---------- */
.mobile-tabs {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 0;
}

.mobile-tabs__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.mobile-tabs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-muted);
  transition: color var(--transition-base);
  padding: 8px 12px;
  -webkit-tap-highlight-color: transparent;
}

.mobile-tabs__item svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
  fill: none;
  stroke: currentColor;
}

.mobile-tabs__item span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.mobile-tabs__item.active,
.mobile-tabs__item:hover {
  color: var(--accent);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero--short {
  height: 70vh;
  min-height: 500px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-warm);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero__content h1 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero__content .lead {
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Section Spacing ---------- */
.section {
  padding: var(--section-pad-desktop) 0;
}

.section--bg-secondary {
  background: var(--bg-secondary);
}

.section--bg-tertiary {
  background: var(--bg-tertiary);
}

.section--bg-warm {
  background: var(--bg-warm);
}

.section--dark {
  background: var(--bg-footer);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-on-dark);
}

.section__header {
  text-align: center;
  margin-bottom: 80px;
}

.section__header h2 {
  margin-bottom: 20px;
}

/* ---------- Full Bleed Image ---------- */
.full-bleed {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.full-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Numbers / Stats ---------- */
.stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: center;
}

.stats__item {
  flex: 0 0 auto;
}

.stats__number {
  font-family: var(--font-heading);
  font-weight: 200;
  font-size: clamp(56px, 7vw, 120px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  display: block;
}

.stats__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ---------- Values Grid (2x2) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-light);
}

.values-grid__item {
  padding: 60px 48px;
  border: 1px solid var(--border-light);
  margin: -1px 0 0 -1px;
}

.values-grid__item h4 {
  margin-bottom: 16px;
}

.values-grid__item p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.values-grid__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: var(--accent);
}

.values-grid__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

/* ---------- Process Steps ---------- */
.process {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 0;
}

.process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: var(--border-medium);
}

.process__step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.process__number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--bg-primary);
  border: 1px solid var(--accent);
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 20px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.process__step h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.process__step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Alternating Content ---------- */
.alt-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 500px;
}

.alt-block--reverse .alt-block__image {
  order: 2;
}

.alt-block--reverse .alt-block__text {
  order: 1;
}

.alt-block__image {
  overflow: hidden;
}

.alt-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.alt-block:hover .alt-block__image img {
  transform: scale(1.03);
}

.alt-block__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: var(--bg-primary);
}

.alt-block--reverse .alt-block__text {
  background: var(--bg-secondary);
}

.alt-block__text h3 {
  margin-bottom: 20px;
}

.alt-block__text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* ---------- Product Cards ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
}

.product-card {
  border: 1px solid var(--border-light);
  margin: -1px 0 0 -1px;
  overflow: hidden;
}

.product-card__image {
  height: 300px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__body {
  padding: 36px 32px;
}

.product-card__body h4 {
  margin-bottom: 12px;
  font-size: 22px;
}

.product-card__body p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ---------- Benefits Row ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.benefit {
  padding: 56px 40px;
  border-right: 1px solid var(--border-light);
  text-align: center;
}

.benefit:last-child {
  border-right: none;
}

.benefit__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--accent);
}

.benefit__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

.benefit h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.benefit p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ---------- Masonry Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-grid__item {
  overflow: hidden;
  height: 400px;
}

.gallery-grid__item--tall {
  grid-row: span 2;
  height: 804px;
}

.gallery-grid__item--wide {
  grid-column: span 2;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* ---------- B2B Capacity ---------- */
.capacity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
}

.capacity-item {
  padding: 48px 40px;
  border: 1px solid var(--border-light);
  margin: -1px 0 0 -1px;
}

.capacity-item__number {
  font-family: var(--font-heading);
  font-weight: 200;
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}

.capacity-item h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.capacity-item p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ---------- B2B Benefits ---------- */
.b2b-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.b2b-benefit h3 {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 200;
  margin-bottom: 16px;
  line-height: 1.2;
}

.b2b-benefit p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* ---------- Forms ---------- */
.form {
  width: 100%;
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border-medium);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  transition: border-color var(--transition-base);
  border-radius: 0;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--accent);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.form__checkbox span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form--dark .form__input,
.form--dark .form__textarea {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  color: var(--text-on-dark);
}

.form--dark .form__input:focus,
.form--dark .form__textarea:focus {
  border-color: var(--accent-warm);
}

.form--dark .form__label {
  color: rgba(255,255,255,0.5);
}

.form--dark .form__checkbox span {
  color: rgba(255,255,255,0.5);
}

/* ---------- Contact Layout ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info__item {
  margin-bottom: 36px;
}

.contact-info__item h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-info__item p,
.contact-info__item a {
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.7;
}

.contact-info__item a:hover {
  color: var(--accent);
}

.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.contact-socials a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-medium);
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.contact-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-socials a svg {
  width: 20px;
  height: 20px;
}

/* ---------- Map Placeholder ---------- */
.map-placeholder {
  width: 100%;
  height: 480px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 1.2;
}

.map-placeholder p {
  font-size: 16px;
  color: var(--text-muted);
}

.map-placeholder span {
  font-size: 13px;
  color: var(--text-light);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-footer);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  display: block;
}

.footer-col a:hover {
  color: var(--accent-warm);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-brand span {
  font-weight: 200;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-base);
}

.footer-socials a:hover {
  border-color: var(--accent-warm);
  color: var(--accent-warm);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ---------- CTA Section ---------- */
.cta-section {
  text-align: center;
  padding: var(--section-pad-desktop) 0;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section .lead {
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

/* ---------- Philosophy ---------- */
.philosophy {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy h2 {
  margin-bottom: 40px;
}

.philosophy p {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.9;
  color: var(--text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .stats {
    gap: 40px;
  }

  .alt-block__text {
    padding: 48px 40px;
  }

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

  .b2b-benefits {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    padding-bottom: 64px;
  }

  .site-header {
    display: none;
  }

  .mobile-tabs {
    display: block;
  }

  .section {
    padding: var(--section-pad-mobile) 0;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    min-height: 500px;
  }

  .hero__content {
    padding: 0 24px;
  }

  .hero__content .lead {
    font-size: 16px;
  }

  .stats {
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }

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

  .values-grid__item {
    padding: 40px 28px;
  }

  .process {
    flex-direction: column;
    gap: 32px;
  }

  .process::before {
    top: 28px;
    bottom: 28px;
    left: 28px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .process__step {
    text-align: left;
    display: flex;
    gap: 20px;
    padding: 0;
  }

  .process__number {
    margin: 0;
    flex-shrink: 0;
  }

  .process__step-text {
    text-align: left;
  }

  .alt-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .alt-block__image {
    height: 300px;
    order: 0 !important;
  }

  .alt-block__text {
    padding: 40px 24px;
    order: 1 !important;
  }

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

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

  .benefit {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .benefit:last-child {
    border-bottom: none;
  }

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

  .gallery-grid__item {
    height: 220px;
  }

  .gallery-grid__item--tall {
    height: 220px;
    grid-row: span 1;
  }

  .gallery-grid__item--wide {
    grid-column: span 1;
  }

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

  .b2b-benefits {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section__header {
    margin-bottom: 48px;
  }

  .map-placeholder {
    height: 300px;
  }

  .cta-section {
    padding: var(--section-pad-mobile) 0;
  }

  .full-bleed {
    height: 40vh;
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .btn {
    width: 100%;
    padding: 16px 32px;
  }

  .btn--large {
    padding: 18px 40px;
  }

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

  .gallery-grid__item {
    height: 280px;
  }
}
