/*
Theme Name: Ahwak
Theme URI: https://ahwak.se/
Author: Ahwak Kafé & Restaurang
Description: A bespoke, performance-first theme for Ahwak Kafé & Restaurang in Malmö.
Version: 1.0.0
Requires at least: 6.6
Requires PHP: 8.1
Text Domain: ahwak
*/

@font-face {
  font-family: "Karla";
  src: url("assets/fonts/karla-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display SC";
  src: url("assets/fonts/playfair-sc-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display SC";
  src: url("assets/fonts/playfair-sc-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #17110f;
  --espresso: #241816;
  --cocoa: #5f3932;
  --clay: #9b6255;
  --copper: #dda064;
  --copper-light: #f0c18e;
  --cream: #f5eadb;
  --paper: #fffaf3;
  --mint: #71d3c8;
  --berry: #d45b86;
  --text: #3f302c;
  --muted: #705d56;
  --border: rgba(63, 48, 44, 0.16);
  --shadow: 0 22px 70px rgba(35, 20, 16, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1200px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: "Karla", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
[role="button"] {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Playfair Display SC", Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

::selection {
  color: var(--ink);
  background: var(--copper-light);
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 10px;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 150px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading h2 {
  margin-bottom: 22px;
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

.button--primary {
  color: var(--ink);
  background: var(--copper);
  box-shadow: 0 12px 30px rgba(221, 160, 100, 0.18);
}

.button--primary:hover {
  background: var(--copper-light);
  box-shadow: 0 16px 36px rgba(221, 160, 100, 0.28);
}

.button--ghost {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.24);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.button--dark {
  color: var(--cream);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: var(--copper);
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--berry), var(--mint));
  pointer-events: none;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--cream);
  background: linear-gradient(to bottom, rgba(23, 17, 15, 0.72), transparent);
  transition: background-color 200ms ease, box-shadow 200ms ease, backdrop-filter 200ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(23, 17, 15, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  min-width: 170px;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  text-decoration: none;
}

.brand__monogram {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
  background: var(--copper);
  border-radius: 50%;
  font-family: "Playfair Display SC", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__name {
  font-family: "Playfair Display SC", Georgia, serif;
  font-size: 1.38rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__descriptor {
  margin-top: 5px;
  color: rgba(245, 234, 219, 0.72);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav a {
  position: relative;
  color: rgba(245, 234, 219, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--cream);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.86rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  margin: auto;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 80% 25%, rgba(212, 91, 134, 0.16), transparent 28%),
    radial-gradient(circle at 12% 72%, rgba(113, 211, 200, 0.08), transparent 26%),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image: repeating-linear-gradient(115deg, transparent 0 40px, rgba(255, 255, 255, 0.026) 41px 42px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding-top: calc(var(--header-height) + 62px);
  padding-bottom: 70px;
}

.hero__copy {
  max-width: 610px;
}

.hero .eyebrow {
  color: var(--copper-light);
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--cream);
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(245, 234, 219, 0.78);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.open-status {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  color: rgba(245, 234, 219, 0.78);
  font-size: 0.94rem;
  font-weight: 600;
}

.open-status__dot {
  width: 9px;
  height: 9px;
  background: #efb2a0;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(239, 178, 160, 0.1);
}

.open-status.is-open .open-status__dot {
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(113, 211, 200, 0.12);
}

.hero__visual {
  position: relative;
  min-height: 620px;
}

.hero__image-main,
.hero__image-small {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: var(--espresso);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.hero__image-main img,
.hero__image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-main {
  top: 40px;
  right: 0;
  width: 86%;
  height: 520px;
  border-radius: 42% 14px 42% 14px;
}

.hero__image-main::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(160deg, transparent 55%, rgba(23, 17, 15, 0.48));
}

.hero__image-small--top {
  top: 0;
  left: 0;
  width: 185px;
  height: 250px;
  border: 7px solid var(--ink);
  border-radius: 90px 90px 18px 18px;
  transform: rotate(-2deg);
}

.hero__image-small--bottom {
  right: 30px;
  bottom: 0;
  width: 190px;
  height: 230px;
  border: 7px solid var(--ink);
  border-radius: 18px 18px 95px 95px;
  transform: rotate(2deg);
}

.hero__image-small--top img {
  object-position: 50% 30%;
}

.hero__image-small--bottom img {
  object-position: 50% 44%;
}

.hero__stamp {
  position: absolute;
  z-index: 3;
  right: 225px;
  bottom: 34px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: var(--ink);
  background: var(--copper);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.hero__facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 42px;
  display: flex;
  gap: 8px;
}

.hero__fact {
  padding: 8px 13px;
  color: rgba(245, 234, 219, 0.85);
  background: rgba(23, 17, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Introduction and experience */
.intro {
  background:
    radial-gradient(circle at 100% 0, rgba(221, 160, 100, 0.15), transparent 32%),
    var(--cream);
}

.intro__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.intro__top h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.intro__summary {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.18rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(56px, 8vw, 100px);
}

.experience-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 34px;
  background: rgba(255, 250, 243, 0.68);
  border: 1px solid rgba(63, 48, 44, 0.12);
  border-radius: var(--radius-md);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.experience-card:hover {
  border-color: rgba(155, 98, 85, 0.45);
  box-shadow: 0 20px 50px rgba(63, 48, 44, 0.1);
}

.experience-card__number {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--clay);
  font-family: "Playfair Display SC", Georgia, serif;
  font-size: 0.9rem;
}

.experience-card h3 {
  margin-bottom: 14px;
}

.experience-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.experience-card::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  content: "";
  background: rgba(221, 160, 100, 0.12);
  border-radius: 50%;
}

/* Editorial feature */
.story {
  color: var(--cream);
  background: var(--cocoa);
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: center;
}

.story__visual {
  position: relative;
  min-height: 680px;
}

.story__image-large,
.story__image-small {
  position: absolute;
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow);
}

.story__image-large {
  inset: 0 70px 60px 0;
  border-radius: var(--radius-lg) 140px var(--radius-lg) var(--radius-lg);
}

.story__image-small {
  right: 0;
  bottom: 0;
  width: 210px;
  height: 290px;
  border: 8px solid var(--cocoa);
  border-radius: 105px 105px 24px 24px;
}

.story__image-large img,
.story__image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__image-large img {
  object-position: 50% 32%;
}

.story__image-small img {
  object-position: 50% 30%;
}

.story .eyebrow {
  color: var(--copper-light);
}

.story h2 {
  margin-bottom: 25px;
  color: var(--cream);
}

.story__copy > p {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(245, 234, 219, 0.78);
  font-size: 1.16rem;
}

.story__list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
}

.story__list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(245, 234, 219, 0.9);
  font-weight: 600;
}

.story__list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--mint);
}

/* Offer */
.offer {
  background: var(--paper);
}

.offer__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.offer__header .section-heading {
  margin-bottom: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 55px;
}

.offer-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 29px;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.offer-card:hover {
  background: #f8efe3;
  border-color: rgba(155, 98, 85, 0.28);
}

.offer-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--ink);
  background: var(--copper);
  border-radius: 50%;
}

.offer-card__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.7;
}

.offer-card h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.offer-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.offer__note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Social proof */
.proof {
  padding-block: 35px;
  color: var(--cream);
  background: var(--espresso);
}

.proof__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.proof__rating {
  display: flex;
  align-items: center;
  gap: 18px;
}

.proof__score {
  color: var(--copper-light);
  font-family: "Playfair Display SC", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.proof__stars {
	display: flex;
	gap: 3px;
  color: var(--copper);
  line-height: 1;
}

.proof__stars svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.proof__stars .is-empty svg {
	fill: none;
}

.proof__rating p,
.proof__copy {
  margin: 0;
  color: rgba(245, 234, 219, 0.72);
  font-size: 0.92rem;
}

.proof a {
  color: var(--cream);
  font-weight: 700;
}

/* Gallery */
.gallery {
  overflow: hidden;
  background: var(--cream);
}

.gallery__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
}

.gallery__header .section-heading {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 55px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--espresso);
  border-radius: var(--radius-md);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 350ms ease, transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-card:hover img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.025);
}

.gallery-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  content: "";
  background: linear-gradient(transparent, rgba(23, 17, 15, 0.36));
  pointer-events: none;
}

.gallery-card--a {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-card--b {
  grid-column: span 4;
}

.gallery-card--c {
  grid-column: span 3;
}

.gallery-card--d {
  grid-column: span 3;
}

.gallery-card--e {
  grid-column: span 4;
}

.gallery-card--f {
  grid-column: span 5;
}

.gallery-card--a img { object-position: 50% 32%; }
.gallery-card--b img { object-position: 50% 24%; }
.gallery-card--c img { object-position: 50% 34%; }
.gallery-card--d img { object-position: 50% 22%; }
.gallery-card--e img { object-position: 50% 25%; }
.gallery-card--f img { object-position: 50% 28%; }

/* Visit */
.visit {
  color: var(--cream);
  background:
    radial-gradient(circle at 10% 20%, rgba(221, 160, 100, 0.13), transparent 27%),
    var(--ink);
}

.visit__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(55px, 8vw, 105px);
  align-items: start;
}

.visit .eyebrow {
  color: var(--copper-light);
}

.visit h2,
.visit h3 {
  color: var(--cream);
}

.visit h2 {
  margin-bottom: 22px;
}

.visit__lead {
  max-width: 580px;
  margin-bottom: 34px;
  color: rgba(245, 234, 219, 0.72);
  font-size: 1.14rem;
}

.contact-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-list__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--copper-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-list__icon svg {
  width: 19px;
  height: 19px;
}

.contact-list small {
  display: block;
  color: rgba(245, 234, 219, 0.52);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list address {
  color: var(--cream);
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
}

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

.hours-card {
  padding: 38px;
  color: var(--text);
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.hours-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--border);
}

.hours-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.65rem;
}

.hours-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cocoa);
  font-size: 0.82rem;
  font-weight: 800;
}

.hours-list {
  display: grid;
  gap: 0;
  padding: 18px 0 0;
  margin: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(63, 48, 44, 0.09);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list span:last-child {
  font-weight: 700;
}

.map-consent {
  position: relative;
  display: grid;
  min-height: 340px;
  margin-top: 18px;
  overflow: hidden;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(23, 17, 15, 0.12), rgba(23, 17, 15, 0.12)),
    radial-gradient(circle at 40% 40%, rgba(113, 211, 200, 0.35), transparent 5%),
    repeating-linear-gradient(35deg, rgba(95, 57, 50, 0.08) 0 2px, transparent 2px 35px),
    #e7d8c5;
  border-radius: var(--radius-lg);
}

.map-consent::before,
.map-consent::after {
  position: absolute;
  content: "";
  background: rgba(95, 57, 50, 0.15);
  transform: rotate(-18deg);
}

.map-consent::before {
  width: 130%;
  height: 22px;
}

.map-consent::after {
  width: 22px;
  height: 130%;
  transform: rotate(24deg);
}

.map-consent__content {
  position: relative;
  z-index: 2;
  max-width: 360px;
  padding: 30px;
  background: rgba(255, 250, 243, 0.91);
  border: 1px solid rgba(63, 48, 44, 0.12);
  border-radius: var(--radius-md);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.map-consent__pin {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 13px;
  place-items: center;
  color: var(--cream);
  background: var(--clay);
  border-radius: 50% 50% 50% 10%;
  transform: rotate(-45deg);
}

.map-consent__pin svg {
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
}

.map-consent__content p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.map-consent iframe {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  padding: 70px 0 105px;
  color: var(--cream);
  background: #100b0a;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 50px;
  padding-bottom: 55px;
}

.footer__brand p {
  max-width: 430px;
  margin: 24px 0 0;
  color: rgba(245, 234, 219, 0.58);
}

.footer__column h2 {
  margin-bottom: 18px;
  color: rgba(245, 234, 219, 0.5);
  font-family: "Karla", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer__links {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer__links a {
  color: rgba(245, 234, 219, 0.86);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--copper-light);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 25px;
  color: rgba(245, 234, 219, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.footer__bottom a {
  color: rgba(245, 234, 219, 0.68);
}

.mobile-actions {
  display: none;
}

/* Standard pages */
.page-hero {
  padding: 180px 0 85px;
  color: var(--cream);
  background: var(--ink);
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--cream);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.page-content {
  padding-block: 80px 120px;
}

.prose {
  max-width: 780px;
}

.prose h2 {
  margin-top: 2.2em;
  font-size: 2rem;
}

.prose h3 {
  margin-top: 1.8em;
  font-size: 1.5rem;
}

.prose a {
  color: var(--cocoa);
  font-weight: 700;
}

.not-found {
  display: grid;
  min-height: 78vh;
  place-items: center;
  padding: 160px 20px 100px;
  text-align: center;
  background: var(--cream);
}

.not-found__inner {
  max-width: 650px;
}

/* Progressive reveal */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease-out, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1080px) {
  .primary-nav {
    gap: 18px;
  }

  .header-phone {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 40px;
  }

  .visit__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .primary-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 40px 20px 120px;
    overflow-y: auto;
    visibility: hidden;
    background: rgba(23, 17, 15, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 18px 4px;
    color: var(--cream);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "Playfair Display SC", Georgia, serif;
    font-size: 1.65rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 70px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero__visual {
    min-height: 560px;
    margin-top: 15px;
  }

  .hero__image-main {
    width: 88%;
  }

  .intro__top,
  .story__grid,
  .visit__grid {
    grid-template-columns: 1fr;
  }

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

  .experience-card {
    min-height: 0;
  }

  .experience-card__number {
    margin-bottom: 28px;
  }

  .story__visual {
    min-height: 620px;
  }

  .offer__header,
  .gallery__header {
    align-items: start;
    flex-direction: column;
  }

  .visit__grid {
    gap: 55px;
  }

  .footer__top {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand__descriptor {
    display: none;
  }

  .brand__monogram {
    width: 38px;
    height: 38px;
  }

  .hero__grid {
    padding-top: calc(var(--header-height) + 58px);
  }

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

  .hero__lead {
    font-size: 1.06rem;
  }

  .hero__actions .button {
    flex: 1 1 160px;
  }

  .hero__visual {
    min-height: 430px;
  }

  .hero__image-main {
    top: 30px;
    width: 90%;
    height: 350px;
    border-radius: 80px 12px 80px 12px;
  }

  .hero__image-small--top {
    width: 112px;
    height: 160px;
    border-width: 5px;
  }

  .hero__image-small--bottom {
    right: 15px;
    width: 120px;
    height: 150px;
    border-width: 5px;
  }

  .hero__stamp {
    right: auto;
    bottom: 18px;
    left: 30px;
    width: 84px;
    height: 84px;
    font-size: 0.57rem;
  }

  .hero__facts {
    display: none;
  }

  .intro__top {
    gap: 28px;
  }

  .experience-card,
  .offer-card,
  .hours-card {
    padding: 25px;
  }

  .story__visual {
    min-height: 490px;
  }

  .story__image-large {
    inset: 0 35px 50px 0;
    border-radius: 28px 95px 28px 28px;
  }

  .story__image-small {
    width: 145px;
    height: 205px;
    border-width: 6px;
  }

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

  .offer-card {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .offer-card__icon {
    width: 44px;
    height: 44px;
  }

  .proof__inner,
  .proof__rating {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof__inner {
    gap: 18px;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-card--a,
  .gallery-card--b,
  .gallery-card--c,
  .gallery-card--d,
  .gallery-card--e,
  .gallery-card--f {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-card--a,
  .gallery-card--f {
    grid-column: span 2;
  }

  .gallery-card--a {
    grid-row: span 2;
  }

  .hours-card__top,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-consent {
    min-height: 300px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .site-footer {
    padding-bottom: 120px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 998;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 7px;
    color: var(--cream);
    background: rgba(23, 17, 15, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .mobile-actions a {
    display: grid;
    min-height: 52px;
    place-items: center;
    color: rgba(245, 234, 219, 0.82);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-actions a:last-child {
    border-right: 0;
  }

  .mobile-actions svg {
    width: 19px;
    height: 19px;
    margin-bottom: 2px;
  }
}

/* Production polish: brand, navigation, map and mobile ergonomics. */
h1,
h2,
.section-heading {
  text-wrap: balance;
}

button,
.button,
.menu-toggle,
.mobile-actions a {
  touch-action: manipulation;
}

.site-header,
.site-header.is-scrolled,
.site-header.is-open {
  top: 12px;
  height: 70px;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 1001;
  height: 70px;
  padding: 7px 9px 7px 10px;
  background: rgba(23, 17, 15, 0.78);
  border: 1px solid rgba(245, 234, 219, 0.13);
  border-radius: 22px;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  pointer-events: auto;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled .header-inner,
.site-header.is-open .header-inner {
  background: rgba(23, 17, 15, 0.95);
  border-color: rgba(245, 234, 219, 0.19);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.24);
}

.brand {
  min-width: 0;
}

.brand__logo-frame {
  position: relative;
  display: block;
  width: 190px;
  height: 54px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #956052;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 218px;
  max-width: none;
  height: 218px;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.brand--footer .brand__logo-frame {
  width: 246px;
  height: 76px;
  border-radius: 18px;
}

.brand--footer .brand__logo {
  width: 282px;
  height: 282px;
}

.primary-nav__inner,
.primary-nav__links {
  display: flex;
  align-items: center;
}

.primary-nav__links {
  gap: 28px;
}

.primary-nav__eyebrow,
.primary-nav__contact,
.primary-nav__index,
.primary-nav__arrow {
  display: none;
}

.menu-toggle {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
}

.site-header.is-open .menu-toggle {
  color: var(--ink);
  background: var(--copper-light);
  border-color: var(--copper-light);
}

.map-frame {
  position: relative;
  min-height: 380px;
  margin-top: 18px;
  overflow: hidden;
  background: #e7d8c5;
  border: 1px solid rgba(63, 48, 44, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(35, 20, 16, 0.12);
  isolation: isolate;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-frame__directions {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  min-height: 70px;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 12px 16px;
  color: var(--cream);
  background: rgba(23, 17, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.23);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.map-frame__directions:hover {
  background: rgba(23, 17, 15, 0.98);
  transform: translateY(-2px);
}

.map-frame__directions > svg {
  width: 26px;
  height: 26px;
  color: var(--copper-light);
}

.map-frame__directions > span:nth-child(2) {
  display: grid;
  line-height: 1.25;
}

.map-frame__directions strong {
  font-size: 0.96rem;
}

.map-frame__directions small {
  margin-top: 4px;
  color: rgba(245, 234, 219, 0.63);
  font-size: 0.75rem;
}

@media (max-width: 1080px) {
  .primary-nav__links {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 82px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    top: 10px;
    height: 66px;
  }

  .header-inner {
    z-index: 1001;
    width: min(calc(100% - 20px), var(--container));
    height: 66px;
    padding: 6px 8px;
    border-radius: 20px;
  }

  .brand,
  .header-actions {
    position: relative;
    z-index: 1001;
  }

  .brand__logo-frame {
    width: 176px;
    height: 52px;
    border-radius: 14px;
  }

  .brand__logo {
    width: 205px;
    height: 205px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .primary-nav {
    z-index: 999;
    top: -10px;
    right: 0;
    bottom: auto;
    left: 0;
    display: block;
    width: 100%;
    height: calc(100dvh + 10px);
    padding: 112px 14px calc(28px + env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    visibility: hidden;
    background:
      radial-gradient(circle at 100% 0, rgba(212, 91, 134, 0.16), transparent 36%),
      radial-gradient(circle at 0 100%, rgba(113, 211, 200, 0.09), transparent 31%),
      #17110f;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px) scale(0.992);
    transform-origin: top center;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .primary-nav::before {
    position: fixed;
    inset: 0;
    content: "";
    opacity: 0.22;
    background-image: repeating-linear-gradient(115deg, transparent 0 42px, rgba(255, 255, 255, 0.026) 43px 44px);
    pointer-events: none;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .primary-nav__inner {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(100%, 620px);
    min-height: calc(100dvh - 150px);
    margin-inline: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .primary-nav__eyebrow {
    display: block;
    margin: 0 4px 16px;
    color: var(--copper-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
  }

  .primary-nav__links {
    display: grid;
    gap: 0;
  }

  .primary-nav__links a {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 12px 4px;
    color: var(--cream);
    border-bottom: 1px solid rgba(245, 234, 219, 0.12);
    font-family: "Playfair Display SC", Georgia, serif;
    font-size: clamp(1.72rem, 7.8vw, 2.45rem);
    line-height: 1;
  }

  .primary-nav__links a:first-child {
    border-top: 1px solid rgba(245, 234, 219, 0.12);
  }

  .primary-nav__links a:hover,
  .primary-nav__links a:focus-visible {
    color: var(--copper-light);
  }

  .primary-nav__index,
  .primary-nav__arrow {
    display: block;
    font-family: "Karla", sans-serif;
  }

  .primary-nav__index {
    color: rgba(245, 234, 219, 0.4);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .primary-nav__arrow {
    color: var(--copper-light);
    font-size: 1.25rem;
    text-align: right;
    transition: transform 180ms ease;
  }

  .primary-nav__links a:hover .primary-nav__arrow,
  .primary-nav__links a:focus-visible .primary-nav__arrow {
    transform: translateX(4px);
  }

  .primary-nav__contact {
    display: grid;
    gap: 12px;
    margin-top: auto;
    padding: 25px 4px 0;
  }

  .primary-nav__contact > p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: rgba(245, 234, 219, 0.7);
    font-size: 0.83rem;
    font-weight: 650;
  }

  .primary-nav__status-dot {
    width: 8px;
    height: 8px;
    background: var(--mint);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(113, 211, 200, 0.1);
  }

  .primary-nav a.primary-nav__call {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--ink);
    background: var(--copper-light);
    border: 0;
    border-radius: 15px;
    font-family: "Karla", sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
  }

  .primary-nav__call svg {
    width: 19px;
    height: 19px;
  }

  .primary-nav__meta {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(245, 234, 219, 0.48);
    font-size: 0.72rem;
  }

  .primary-nav__meta a {
    padding: 0;
    color: rgba(245, 234, 219, 0.72);
    border: 0;
    font-family: "Karla", sans-serif;
    font-size: inherit;
    font-weight: 700;
    text-decoration: underline;
  }

  .hero__grid {
    padding-top: calc(var(--header-height) + 62px);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: clamp(74px, 18vw, 104px);
  }

  .hero__grid {
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 52px;
  }

  .hero .eyebrow {
    margin-bottom: 15px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 21px;
    font-size: clamp(2.75rem, 12.2vw, 3.55rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  .hero h1 span {
    display: block;
  }

  .hero__lead {
    margin-bottom: 27px;
    font-size: 1.02rem;
    line-height: 1.56;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 27px;
  }

  .hero__actions .button {
    min-width: 0;
    padding-inline: 13px;
    white-space: nowrap;
  }

  .hero__visual {
    min-height: 410px;
  }

  .map-frame {
    min-height: 330px;
    border-radius: 25px;
  }

  .map-frame__directions {
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 66px;
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    padding: 10px 13px;
    border-radius: 16px;
  }

  .map-frame__directions > svg {
    width: 23px;
    height: 23px;
  }

  .map-frame__directions strong {
    font-size: 0.88rem;
  }

  .brand--footer .brand__logo-frame {
    width: 226px;
    height: 70px;
  }

  .brand--footer .brand__logo {
    width: 262px;
    height: 262px;
  }

  .site-footer {
    padding-bottom: calc(116px + env(safe-area-inset-bottom));
  }

  .mobile-actions {
    z-index: 998;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    min-height: 66px;
    grid-template-columns: repeat(3, 1fr);
    padding: 6px;
    visibility: hidden;
    background: rgba(23, 17, 15, 0.94);
    border: 1px solid rgba(245, 234, 219, 0.14);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    backdrop-filter: blur(18px) saturate(125%);
    transition: opacity 220ms ease, transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1), visibility 220ms ease;
  }

  .mobile-actions.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-actions a {
    min-height: 54px;
    color: rgba(245, 234, 219, 0.78);
    border: 0;
    border-radius: 16px;
    line-height: 1.1;
  }

  .mobile-actions a:nth-child(2) {
    color: var(--ink);
    background: var(--copper-light);
  }

  .mobile-actions svg {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
  }
}

@media (max-width: 420px) {
  .brand__logo-frame {
    width: 166px;
  }

  .brand__logo {
    width: 196px;
    height: 196px;
  }

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

  .primary-nav {
    padding-inline: 12px;
  }

  .primary-nav__links a {
    min-height: 59px;
    font-size: clamp(1.62rem, 7.6vw, 2rem);
  }
}

@media (max-width: 360px) {
  .brand__logo-frame {
    width: 148px;
  }

  .brand__logo {
    width: 181px;
    height: 181px;
  }
}

@media (max-width: 900px) and (max-height: 700px) {
  .primary-nav {
    padding-top: 102px;
  }

  .primary-nav__inner {
    min-height: calc(100dvh - 124px);
  }

  .primary-nav__eyebrow {
    margin-bottom: 8px;
  }

  .primary-nav__links a {
    min-height: 50px;
    padding-block: 8px;
    font-size: 1.55rem;
  }

  .primary-nav__contact {
    padding-top: 16px;
  }
}

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

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-actions,
  .scroll-progress,
  .hero__visual,
  .map-consent,
  .map-frame {
    display: none !important;
  }

  body,
  .hero,
  .story,
  .visit,
  .site-footer {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: 0;
  }

  .hero__grid {
    display: block;
    padding: 40px 0;
  }
}
