:root {
  --ink: #241713;
  --muted: #725b50;
  --cream: #fff6ea;
  --paper: #fffbf4;
  --red: #b90f19;
  --red-dark: #760812;
  --saffron: #e7a02d;
  --leaf: #627a45;
  --line: rgba(36, 23, 19, 0.12);
  --shadow: 0 24px 70px rgba(93, 24, 16, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff8ec 0%, #fffdf8 42%, #f7f0e6 100%);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 34px rgba(67, 26, 18, 0.1);
  transform: translateX(-50%);
  transition: box-shadow 180ms ease, background 180ms ease, top 180ms ease;
}

.site-header.is-scrolled {
  top: 8px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 12px 26px rgba(67, 26, 18, 0.14);
}

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

.brand-logo {
  width: 88px;
  height: 42px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

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

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #5d463d;
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--red-dark);
  background: rgba(185, 15, 25, 0.08);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  cursor: pointer;
}

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

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  margin: 0;
  padding: 120px max(24px, calc((100vw - 1120px) / 2)) 46px;
  overflow: hidden;
  color: #fff;
  background: #34130c url("images/hero-landscape.jpg") center / cover no-repeat;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(32, 12, 7, 0.86) 0%, rgba(32, 12, 7, 0.64) 38%, rgba(32, 12, 7, 0.22) 72%),
    linear-gradient(0deg, rgba(32, 12, 7, 0.66), rgba(32, 12, 7, 0.08) 42%);
}

.hero::after {
  z-index: 1;
  background: radial-gradient(circle at 72% 24%, rgba(255, 169, 60, 0.2), transparent 34%);
  animation: heroGlow 7s ease-in-out infinite alternate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.hero .eyebrow {
  color: #ffd582;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h2 {
  color: var(--ink);
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  font-size: clamp(3.6rem, 7.1vw, 6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.6vw, 4.9rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-lede {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(185, 15, 25, 0.22);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.button.secondary {
  color: var(--red-dark);
  background: #f9ded3;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 34px 0 0;
}

.hero-stats div {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-stats dt {
  margin-bottom: 8px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.35;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  min-height: min(720px, 70vw);
  isolation: isolate;
}

.pour-card {
  position: absolute;
  inset: 0 8% 0 10%;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pour-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(35, 10, 6, 0.05), transparent 46%, rgba(35, 10, 6, 0.2)),
    radial-gradient(circle at 52% 36%, transparent 0 28%, rgba(255, 246, 234, 0.1) 58%);
  pointer-events: none;
}

.pour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.float-card {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  border: 8px solid rgba(255, 248, 236, 0.86);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(42, 16, 11, 0.2);
}

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

.float-one {
  right: 0;
  bottom: 42px;
  width: min(240px, 32vw);
  aspect-ratio: 4 / 5;
  animation: floatSlow 6s ease-in-out infinite;
}

.float-two {
  left: 0;
  top: 62px;
  width: min(190px, 25vw);
  aspect-ratio: 4 / 5;
  animation: floatSlow 7s ease-in-out 600ms infinite reverse;
}

.steam-line {
  position: absolute;
  z-index: 3;
  width: 2px;
  height: 86px;
  border-radius: 99px;
  background: linear-gradient(180deg, transparent, rgba(255, 248, 236, 0.92), transparent);
  filter: blur(0.2px);
  opacity: 0.7;
  animation: steamRise 3s ease-in-out infinite;
}

.line-one {
  top: 27%;
  right: 28%;
}

.line-two {
  top: 39%;
  right: 18%;
  height: 58px;
  animation-delay: 900ms;
}

.intro-section,
.split-section,
.about-section,
.vision-section,
.contact-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
}

.intro-grid p,
.split-copy p,
.about-copy p,
.vision-section p,
.contact-section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.shop-link {
  display: inline-grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 64px;
  margin-top: 10px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(185, 15, 25, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(93, 24, 16, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.shop-link:hover {
  border-color: rgba(185, 15, 25, 0.28);
  box-shadow: 0 18px 42px rgba(93, 24, 16, 0.14);
  transform: translateY(-2px);
}

.shop-link svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  color: #fff;
  fill: currentColor;
  background: #ee4d2d;
}

.shop-link strong,
.shop-link small {
  display: block;
}

.shop-link strong {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.2;
}

.shop-link small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.feature-band {
  width: min(1120px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 18px auto 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.feature-item {
  min-height: 238px;
  padding: 28px;
  background: rgba(255, 251, 244, 0.76);
}

.feature-item span {
  display: block;
  margin-bottom: 46px;
  color: var(--leaf);
  font-size: 0.8rem;
  font-weight: 800;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 96px 0;
}

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

.size-grid span {
  display: grid;
  min-height: 118px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--red-dark);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 237, 215, 0.55));
  font-size: clamp(1.24rem, 2vw, 1.72rem);
  font-weight: 800;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 104px;
}

.gallery-strip img {
  width: 100%;
  height: clamp(240px, 30vw, 410px);
  object-fit: cover;
  border-radius: var(--radius);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 16px 0 96px;
}

.about-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: clamp(420px, 48vw, 620px);
  object-fit: cover;
}

.quote {
  margin-top: 30px;
  padding-left: 18px;
  border-left: 4px solid var(--saffron);
  color: var(--red-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.08;
}

.vision-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.vision-section article {
  min-height: 330px;
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 246, 234, 0.82);
}

.vision-section h2 {
  font-size: clamp(2rem, 3.7vw, 4rem);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(36, 23, 19, 0.92), rgba(120, 8, 18, 0.92)),
    url("images/NI_05925.jpg") center / cover;
}

.contact-section h2,
.contact-section .eyebrow,
.contact-section p {
  color: #fff;
}

.contact-section h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 5vw, 5.2rem);
}

.contact-section p {
  max-width: 620px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  justify-content: stretch;
  width: min(100%, 380px);
  margin-top: 0;
}

.contact-link {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-link:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.contact-link svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  fill: currentColor;
}

.contact-link.whatsapp svg {
  color: #fff;
  background: #1fa855;
}

.contact-link.email svg {
  color: var(--red-dark);
  background: #ffe4c5;
}

.contact-link strong,
.contact-link small {
  display: block;
}

.contact-link strong {
  color: #fff;
  font-size: 0.94rem;
  line-height: 1.2;
}

.contact-link small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-brand img {
  width: 94px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.footer-brand span {
  margin-top: 2px;
  font-size: 0.84rem;
}

.footer-location {
  flex: 0 0 auto;
  font-weight: 800;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(22px) scaleY(0.7);
  }

  35% {
    opacity: 0.76;
  }

  100% {
    opacity: 0;
    transform: translateY(-34px) scaleY(1);
  }
}

@keyframes heroGlow {
  from {
    opacity: 0.45;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0.9;
    transform: translate3d(-1.5%, 1.5%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 9px;
  }

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

  .nav-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .site-header.nav-ready .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: var(--radius);
    background: rgba(255, 250, 242, 0.96);
    box-shadow: 0 16px 34px rgba(67, 26, 18, 0.14);
    opacity: 0 !important;
    overflow: visible;
    pointer-events: none !important;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden !important;
  }

  .site-header.nav-ready.nav-open .nav-links {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0);
    visibility: visible !important;
  }

  .nav-links a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(185, 15, 25, 0.07);
  }

  .intro-grid,
  .split-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    padding-top: 176px;
    background-position: center;
  }

  .feature-band,
  .gallery-strip,
  .vision-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 9px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 72px;
    height: 34px;
  }

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

  .brand small {
    font-size: 0.68rem;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.8rem;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .site-header.nav-ready .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .hero {
    min-height: max(820px, 100svh);
    padding: 156px 16px 38px;
    background-position: 54% center;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  .hero-stats,
  .feature-band,
  .gallery-strip,
  .vision-section {
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 28px;
  }

  .size-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .size-grid span {
    min-height: 78px;
    padding: 14px;
    font-size: 1.12rem;
  }

  .shop-link {
    width: 100%;
    margin-top: 6px;
  }

  .intro-section,
  .split-section,
  .about-section,
  .vision-section,
  .contact-section {
    width: calc(100% - 24px);
  }

  .intro-section,
  .split-section,
  .about-section {
    padding: 62px 0;
  }

  .feature-band {
    width: calc(100% - 24px);
    margin-bottom: 52px;
  }

  .feature-item {
    min-height: auto;
  }

  .feature-item span {
    margin-bottom: 28px;
  }

  .gallery-strip {
    width: calc(100% - 24px);
    margin-bottom: 62px;
  }

  .gallery-strip img {
    height: 320px;
  }

  .about-media img {
    height: 380px;
  }

  .contact-section {
    gap: 22px;
    padding: 24px;
  }

  .contact-section h2 {
    margin-bottom: 10px;
  }

  .contact-link {
    min-height: 60px;
    padding: 8px 12px 8px 8px;
  }

  .social-links a {
    min-height: 42px;
  }

  .site-footer {
    width: calc(100% - 24px);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 0 30px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-location {
    font-size: 0.84rem;
    text-align: left;
  }
}

@media (max-width: 380px) {
  .site-header {
    width: calc(100% - 16px);
    gap: 7px;
    padding: 8px;
  }

  .brand {
    gap: 7px;
  }

  .brand-logo {
    width: 64px;
    height: 30px;
  }

  .brand strong {
    font-size: 0.8rem;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 11px;
    font-size: 0.76rem;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: max(780px, 100svh);
    padding: 140px 14px 34px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.62;
  }

  .button {
    min-height: 46px;
    padding: 0 17px;
  }

  .size-grid span {
    min-height: 72px;
    font-size: 1.02rem;
  }

  .contact-link {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 60px;
    gap: 10px;
  }

  .contact-link svg {
    width: 40px;
    height: 40px;
  }

  .footer-brand {
    gap: 10px;
  }

  .footer-brand img {
    width: 78px;
    height: 36px;
  }

  .footer-brand strong {
    font-size: 0.9rem;
  }

  .footer-brand span,
  .footer-location {
    font-size: 0.8rem;
  }
}
