:root {
  --bg:      #ffffff;
  --surface: #ffffff;
  --fg:      #07110e;
  --muted:   #43524c;
  --border:  #d9e2dc;
  --accent:  #3f7c66;

  --font-display: 'Söhne', 'Avenir Next', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  --mist: #eef4f0;
  --mist-strong: #dfeae3;
  --deep: #173f35;
  --deep-soft: #245a4d;
  --green-line: #b9cfc2;
  --shadow: 0 24px 60px rgb(23 63 53 / 0.12);
  --radius: 18px;
  --page-max: 1180px;
  --page-gutter: 32px;
  --hero-gap: clamp(18px, 2.2vw, 28px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-color: var(--deep) var(--mist);
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track {
  background: var(--mist);
}
::-webkit-scrollbar-thumb {
  background: var(--deep);
  border: 3px solid var(--mist);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--deep-soft); }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}
main { flex: 1 0 auto; }
a { color: inherit; }
img { max-width: 100%; display: block; }
figure { margin: 0; }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-shell > main { flex: 1 0 auto; }
.site-shell > .footer { margin-top: auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in oklch, var(--deep) 94%, black);
  border-bottom: 1px solid color-mix(in oklch, white 12%, var(--deep));
  backdrop-filter: blur(18px);
}
.nav {
  width: min(var(--page-max), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-logo {
  width: 146px;
  height: auto;
  object-fit: contain;
}
.brand span { font-size: 13px; color: color-mix(in oklch, white 72%, var(--deep)); font-weight: 600; letter-spacing: 0; }
.navlinks { display: flex; gap: 6px; align-items: center; }
.navlinks a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  color: color-mix(in oklch, white 76%, var(--deep));
  font-size: 14px;
  font-weight: 700;
}
.navlinks a:hover, .navlinks a[aria-current="page"] {
  color: white;
  background: color-mix(in oklch, white 12%, transparent);
}
.navlinks a.nav-booking {
  color: white;
  border: 1px solid color-mix(in oklch, var(--accent) 62%, white);
  background: color-mix(in oklch, var(--accent) 24%, transparent);
}
.navlinks a.nav-booking:hover {
  color: var(--deep);
  background: var(--accent);
  border-color: var(--accent);
}
.menu-button { display: none; }
.hero, .section, .footer-inner, .launcher {
  width: min(var(--page-max), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--hero-gap);
  align-items: start;
  padding: clamp(14px, 2vw, 24px) 0 8px;
}
.hero > div:first-child { grid-column: 1; }
.hero > .hero-card,
.hero > .media-card,
.hero > .intro-image {
  grid-column: 2;
  align-self: stretch;
}
.front-hero { align-items: start; }
.home-page .front-hero .hero-card {
  min-height: clamp(240px, 24vw, 320px);
}
.home-page .section {
  margin-top: clamp(68px, 7.6vh, 96px);
  padding: 0;
}
.home-page .section-head {
  margin-bottom: 10px;
}
.home-page .card {
  padding: 16px 20px;
}
.home-page .grid {
  gap: 12px;
}
.home-page .card h3 {
  margin-bottom: 8px;
}
.home-page .card p {
  line-height: 1.45;
}
.hero.compact { padding: clamp(10px, 1.8vw, 20px) 0 6px; }
.hero.compact.solo { padding-bottom: 4px; }
.hero.solo {
  grid-template-columns: minmax(0, 780px);
}
main > .section:first-child { padding-top: clamp(10px, 1.2vw, 16px); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
}
h1 { font-size: clamp(42px, 7vw, 78px); max-width: 760px; }
h2 { font-size: clamp(32px, 5vw, 58px); }
h3 { font-size: clamp(22px, 3vw, 30px); }
.lead { color: var(--muted); font-size: clamp(17px, 1.7vw, 21px); max-width: 680px; margin: 16px 0 0; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.button {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  text-decoration: none;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.button:hover { background: color-mix(in oklch, var(--deep) 10%, var(--surface)); border-color: var(--deep); color: var(--deep); cursor: pointer; }
.button.primary,
.button[aria-pressed="true"] { background: var(--deep); color: white; border-color: transparent; }
.button.primary:hover,
.button[aria-pressed="true"]:hover { background: color-mix(in oklch, var(--deep) 85%, black); color: white; border-color: transparent; }
.hero-card {
  position: relative;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  margin: 0;
  min-height: clamp(320px, 34vw, 470px);
  border-radius: 28px;
  overflow: hidden;
  background: var(--deep);
  border: 5px solid var(--deep);
  box-shadow: var(--shadow);
}
.hero.compact .hero-card { min-height: clamp(230px, 24vw, 320px); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, oklch(20% 0.02 240 / 0.58));
}
.hours-chip {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  background: rgb(255 255 255 / 0.94);
  border: 1px solid var(--green-line);
  border-radius: 20px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.hours-chip strong { font-family: var(--font-display); font-size: 20px; }
.hours-chip span { color: var(--muted); font-size: 14px; }
.section { padding: clamp(10px, 1.2vw, 18px) 0; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 20px; }
.section-head p { color: var(--muted); max-width: 560px; margin: 0; }
.grid { display: grid; gap: 18px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--green-line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 1px 0 rgb(23 63 53 / 0.04);
}
.card.tint,
.card.sage {
  background: var(--surface);
  border-color: var(--border);
}
.card h3 { margin-bottom: 12px; color: var(--deep); }
.card p { color: var(--muted); margin: 0; }
.card.with-image { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card.with-image img { width: 100%; height: 220px; object-fit: cover; flex-shrink: 0; }
.card.with-image .card-body { padding: clamp(18px, 3vw, 28px); flex: 1; }
.media-card {
  position: relative;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  margin: 0;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid var(--deep);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.media-card.tall { min-height: 420px; }
.media-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, oklch(14% 0.03 240 / 0.72));
}
.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: white;
}
.media-caption h3 { margin-bottom: 6px; }
.media-caption p { margin: 0; color: oklch(94% 0.006 240); }
.products-section .section-head { align-items: start; }
.products-section h2 { max-width: 720px; }
.products-layout {
  --product-card-height: 238px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.supplier-product-card {
  min-height: var(--product-card-height);
  display: grid;
  align-content: start;
  gap: 16px;
}
.supplier-product-head {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.supplier-product-head img {
  display: block;
  width: 104px !important;
  height: 104px !important;
  max-width: none;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid var(--deep);
  background: var(--mist);
}
.supplier-product-head h3 {
  margin: 0;
  color: var(--deep);
  overflow-wrap: anywhere;
}
.supplier-product-card p {
  margin: 0;
  color: var(--muted);
}
.supplier-products-grid {
  align-items: stretch;
}
.product-copy {
  min-height: var(--product-card-height);
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 18px;
}
.brand-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.brand-list li {
  border: 1px solid var(--green-line);
  border-radius: 999px;
  background: var(--mist-strong);
  padding: 9px 12px;
  color: var(--fg);
  font-size: 14px;
  font-weight: 800;
}
.example-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.example-gallery-modal.is-open { display: flex; }
body.example-gallery-open { overflow: hidden; }
.example-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(7 17 14 / 0.72);
  backdrop-filter: blur(8px);
}
.example-gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100vw - 20px));
  max-height: calc(100vh - 20px);
  background: var(--surface);
  border: 1px solid var(--green-line);
  border-radius: 24px;
  box-shadow: 0 32px 88px rgb(7 17 14 / 0.35);
  padding: clamp(10px, 1.2vw, 16px);
  display: grid;
  gap: 10px;
}
.example-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.example-gallery-header h2 {
  font-size: clamp(20px, 2vw, 28px);
}
.example-gallery-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--green-line);
  border-radius: 999px;
  background: var(--mist);
  color: var(--deep);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.example-gallery-viewer {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
}
.example-gallery-main {
  width: 100%;
  height: min(78vh, 820px);
  min-height: 560px;
  object-fit: cover;
  object-position: center 28%;
  background: var(--deep);
  border: 4px solid var(--deep);
  border-radius: 18px;
}
.example-gallery-nav {
  width: 48px;
  height: 72px;
  border: 1px solid var(--green-line);
  border-radius: 999px;
  background: var(--deep);
  color: white;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}
.example-gallery-nav:hover,
.example-gallery-close:hover { filter: brightness(1.06); }
.example-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: 8px;
  max-height: 90px;
  overflow: auto;
  padding: 2px;
}
.example-gallery-thumb {
  border: 2px solid transparent;
  background: transparent;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.example-gallery-thumb.is-active {
  border-color: var(--deep);
}
.example-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.meta-list, .price-list, .hours-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.meta-list li, .price-list li, .hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid color-mix(in oklch, var(--accent) 34%, var(--border));
}
.price-note {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}
.price-stack {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 2px;
}
.price-list strong, .hours-list strong { font-variant-numeric: tabular-nums; white-space: nowrap; }
.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(20px, 5vw, 56px);
  align-items: start;
}
.profile-intro {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.72fr);
}
.about-panel {
  margin-top: clamp(22px, 3vw, 34px);
  display: grid;
  gap: 18px;
}
.about-panel h2 { font-size: clamp(30px, 4vw, 46px); }
.about-panel p { margin: 0; color: var(--muted); }
.portrait {
  border-radius: 28px;
  border: 5px solid var(--deep);
  padding: 14px;
  display: grid;
  gap: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.portrait > img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  border-radius: 20px;
  background: white;
}
.profile-portrait > img { max-height: 500px; }
.portrait-box {
  width: 100%;
  background: var(--deep);
  color: white;
  border: 1px solid color-mix(in oklch, white 14%, var(--deep));
  border-radius: 20px;
  padding: 18px;
}
.portrait-box p,
.portrait-box .eyebrow { color: color-mix(in oklch, white 78%, var(--deep)); }
.portrait-box h3 { color: white; }
.intro-image {
  margin: 0;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  border-radius: 24px;
  border: 5px solid var(--deep);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  align-self: stretch;
  min-height: clamp(260px, 28vw, 400px);
}
.contact-hero .intro-image {
  inline-size: 100%;
  max-inline-size: none;
  justify-self: stretch;
}
.intro-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 16px;
}
.gallery .media-card:nth-child(1) { min-height: 360px; }
.gallery .media-card:nth-child(3) { min-height: 320px; }

/* Masonry gallery — 9-photo grid */
.gallery-masonry {
  columns: 3;
  column-gap: 14px;
}
.gallery-item {
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--mist);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(23,63,53,0.72) 0%, transparent 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-panel {
  background:
    linear-gradient(135deg, var(--deep), color-mix(in oklch, var(--deep-soft) 82%, black));
  color: white;
  border: 1px solid color-mix(in oklch, white 14%, var(--deep));
  border-radius: 24px;
  padding: clamp(20px, 3.5vw, 38px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-panel p, .contact-panel a { color: color-mix(in oklch, white 78%, var(--deep)); }
.contact-panel h2 { font-size: clamp(18px, 1.8vw, 24px); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; max-width: 280px; white-space: normal; }
.contact-panel .eyebrow { color: color-mix(in oklch, var(--accent) 36%, white); }
.contact-panel .hours-list li { border-bottom-color: color-mix(in oklch, white 18%, transparent); }
.contact-panel .hours-list strong { color: white; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow);
}
.contact-card .meta-list { margin-top: 18px; }
.map-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--green-line);
  border-radius: 28px;
  background: var(--surface);
}
.map-copy { padding: clamp(20px, 3vw, 34px); }
.map-frame { min-height: 340px; border: 0; width: 100%; height: 100%; filter: saturate(0.85); }
.footer {
  margin-top: 14px;
  border-top: 1px solid color-mix(in oklch, white 12%, var(--deep));
  background:
    linear-gradient(135deg, var(--deep), color-mix(in oklch, var(--deep-soft) 78%, black) 62%),
    var(--deep);
}
.footer-inner {
  padding: 8px 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  color: color-mix(in oklch, white 76%, var(--deep));
  font-size: 14px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand span {
  font-size: 12px;
}
.footer-logo {
  width: min(170px, 100%);
  height: auto;
  object-fit: contain;
}
.footer-brand span {
  color: color-mix(in oklch, white 66%, var(--deep));
  white-space: nowrap;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(155px, 0.95fr) minmax(205px, 1.1fr) auto auto;
  gap: clamp(16px, 2.5vw, 28px);
  align-items: start;
}
.footer-grid > * { align-self: start; }
.footer-title {
  margin: 0 0 10px;
  color: color-mix(in oklch, var(--accent) 72%, white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer p { margin: 0; }
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: white; }
.footer-booking {
  width: fit-content;
  min-height: 40px;
  margin-top: 22px;
  padding: 10px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in oklch, var(--accent) 62%, white);
  background: color-mix(in oklch, var(--accent) 24%, transparent);
  color: white !important;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.footer-booking:hover {
  color: var(--deep) !important;
  background: var(--accent);
  border-color: var(--accent);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-link {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid color-mix(in oklch, white 18%, var(--deep));
  border-radius: 50%;
  background: color-mix(in oklch, white 10%, transparent);
  color: white !important;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.social-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: currentColor;
  fill: currentColor;
}
.social-link:hover {
  transform: translateY(-1px);
  border-color: color-mix(in oklch, var(--accent) 55%, white);
  background: color-mix(in oklch, var(--accent) 24%, transparent);
}
.to-top {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 30;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid color-mix(in oklch, white 16%, var(--deep));
  border-radius: 999px;
  background: var(--deep);
  color: white;
  box-shadow: 0 14px 30px oklch(0% 0 0 / 0.20);
  font: 900 13px/1 var(--font-body);
  letter-spacing: 0.01em;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}
.to-top.near-footer { position: absolute; }
.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover { background: var(--deep-soft); }
.to-top span {
  display: inline-block;
  margin-right: 7px;
  font-size: 15px;
  line-height: 0;
}
.launcher { padding: 56px 0; }
.screen-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.screen-card { min-height: 190px; text-decoration: none; display: flex; flex-direction: column; justify-content: space-between; }
.screen-card small { color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.notice {
  margin-top: 24px;
  border: 1px dashed var(--border);
  background: var(--mist);
  border-radius: 16px;
  padding: 16px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero, .split, .contact-panel, .map-panel, .footer-inner { grid-template-columns: 1fr; }
  .products-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero > div:first-child,
  .hero > .hero-card,
  .hero > .media-card,
  .hero > .intro-image { grid-column: auto; }
  .hero-card { min-height: 320px; }
  .supplier-product-card { min-height: auto; }
  .product-copy {
    min-height: auto;
    align-content: start;
  }
  .grid.three, .grid.two, .screen-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
  .navlinks {
    position: fixed;
    inset: 68px 16px auto;
    display: none;
    background: var(--deep);
    border: 1px solid color-mix(in oklch, white 14%, var(--deep));
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .navlinks.open { display: grid; }
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid color-mix(in oklch, white 22%, var(--deep));
    background: color-mix(in oklch, white 10%, transparent);
    color: white;
    font-weight: 900;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .footer-brand span { white-space: normal; }
}

@media (max-width: 560px) {
  :root { --page-gutter: 24px; }
  .nav, .hero, .section, .footer-inner, .launcher { width: min(100% - var(--page-gutter), var(--page-max)); }
  .grid.three, .grid.two, .screen-grid, .gallery, .products-layout { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .section-head, .meta-list li, .price-list li, .hours-list li { display: grid; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-inner { gap: 18px; }
  .footer-logo { width: 160px; }
  .to-top {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 38px;
    padding: 8px 11px;
  }
  .hero { padding-top: 18px; }
  .hero-card { min-height: 300px; border-radius: 22px; }
  .media-card, .media-card.tall, .gallery .media-card:nth-child(1), .gallery .media-card:nth-child(3) { min-height: 320px; }
  .supplier-product-head { grid-template-columns: 88px minmax(0, 1fr); }
  .supplier-product-head img { width: 88px !important; height: 88px !important; border-radius: 14px; }
  .example-gallery-modal { padding: 12px; }
  .example-gallery-dialog { border-radius: 18px; padding: 14px; }
  .example-gallery-viewer { grid-template-columns: 38px minmax(0, 1fr) 38px; gap: 8px; }
  .example-gallery-main {
    min-height: 360px;
    height: 66vh;
    border-radius: 14px;
    object-position: center 24%;
  }
  .example-gallery-nav { width: 38px; height: 58px; font-size: 34px; }
  .example-gallery-thumbs { grid-template-columns: repeat(auto-fill, minmax(58px, 1fr)); max-height: 92px; }
  .map-frame { min-height: 280px; }
  .hours-chip { position: relative; left: auto; right: auto; bottom: auto; margin: 260px 12px 12px; }
  .actions .button { width: 100%; }
}
