@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Montserrat:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap");

:root {
  --kiwi-dark: #234D2C;
  --kiwi-deep: #1E3523;
  --kiwi: #5F9227;
  --kiwi-bright: #9BCB3B;
  --kiwi-soft: #DDE7C8;

  --cream: #F7F5E8;
  --cream-light: #FBFAF0;
  --white: #FFFFFF;

  --text: #1E3523;
  --muted: #64705F;

  --shadow-soft: 0 18px 45px rgba(35, 77, 44, 0.12);
  --shadow-medium: 0 25px 65px rgba(35, 77, 44, 0.18);

  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --radius-xl: 60px;

  --container: 1320px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

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

button {
  cursor: pointer;
}

.wrap {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.sheet {
  position: relative;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--kiwi);
  color: #fff;
  padding: 12px 16px;
  border-radius: 0 0 14px 0;
  font-weight: 800;
}

.skip:focus {
  left: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--kiwi-bright);
  outline-offset: 3px;
}

::selection {
  background: rgba(95, 146, 39, 0.18);
}

/* ----------------------------------------------------------------- header */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(35, 77, 44, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 96px;
}

.logo {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--kiwi-dark);
  white-space: nowrap;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 0.94;
  padding-top: 0.12rem;
}

.logo-script {
  font-family: "Caveat", cursive;
  font-size: clamp(2.55rem, 3.8vw, 3.45rem);
  line-height: 0.78;
  letter-spacing: 0;
  color: var(--kiwi-dark);
}

.logo-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--kiwi-dark);
}

.logo small {
  font-family: "Montserrat", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: var(--kiwi);
  text-transform: uppercase;
}

.kiwi-mark {
  width: 60px;
  height: 60px;
  flex: none;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #dfeab9 0 34%, transparent 35% 100%),
    radial-gradient(circle at 50% 50%, #5f9227 0 58%, #234d2c 59% 72%, transparent 73% 100%);
  box-shadow: inset 0 0 0 4px rgba(35, 77, 44, 0.08);
  position: relative;
}

.kiwi-mark::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 10deg, #234d2c 0 10deg, transparent 10deg 20deg);
  -webkit-mask: radial-gradient(circle, transparent 0 12%, #000 13% 62%, transparent 63%);
          mask: radial-gradient(circle, transparent 0 12%, #000 13% 62%, transparent 63%);
  opacity: 0.65;
}

.links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  font-weight: 700;
}

.links > a {
  position: relative;
  padding: 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12px;
  color: var(--kiwi-dark);
  transition: color 0.18s ease;
}

.links > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--kiwi);
  transform: translateX(-50%);
  transition: width 0.18s ease;
}

.links > a:hover,
.links > a[aria-current="page"] {
  color: var(--kiwi);
}

.links > a:hover::after {
  width: 100%;
}

.links > a[aria-current="page"]::after {
  width: 18px;
}

.nav .btn.primary {
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(35, 77, 44, 0.12);
  border-radius: 18px;
  background: rgba(251, 250, 240, 0.96);
  padding: 0 14px;
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--kiwi-dark);
}

@media (max-width: 1060px) {
  .nav {
    position: relative;
    padding-block: 14px;
    min-height: auto;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    display: grid;
    gap: 2px;
    padding: 16px;
    border-radius: 28px;
    border: 1px solid rgba(35, 77, 44, 0.10);
    background: rgba(251, 250, 240, 0.98);
    box-shadow: var(--shadow-medium);
  }

  .links > a {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(221, 231, 200, 0.14);
  }

  .links > a::after {
    left: 16px;
    transform: none;
  }

  .links > a[aria-current="page"]::after,
  .links > a:hover::after {
    width: 16px;
  }

  .links .btn.primary {
    margin: 8px 0 0;
    width: 100%;
  }

  .links[hidden] {
    display: none;
  }
}

/* ------------------------------------------------------------------- hero */
section {
  padding: clamp(72px, 7vw, 118px) 0;
  position: relative;
}

.hero {
  padding: clamp(24px, 3vw, 36px) 0 0;
  overflow: clip;
}

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

.hero::before {
  inset: 4rem auto auto -8rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(221, 231, 200, 0.75) 0 40%, rgba(221, 231, 200, 0) 70%);
}

.hero::after {
  right: -6rem;
  top: 16rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(95, 146, 39, 0.08) 0 42%, rgba(95, 146, 39, 0) 72%);
}

.hero-decoration {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-decoration-svg,
.hero-organic-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-line,
.hero-wave,
.hero-kiwi-outline,
.hero-leaf {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-line {
  stroke: rgba(35, 77, 44, 0.24);
  stroke-width: 2.4;
}

.hero-wave {
  stroke: rgba(95, 146, 39, 0.3);
  stroke-width: 2.8;
}

.hero-kiwi-outline {
  stroke: rgba(95, 146, 39, 0.28);
  stroke-width: 2.1;
}

.hero-leaf {
  stroke: rgba(95, 146, 39, 0.18);
  stroke-width: 2.1;
}

.hero-organic-fill {
  fill: #f7f5e8;
}

.hero-masks {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(16px, 2.6vw, 44px);
  align-items: end;
  min-height: 76vh;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: clamp(28px, 4vw, 58px) 0;
}

.hero-intro {
  position: relative;
}

.hero-actions-block {
  margin-top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 800;
  color: var(--kiwi);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--kiwi-dark);
  font-family: "Oswald", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  text-transform: uppercase;
  margin-bottom: 18px;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.15rem);
  text-transform: uppercase;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
}

h1 .display-line {
  display: block;
}

h1 .script {
  display: block;
  margin-top: 8px;
  font-family: "Caveat", cursive;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  color: var(--kiwi);
  text-transform: none;
  letter-spacing: 0;
  line-height: 0.88;
}

.lead {
  margin: 0 0 28px;
  max-width: 58ch;
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
  color: var(--muted);
}

.hero-note,
.meta {
  margin: 18px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-note {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-actions .btn {
  flex: 1 1 190px;
  min-width: 0;
}

.btn {
  min-height: 62px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  border: 2px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn.primary {
  background: var(--kiwi);
  color: #fff;
  box-shadow: 0 18px 32px rgba(95, 146, 39, 0.22);
}

.btn.secondary {
  background: transparent;
  border-color: var(--kiwi);
  color: var(--kiwi-dark);
}

.btn.secondary:hover {
  background: rgba(221, 231, 200, 0.55);
}

.btn-stack {
  min-height: 68px;
  padding: 0 22px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 0;
}

.btn-stack .btn-label,
.btn-stack .btn-sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.btn-stack .btn-label {
  font-size: 12px;
}

.btn-stack .btn-label svg {
  flex: none;
}

.btn-stack .btn-sub {
  margin-top: 2px;
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.92;
}

.hero-visual {
  position: relative;
  min-height: min(58vh, 560px);
  padding: 1rem 0 3rem;
  margin-top: clamp(-2.25rem, -3vw, -1rem);
  isolation: isolate;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  margin-left: auto;
  margin-right: 0;
  margin-top: 0;
}

.hero-image picture,
.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  clip-path: none;
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-organic-mask {
  position: absolute;
  inset: 0 auto 0 -5%;
  width: 60%;
  z-index: 3;
  pointer-events: none;
}

.hero-organic-mask svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: 2rem;
  width: 11rem;
  height: 6rem;
  border: 1.5px solid rgba(35, 77, 44, 0.16);
  border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%;
  transform: rotate(-22deg);
}

.opening-hours {
  position: absolute;
  right: 2.2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: min(280px, 100%);
  padding: 22px 24px 20px;
  color: #fff;
  background: var(--kiwi-dark);
  border-radius: 24px;
  box-shadow: 0 25px 65px rgba(35, 77, 44, 0.18);
}

.home-visit {
  width: min(326px, 100%);
  margin-left: auto;
  margin-top: 0;
  padding: 24px 24px 22px;
  position: relative;
  z-index: 5;
}

.opening-hours-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--kiwi-bright);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
}

.opening-hours-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.opening-hours-row:last-child {
  border-bottom: 0;
}

.opening-hours-row span {
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}

.opening-hours-row strong {
  color: #fff;
  font-size: 16px;
}

/* ----------------------------------------------------------- feature strip */
.feature-strip {
  padding-top: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: linear-gradient(180deg, rgba(251, 250, 240, 0.92), rgba(255, 255, 255, 0.28));
  border-top: 1px solid rgba(35, 77, 44, 0.08);
  border-bottom: 1px solid rgba(35, 77, 44, 0.08);
}

.feature {
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.feature + .feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(35, 77, 44, 0.12);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--kiwi-soft);
  color: var(--kiwi-dark);
}

.feature h3 {
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

/* -------------------------------------------------------------- sections */
.tint {
  background: linear-gradient(180deg, rgba(251, 250, 240, 0.78), rgba(221, 231, 200, 0.24));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 66px);
  align-items: center;
}

.editorial-split {
  position: relative;
}

.section-copy {
  position: relative;
  z-index: 1;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.section-media {
  position: relative;
  min-width: 0;
}

.shot {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(221, 231, 200, 0.6), rgba(251, 250, 240, 0.95));
  box-shadow: var(--shadow-soft);
}

.shot picture,
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.accent-line {
  width: 92px;
  height: 4px;
  margin-top: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--kiwi), var(--kiwi-bright));
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(221, 231, 200, 0.5);
  color: var(--kiwi-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.location-card {
  min-width: 0;
  padding: 24px;
  border-radius: 30px;
  background: rgba(251, 250, 240, 0.88);
  border: 1px solid rgba(35, 77, 44, 0.08);
  box-shadow: var(--shadow-soft);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card h3,
.location-card h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card p,
.location-card p {
  margin: 0;
  color: var(--muted);
}

.photo-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 22px;
  align-items: stretch;
}

.photo-mosaic-stack {
  display: grid;
  gap: 22px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(145deg, rgba(221, 231, 200, 0.6), rgba(251, 250, 240, 0.95));
}

.photo-card-large {
  min-height: 440px;
}

.photo-card-media,
.photo-card-media picture,
.photo-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(20px, 3vw, 30px);
  background: linear-gradient(180deg, rgba(30, 53, 35, 0), rgba(30, 53, 35, 0.88));
  color: #fff;
}

.photo-card-overlay h3 {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 2rem);
  text-transform: none;
  margin-top: 6px;
}

.photo-card-overlay p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(247, 245, 232, 0.14);
  color: var(--kiwi-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 800;
}

.floating-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 3;
  max-width: min(82%, 280px);
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(35, 77, 44, 0.92);
  color: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.visit-strip {
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 72px;
  position: relative;
  z-index: 4;
}

.visit-strip .wrap {
  display: flex;
  justify-content: flex-end;
}

.visit-card {
  width: min(100%, 326px);
  border-radius: 34px;
  background: rgba(251, 250, 240, 0.96);
  border: 1px solid rgba(35, 77, 44, 0.08);
  box-shadow: var(--shadow-medium);
}

.visit-card h2 {
  font-size: clamp(1.6rem, 2.7vw, 2.45rem);
  margin-bottom: 16px;
}

.visit-card .social {
  margin-top: 18px;
}

.visit-card .btn {
  min-height: 54px;
  padding-inline: 18px;
  flex: 1 1 0;
}

.visit-card .actions {
  gap: 12px;
}

.visit-card {
  width: min(100%, 326px);
  border-radius: 34px;
  background: rgba(251, 250, 240, 0.96);
  border: 1px solid rgba(35, 77, 44, 0.08);
  box-shadow: var(--shadow-medium);
}

.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.location-card h3 + p,
.location-card h3 + form {
  margin-top: 10px;
}

.address-lines {
  font-size: 1.02rem;
  color: var(--kiwi-dark);
}

.map {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 45% 55% 48% 52% / 32% 38% 62% 68%;
  box-shadow: var(--shadow-medium);
}

.meta {
  font-size: 0.92rem;
}

.field {
  width: 100%;
  padding: 0 18px;
  min-height: 62px;
  border: 1px solid rgba(35, 77, 44, 0.12);
  border-radius: 18px;
  background: var(--cream-light);
  color: var(--text);
}

.field:focus {
  outline: 3px solid rgba(155, 203, 59, 0.22);
  outline-offset: 0;
  border-color: var(--kiwi);
}

textarea.field {
  min-height: 160px;
  padding: 18px;
  resize: vertical;
}

label {
  display: block;
  margin: 18px 0 8px;
  color: var(--kiwi-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero {
  padding-top: clamp(28px, 3vw, 40px);
}

.page-hero .shot,
.page-hero .photo-card,
.page-hero .map {
  min-height: 500px;
}

/* --------------------------------------------------------------- footer */
footer {
  background: var(--kiwi-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: clamp(60px, 7vw, 94px) 0 34px;
}

.foot {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.95fr;
  gap: 34px;
}

.foot h3 {
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.footer-subhead {
  margin-top: 22px;
}

.foot a {
  color: inherit;
}

.foot a:hover {
  color: var(--kiwi-bright);
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: inherit;
}

.social a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(155, 203, 59, 0.55);
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--kiwi);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

/* ----------------------------------------------------------- small screens */
@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .location-grid,
  .contact-grid,
  .foot,
  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 34px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .lead,
  .hero-note {
    margin-inline: auto;
  }

  .actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 900px;
    margin-inline: auto;
    min-height: auto;
    padding-bottom: 3rem;
    margin-top: -1rem;
  }

  .hero-image {
    width: min(100%, 560px);
  }

  .hero-copy::after,
  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-decoration {
    opacity: 0.7;
  }

  .cards,
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature + .feature::before {
    display: none;
  }

  .feature:nth-child(n + 3) {
    border-top: 1px solid rgba(35, 77, 44, 0.10);
  }

  .hero-visual {
    padding-top: 0.25rem;
  }

  .home-visit {
    position: static;
    width: min(100%, 420px);
    margin: 18px auto 0;
  }

  .visit-card {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-intro {
    order: 1;
    text-align: center;
  }

  .hero-visual {
    order: 2;
  }

  .hero-actions-block {
    order: 3;
    width: 100%;
  }

  .hero-actions .btn {
    flex-basis: 100%;
  }

  .btn {
    min-height: 54px;
    padding-inline: 22px;
  }

  .btn-stack {
    align-items: center;
    text-align: center;
    min-height: 58px;
  }

  .btn-stack .btn-label,
  .btn-stack .btn-sub {
    justify-content: center;
  }

  .feature-grid,
  .cards,
  .cards-4,
  .photo-mosaic-stack {
    grid-template-columns: 1fr;
  }

  .feature {
    padding: 22px 18px;
  }

  .hero-image picture,
  .hero-image img,
  .shot,
  .photo-card,
  .map {
    min-height: 0;
  }

  .hero-image picture,
  .hero-image img {
    aspect-ratio: 4 / 3;
    clip-path: none;
  }

  .hero-copy .lead {
    max-width: 29ch;
    font-size: 1rem;
  }

  .hero-note {
    font-size: 0.8rem;
  }

  .opening-hours {
    right: 10px;
    bottom: 14px;
    top: auto;
    transform: none;
    width: min(84%, 276px);
    padding: 14px 14px 12px;
  }

  .photo-card-large,
  .shot,
  .photo-card,
  .map {
    min-height: 320px;
  }

  .map {
    min-height: 360px;
  }

  .floating-note {
    max-width: 88%;
  }
}

@media (max-width: 540px) {
  .nav {
    gap: 12px;
  }

  .logo {
    gap: 10px;
  }

  .logo small {
    letter-spacing: 0.14em;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
    white-space: normal;
    max-width: 100%;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.05rem, 8.3vw, 2.85rem);
    line-height: 0.86;
    max-width: 100%;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .btn {
    width: 100%;
  }

  .actions {
    gap: 12px;
  }

  .home-visit .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-visit .btn {
    width: 100%;
  }

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

  .cards,
  .cards-4 {
    grid-template-columns: 1fr;
  }

  .location-card,
  .card {
    padding: 20px;
  }

  .photo-card-overlay {
    padding: 18px;
  }

  .legal {
    flex-direction: column;
  }

  .wa-float {
    display: none;
  }

  .home-visit,
  .visit-card {
    width: 100%;
  }
}

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

  .btn,
  .links > a {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

