:root {
  --cream: #f5eee4;
  --cream-soft: #fff8ee;
  --paper: #fffdf7;
  --turquoise: #55c7cd;
  --turquoise-dark: #259ca4;
  --orange: #ee9a68;
  --orange-dark: #d97943;
  --ink: #171717;
  --text: #2c2927;
  --muted: #716862;
  --line: rgba(23, 23, 23, .12);
  --shadow: 0 24px 70px rgba(52, 42, 34, .14);
  --soft-shadow: 0 14px 38px rgba(52, 42, 34, .08);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 6%, rgba(85, 199, 205, .16), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(238, 154, 104, .14), transparent 24rem),
    linear-gradient(180deg, var(--cream), #fffaf2 55%, var(--cream));
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: radial-gradient(rgba(23, 23, 23, .08) .7px, transparent .7px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .65), transparent 70%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .65), transparent 70%);
}

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

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

button {
  font: inherit;
}

section[id] {
  scroll-margin-top: 104px;
}

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

.section {
  position: relative;
  padding: 92px 0;
}

.section-compact {
  padding-block: 54px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 23, 23, .08);
  background: rgba(245, 238, 228, .86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -.03em;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(37, 156, 164, .22);
}

.brand small {
  display: block;
  margin-top: -3px;
  color: var(--turquoise-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand span {
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #514a46;
  font-size: .95rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--turquoise-dark);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(23, 23, 23, .12);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.site-nav.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0;
  color: var(--turquoise-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: var(--orange);
  -webkit-clip-path: polygon(50% 0%, 62% 31%, 96% 13%, 78% 47%, 100% 59%, 66% 66%, 74% 100%, 50% 75%, 26% 100%, 34% 66%, 0 59%, 22% 47%, 4% 13%, 38% 31%);
  clip-path: polygon(50% 0%, 62% 31%, 96% 13%, 78% 47%, 100% 59%, 66% 66%, 74% 100%, 50% 75%, 26% 100%, 34% 66%, 0 59%, 22% 47%, 4% 13%, 38% 31%);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: .98;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.25rem, 7.6vw, 7.2rem);
}

h2 {
  max-width: 980px;
  font-size: clamp(2.25rem, 4.6vw, 4.65rem);
}

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

@supports (text-wrap: balance) {
  h1,
  h2,
  .lead,
  .section-heading > p {
    text-wrap: balance;
  }
}

p {
  color: var(--muted);
}

.lead {
  max-width: 780px;
  color: #4f4844;
  font-size: clamp(1.08rem, 1.7vw, 1.36rem);
}

.handwritten {
  display: inline-block;
  color: var(--turquoise-dark);
  font-family: "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  line-height: 1;
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
}

.heart {
  color: var(--orange);
  font-family: "Bradley Hand", "Segoe Print", cursive;
  font-weight: 700;
  line-height: 1;
}

.highlight,
.highlight-orange {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: var(--turquoise-dark);
  white-space: nowrap;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.highlight::after,
.highlight-orange::after {
  content: "";
  position: absolute;
  left: -.04em;
  right: -.04em;
  bottom: .06em;
  z-index: -1;
  height: .22em;
  border-radius: 999px;
  background: var(--orange);
  opacity: .78;
  -webkit-transform: rotate(-1.2deg);
  transform: rotate(-1.2deg);
}

.highlight-orange {
  color: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: .65rem;
  padding: 14px 21px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

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

.button-primary {
  background: var(--turquoise);
  color: #fff;
  box-shadow: 0 13px 32px rgba(37, 156, 164, .24);
}

.button-primary:hover {
  background: var(--turquoise-dark);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 253, 247, .78);
  color: var(--ink);
}

.button-light {
  background: #fff;
  color: var(--turquoise-dark);
}

.contact-card .button-light {
  color: var(--turquoise-dark);
}

.button-light:hover {
  background: var(--cream-soft);
  color: var(--ink);
}

.button:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(37, 156, 164, .35);
  outline-offset: 4px;
}

.hero {
  overflow: hidden;
  padding: 30px 0 62px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 44px;
}

.hero-layout-compact {
  min-height: 640px;
  min-height: min(640px, calc(100vh - 112px));
}

.hero-layout > *,
.manifesto > *,
.image-panel > *,
.section-heading > *,
.feature-grid > *,
.offer-grid > *,
.pillar-grid > *,
.photo-strip > *,
.contact-layout > *,
.path-layout > *,
.barefoot-card > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow {
  margin-top: 12px;
}

.hero-copy h1 {
  margin-top: 18px;
}

.hero-copy .lead {
  margin-top: 22px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-image {
  position: relative;
  display: flex;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 12px solid var(--paper);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(23, 23, 23, .16));
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  flex: 1 1 auto;
  object-fit: cover;
  object-position: center center;
}

.image-panel img,
.contact-photo > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: stretch;
  gap: 28px;
}

.manifesto-intro {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 24px;
  background: var(--turquoise);
  color: #fff;
}

.manifesto-intro .handwritten,
.manifesto-intro p {
  color: #fff;
}

.manifesto-intro p + p {
  margin-top: 18px;
}

.manifesto-intro strong {
  display: block;
  margin: 18px 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.large-heart {
  position: absolute;
  right: 22px;
  bottom: 8px;
  color: rgba(255, 255, 255, .22);
  font-size: 7rem;
  -webkit-transform: rotate(12deg);
  transform: rotate(12deg);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
  margin-top: 34px;
}

.photo-strip figure,
.path-layout figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.photo-strip figure {
  height: clamp(300px, 34vw, 520px);
  min-height: 280px;
}

.photo-strip img,
.path-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.path-layout img {
  object-position: 58% center;
}

.text-panel,
.feature-card,
.pillar,
.offer-card {
  border: 1px solid rgba(23, 23, 23, .10);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.text-panel {
  padding: 42px;
}

.text-panel h2,
.image-panel h2,
.section-heading h2,
.contact-card h2 {
  margin-top: 14px;
}

.text-panel p:not(.eyebrow),
.image-panel p:not(.eyebrow),
.contact-card p:not(.eyebrow) {
  margin-top: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 34px;
  padding-top: 6px;
}

.section-heading > p {
  max-width: 460px;
}

.section-heading h2 {
  max-width: 920px;
}

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

.feature-card,
.offer-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: rgba(85, 199, 205, .14);
}

.feature-card:nth-child(2)::before {
  background: rgba(238, 154, 104, .18);
}

.feature-card h3,
.pillar h3 {
  margin: 20px 0 10px;
}

.badge {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  background: var(--turquoise);
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
}

.feature-card:nth-child(2) .badge {
  background: var(--orange);
}

.feature-card:nth-child(3) .badge {
  background: var(--ink);
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: 54px 60px 58px;
  border-radius: 24px;
  background: linear-gradient(135deg, #172f44 0%, #12283a 52%, #163b42 100%);
  color: #fff;
}

.quote-band::before {
  content: "";
  position: absolute;
  top: 46px;
  bottom: 46px;
  left: 34px;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--turquoise));
}

.quote-band::after {
  content: "“";
  position: absolute;
  right: 46px;
  bottom: -28px;
  color: rgba(255, 255, 255, .08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13rem;
  line-height: 1;
}

.quote-band .handwritten {
  position: relative;
  z-index: 1;
  color: #f2b18c;
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}

.quote-band p {
  position: relative;
  z-index: 1;
  max-width: 920px;
  color: #eaf5ff;
  font-size: clamp(1.85rem, 2.7vw, 3.1rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.025em;
}

@supports (text-wrap: balance) {
  .quote-band p {
    text-wrap: balance;
  }
}

.image-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, .10);
  border-radius: 18px;
  background: rgba(255, 253, 247, .78);
  box-shadow: var(--soft-shadow);
}

.image-panel figure {
  height: auto;
  min-height: 460px;
  margin: 0;
}

.image-panel > div {
  padding: 56px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pillar {
  min-height: 230px;
  padding: 26px;
}

.pillar span {
  color: var(--orange);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
}

.pillar p {
  font-size: .98rem;
}

.barefoot-card {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: stretch;
  max-width: 980px;
  margin: 30px auto 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, .10);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.barefoot-card figure {
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  background: #d7c3af;
}

.barefoot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.barefoot-card > div {
  position: relative;
  padding: 30px 32px;
  background: #e9f1f7;
}

.barefoot-card > div::after {
  content: "♡";
  position: absolute;
  top: 16px;
  right: 22px;
  color: rgba(238, 154, 104, .46);
  font-family: "Bradley Hand", "Segoe Print", cursive;
  font-size: 4.2rem;
  line-height: 1;
}

.barefoot-card h2 {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin-top: 12px;
  color: var(--turquoise-dark);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1;
}

.barefoot-card p {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin-top: 16px;
  color: #4f5b64;
  font-size: 1.02rem;
}

.instagram-post {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: none;
  margin: -4px 0 30px;
  padding: 18px;
  border: 1px solid rgba(23, 23, 23, .10);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(85, 199, 205, .16), rgba(238, 154, 104, .16)),
    var(--paper);
  box-shadow: var(--soft-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.instagram-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(52, 42, 34, .12);
}

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

.instagram-post-header img {
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(37, 156, 164, .18);
}

.instagram-post-header strong,
.instagram-post-header small,
.instagram-post-body strong,
.instagram-post-body small {
  display: block;
}

.instagram-post-header strong {
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.1;
}

.instagram-post-header small {
  margin-top: 2px;
  color: var(--turquoise-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.instagram-post-body {
  min-width: 0;
}

.instagram-post-body .handwritten {
  color: var(--orange-dark);
  font-size: 1.35rem;
  transform: rotate(-5deg);
}

.instagram-post-body strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.5vw, 2.05rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.instagram-post-body small {
  margin-top: 8px;
  color: var(--muted);
  font-size: .98rem;
}

.instagram-post-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--turquoise);
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.offer-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
}

.offer-card h3 {
  color: var(--turquoise-dark);
  font-size: 2rem;
}

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

.label {
  display: inline-flex;
  width: max-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(238, 154, 104, .18);
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offer-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.offer-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
}

.offer-card li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: .25em;
  background: var(--orange);
  -webkit-clip-path: polygon(50% 0%, 62% 31%, 96% 13%, 78% 47%, 100% 59%, 66% 66%, 74% 100%, 50% 75%, 26% 100%, 34% 66%, 0 59%, 22% 47%, 4% 13%, 38% 31%);
  clip-path: polygon(50% 0%, 62% 31%, 96% 13%, 78% 47%, 100% 59%, 66% 66%, 74% 100%, 50% 75%, 26% 100%, 34% 66%, 0 59%, 22% 47%, 4% 13%, 38% 31%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 24px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--turquoise), #36aeb6);
  color: white;
  box-shadow: var(--shadow);
}

.contact-card::after {
  content: "♡";
  position: absolute;
  right: 24px;
  bottom: -28px;
  color: rgba(255, 255, 255, .19);
  font-family: "Bradley Hand", cursive;
  font-size: 9rem;
  line-height: 1;
}

.contact-card h2,
.contact-card p,
.contact-card a,
.contact-card .eyebrow {
  color: white;
}

.contact-card .eyebrow::before {
  background: #fff;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  overflow-wrap: anywhere;
}

.contact-list strong {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--turquoise-dark);
}

.contact-photo {
  position: relative;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.path-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
}

.path-layout figure {
  min-height: 560px;
}

.contact-logo {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 6px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .18);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(23, 23, 23, .08);
  color: var(--muted);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.footer-content a {
  color: var(--turquoise-dark);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .button,
  .reveal {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}

@media (min-width: 981px) {
  .hero-layout,
  .manifesto,
  .image-panel,
  .contact-layout,
  .path-layout,
  .barefoot-card,
  .feature-grid,
  .offer-grid,
  .pillar-grid,
  .photo-strip,
  .instagram-post {
    display: grid;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  }

  .manifesto,
  .path-layout {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  }

  .image-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  }

  .barefoot-card {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  }

  .feature-grid,
  .offer-grid,
  .photo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .instagram-post {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .photo-strip figure:first-child {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 132px;
  }

  section[id] {
    scroll-margin-top: 132px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 3;
    gap: 8px;
    padding: 0 0 14px;
  }

  .nav-links a {
    display: block;
    padding: 13px 15px;
    border: 1px solid rgba(23, 23, 23, .10);
    border-radius: 8px;
    background: rgba(255, 253, 247, .8);
  }

  .site-nav.is-open .nav-links {
    display: grid;
  }

  .site-nav {
    flex-wrap: wrap;
    min-height: auto;
    padding-top: 14px;
    gap: 14px;
  }

  .hero-layout,
  .manifesto,
  .image-panel,
  .contact-layout,
  .path-layout,
  .barefoot-card {
    grid-template-columns: 1fr;
  }

  .hero-layout-compact {
    min-height: auto;
  }

  .hero-image {
    min-height: 440px;
  }

  .hero-image img {
    min-height: 440px;
  }

  .photo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .photo-strip figure {
    height: 360px;
  }

  .photo-strip figure:first-child {
    grid-column: 1 / -1;
  }

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

  .image-panel figure {
    min-height: 330px;
  }

  .path-layout figure {
    min-height: 420px;
  }

  .barefoot-card figure {
    min-height: 210px;
  }

  .instagram-post {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .instagram-post-cta {
    width: 100%;
  }

  .image-panel-reversed figure {
    order: -1;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 14px;
  }

  .quote-band {
    padding-left: 52px;
  }

  .quote-band::before {
    left: 26px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 112px;
  }

  section[id] {
    scroll-margin-top: 112px;
  }

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

  .section {
    padding: 56px 0;
  }

  .section-compact {
    padding-block: 42px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 3.25rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .hero-image {
    min-height: 300px;
  }

  .hero-image img {
    min-height: 300px;
  }

  .feature-grid,
  .offer-grid,
  .pillar-grid,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .text-panel,
  .image-panel > div,
  .contact-card {
    padding: 32px;
  }

  .photo-strip figure {
    height: 320px;
    min-height: 240px;
  }

  .barefoot-card > div {
    padding: 28px;
  }

  .barefoot-card h2 {
    font-size: clamp(1.7rem, 8vw, 2.45rem);
  }

  .quote-band {
    padding: 34px 28px 38px 36px;
  }

  .quote-band::before {
    top: 32px;
    bottom: 32px;
    left: 20px;
    width: 4px;
  }

  .quote-band::after {
    right: 18px;
    bottom: -18px;
    font-size: 8rem;
  }

  .quote-band p {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    line-height: 1.16;
  }

}
