:root {
  --ink: #f5f0e4;
  --paper: #e9deca;
  --charcoal: #121410;
  --moss: #263a2b;
  --moss-2: #425742;
  --fern: #8d9a70;
  --stone: #beb19b;
  --rust: #a76339;
  --line: rgba(245, 240, 228, .32);
  --shadow: 0 28px 80px rgba(0, 0, 0, .34);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(141,154,112,.16), transparent 26rem),
    radial-gradient(circle at 82% 38%, rgba(167,99,57,.08), transparent 24rem),
    linear-gradient(135deg, #1f2e24, #344633 44%, #19231c);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(245,240,228,.024) 0 1px, transparent 1px 9px),
    linear-gradient(115deg, rgba(255,255,255,.025), transparent 28%, rgba(0,0,0,.05));
  opacity: .52;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 92%, transparent);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 12%, transparent 0 34%, rgba(0,0,0,.18) 78%),
    linear-gradient(to bottom, rgba(0,0,0,.08), transparent 22%, transparent 78%, rgba(0,0,0,.22));
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .055;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.48' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  animation: textileDrift 16s steps(4, end) infinite;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(18px, 4vw, 54px);
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.menu-open .site-header,
.menu-open .site-header.is-scrolled {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}
.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(18, 20, 16, .74);
  border-color: rgba(245,240,228,.14);
  backdrop-filter: blur(18px);
}
.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 42px);
  line-height: .8;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .42em;
  margin-top: 8px;
}
.site-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(10px, 1.4vw, 18px);
  min-height: 100dvh;
  padding: clamp(92px, 10vw, 124px) clamp(20px, 6vw, 90px) 48px;
  background:
    linear-gradient(rgba(12,14,11,.98), rgba(12,14,11,.985)),
    url("../Images/generated/aditya-storyscape.png") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(245,240,228,.12);
  overflow-y: auto;
  font-size: clamp(34px, 5vw, 66px);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: .96;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity .35s ease, transform .35s ease;
}
.site-nav a {
  position: relative;
  padding: 2px 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  border: 0;
  padding: 2px 0 !important;
}
.nav-cta::after { display: none; }
.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.menu-toggle {
  position: relative;
  z-index: 130;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 96px;
  height: 42px;
  padding: 0 14px 0 42px;
  overflow: hidden;
  border: 1px solid rgba(245,240,228,.36);
  background: rgba(8,9,8,.18);
  color: var(--ink);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.menu-toggle:hover {
  background: rgba(245,240,228,.12);
  border-color: rgba(245,240,228,.58);
}
.menu-toggle::after {
  content: "Menu";
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"]::after {
  content: "Close";
}
.menu-toggle span {
  display: block;
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform .32s cubic-bezier(.22,.61,.36,1), opacity .2s ease, width .25s ease;
}
.menu-toggle span:first-child {
  transform: translateY(-4px);
}
.menu-toggle span + span {
  margin-left: 0;
  transform: translateY(4px);
}
.menu-toggle.is-open span:first-child { transform: translateY(0) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(0) rotate(-45deg); }
.hero {
  min-height: 99svh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 118px clamp(20px, 6vw, 90px) 80px;
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(20,31,22,.18), rgba(20,31,22,.78) 70%),
    linear-gradient(to bottom, rgba(18,20,16,.32), rgba(18,20,16,.5) 42%, rgba(18,20,16,.82));
  opacity: 1;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(245,240,228,.16);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.home-hero > * {
  position: relative;
  z-index: 2;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.86) contrast(1.06) brightness(.72);
  transform: scale(1.02);
}
.closing-cta::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -1px;
  height: clamp(120px, 22vw, 270px);
  background: linear-gradient(to top, rgba(18,20,16,.72), transparent), url("../Images/ss/Screenshot 2026-06-23 101330.png") center bottom / cover no-repeat;
  filter: saturate(.85) contrast(1.05);
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--paper);
}
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 700; line-height: .9; }
h1 { font-size: clamp(52px, 9vw, 90px); text-transform: uppercase; }
h2 { font-size: clamp(34px, 5.4vw, 72px); }
p { line-height: 1.72; }
.hero-kicker {
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(26px, 3.8vw, 48px);
  line-height: .98;
  margin: 24px auto 0;
}
.hero-copy {
  width: min(100%, 1180px);
  margin-inline: auto;
  text-align: center;
}
.home-hero h1 {
  max-width: 1080px;
  margin-inline: auto;
  font-size: clamp(56px, 8.2vw, 118px);
  line-height: .86;
  text-wrap: balance;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--charcoal);
  border: 1px solid var(--ink);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translate3d(var(--magnetic-x, 0), var(--magnetic-y, 0), 0);
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.button:hover {
  transform: translate3d(var(--magnetic-x, 0), calc(var(--magnetic-y, 0) - 3px), 0);
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.button.ghost { background: transparent; color: var(--ink); }
.button.ghost:hover { background: var(--ink); color: var(--charcoal); }
.hero-art {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.mountain-strip {
  position: absolute;
  inset: auto -12% 0;
  width: 124%;
  height: 82%;
  object-fit: cover;
  border-radius: 48% 48% 0 0;
  opacity: .82;
  mix-blend-mode: luminosity;
  box-shadow: var(--shadow);
}
.polaroid {
  position: relative;
  z-index: 2;
  width: min(82%, 430px);
  margin: 0;
  padding: 18px 18px 28px;
  background: #f4eee2;
  color: #3f342d;
  transform: rotate(-2deg);
  box-shadow: var(--shadow);
}
.polaroid img { aspect-ratio: 1 / .92; object-fit: cover; }
.polaroid figcaption {
  padding-top: 16px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  text-transform: lowercase;
}
.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: clamp(20px, 6vw, 90px);
  z-index: 2;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.section {
  position: relative;
  padding: clamp(70px, 9vw, 128px) clamp(20px, 6vw, 90px);
}
.section > * {
  position: relative;
  z-index: 2;
}
.section-label {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 28px;
}
.intro {
  overflow: hidden;
}
.intro::after {
  content: "";
  position: absolute;
  right: clamp(28px, 9vw, 140px);
  top: clamp(44px, 8vw, 100px);
  z-index: 0;
  width: clamp(72px, 9vw, 132px);
  aspect-ratio: 1;
  border: 1px solid rgba(245,240,228,.22);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 7deg, transparent 0 11deg, rgba(245,240,228,.22) 11deg 12deg, transparent 12deg 22deg),
    radial-gradient(circle, transparent 0 35%, rgba(245,240,228,.18) 36% 37%, transparent 38%);
  opacity: .66;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 132px);
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
}
.portrait-stack {
  min-height: 520px;
  position: relative;
}
.portrait-stack img {
  position: absolute;
  width: min(72%, 430px);
  height: 390px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 14px solid rgba(233,222,202,.9);
}
.tilt-left { left: 0; top: 0; transform: rotate(-5deg); }
.tilt-right { right: 0; bottom: 0; transform: rotate(6deg); }
.text-column { max-width: 760px; }
.text-column p { font-size: clamp(17px, 1.7vw, 22px); }
.visual-essay {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 126px);
  align-items: center;
  background:
    repeating-linear-gradient(90deg, rgba(245,240,228,.028) 0 1px, transparent 1px 10px),
    linear-gradient(110deg, rgba(245,240,228,.04), transparent 34%, rgba(0,0,0,.08)),
    rgba(13, 17, 13, .24);
  border-block: 1px solid rgba(245,240,228,.13);
  overflow: hidden;
}
.visual-essay::before {
  content: "fig. generated from field images";
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 58px);
  top: 38px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(245,240,228,.5);
}
.visual-essay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(20,31,22,.92), rgba(20,31,22,.5), rgba(20,31,22,.86)),
    url("../Images/generated/aditya-storyscape.png") center / cover no-repeat;
  opacity: .22;
  filter: saturate(.82) contrast(1.08);
}
.visual-essay > * {
  position: relative;
  z-index: 1;
}
.essay-copy {
  max-width: 620px;
}
.essay-copy p:not(.eyebrow) {
  font-size: clamp(17px, 1.6vw, 22px);
}
.essay-board {
  position: relative;
  min-height: clamp(500px, 50vw, 660px);
}
.essay-board::before {
  content: "";
  position: absolute;
  inset: 9% 8% 6% 12%;
  background: radial-gradient(circle, rgba(245,240,228,.13), transparent 62%);
  filter: blur(4px);
}
.essay-frame {
  position: absolute;
  margin: 0;
  padding: 14px;
  background: rgba(238,229,212,.92);
  color: #342d26;
  box-shadow: var(--shadow);
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(var(--rotate, 0deg));
  transition: transform .55s cubic-bezier(.22,.61,.36,1), filter .45s ease;
}
.essay-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
}
.essay-frame figcaption {
  padding-top: 10px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 700;
}
.essay-frame:hover {
  filter: saturate(1.08);
  transform: translate3d(0, calc(var(--parallax-y, 0) - 10px), 0) rotate(calc(var(--rotate, 0deg) * .72));
}
.essay-large {
  --rotate: -4deg;
  left: 0;
  top: 9%;
  width: min(50%, 410px);
  height: 66%;
  z-index: 2;
}
.essay-oval {
  --rotate: 5deg;
  right: 6%;
  top: 0;
  width: min(44%, 340px);
  height: 56%;
  border-radius: 50% 50% 46% 46%;
  overflow: hidden;
  z-index: 3;
}
.essay-oval figcaption { text-align: center; }
.essay-small {
  --rotate: 7deg;
  right: 0;
  bottom: 5%;
  width: min(52%, 430px);
  height: 32%;
  z-index: 1;
}
.social-ledger {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 126px);
  align-items: start;
  border-block: 1px solid rgba(245,240,228,.13);
  background:
    repeating-linear-gradient(90deg, rgba(245,240,228,.024) 0 1px, transparent 1px 11px),
    linear-gradient(120deg, rgba(245,240,228,.035), transparent 36%, rgba(0,0,0,.08)),
    rgba(8,9,8,.2);
  overflow: hidden;
}
.social-ledger::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20,31,22,.88), rgba(20,31,22,.38)),
    url("../Images/generated/aditya-hero-collage.png") right center / cover no-repeat;
  opacity: .22;
}
.social-ledger::after {
  content: "";
  position: absolute;
  right: clamp(28px, 7vw, 110px);
  top: clamp(28px, 6vw, 86px);
  z-index: 0;
  width: clamp(62px, 7vw, 104px);
  aspect-ratio: 1;
  border: 1px solid rgba(245,240,228,.22);
  border-radius: 50%;
  box-shadow: inset 18px 0 0 rgba(25,35,28,.92);
  opacity: .55;
  transform: rotate(-16deg);
}
.social-ledger > * {
  position: relative;
  z-index: 1;
}
.social-ledger__intro {
  max-width: 720px;
}
.social-ledger__intro p:not(.eyebrow) {
  max-width: 580px;
  font-size: clamp(17px, 1.6vw, 22px);
}
.social-ledger__links {
  display: grid;
  border-top: 1px solid rgba(245,240,228,.2);
}
.social-link {
  display: grid;
  grid-template-columns: minmax(74px, .22fr) minmax(0, .45fr) minmax(150px, .33fr);
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 2.3vw, 28px) 0;
  border-bottom: 1px solid rgba(245,240,228,.18);
  transition: padding .28s ease, color .28s ease, background .28s ease;
}
.social-link:hover {
  padding-left: 18px;
  background: rgba(245,240,228,.055);
  color: #fff9e9;
}
.social-link span,
.social-link small {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  line-height: 1.45;
  text-transform: uppercase;
  color: rgba(245,240,228,.62);
}
.social-link strong {
  font-family: var(--serif);
  font-size: clamp(25px, 2.8vw, 42px);
  line-height: .92;
  font-weight: 700;
}
.social-link.primary strong {
  text-transform: lowercase;
}
.feature-band {
  background: rgba(18,20,16,.22);
  border-block: 1px solid rgba(245,240,228,.12);
}
.feature-copy { max-width: 1060px; margin-bottom: 56px; }
.feature-cards,
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}
.story-card,
.reel-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}
.story-card img,
.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
}
.story-card::after,
.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent 64%);
}
.story-card span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
}
.story-card:hover img,
.reel-card:hover img { transform: scale(1.08); filter: saturate(1.1); }
.impact-preview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
  overflow: hidden;
}
.impact-preview::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 9%;
  z-index: 0;
  width: clamp(96px, 12vw, 178px);
  aspect-ratio: 1.35 / 1;
  opacity: .36;
  background:
    radial-gradient(circle at 84% 40%, rgba(245,240,228,.45) 0 2px, transparent 3px),
    radial-gradient(circle at 68% 38%, rgba(245,240,228,.38) 0 2px, transparent 3px),
    radial-gradient(circle at 55% 48%, rgba(245,240,228,.34) 0 2px, transparent 3px);
  border-top: 1px solid rgba(245,240,228,.34);
  border-radius: 50% 58% 42% 48%;
  transform: rotate(4deg);
}
.quote-panel {
  padding: clamp(20px, 4vw, 54px) 0;
  background: transparent;
  border: 0;
}
.quote-panel h2 { font-size: clamp(34px, 4.6vw, 66px); }
.comment-cloud { display: grid; gap: 18px; }
blockquote {
  margin: 0;
  padding: 22px;
  background: rgba(7, 8, 8, .78);
  border: 1px solid rgba(245,240,228,.12);
  box-shadow: 0 20px 46px rgba(0,0,0,.18);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55;
}
.comment-cloud blockquote:nth-child(2) { transform: translateX(-34px); }
.comment-cloud blockquote:nth-child(3) { transform: translateX(28px); }
.services {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(320px, 1fr);
  gap: clamp(48px, 8vw, 124px);
  max-width: 1280px;
  margin-inline: auto;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  left: 3%;
  bottom: 8%;
  z-index: 0;
  width: clamp(78px, 9vw, 130px);
  aspect-ratio: 1;
  opacity: .34;
  background:
    radial-gradient(ellipse at 50% 12%, transparent 0 18%, rgba(245,240,228,.5) 19% 20%, transparent 21%),
    radial-gradient(ellipse at 88% 44%, transparent 0 18%, rgba(245,240,228,.45) 19% 20%, transparent 21%),
    radial-gradient(ellipse at 12% 44%, transparent 0 18%, rgba(245,240,228,.45) 19% 20%, transparent 21%),
    radial-gradient(ellipse at 34% 88%, transparent 0 18%, rgba(245,240,228,.42) 19% 20%, transparent 21%),
    radial-gradient(ellipse at 66% 88%, transparent 0 18%, rgba(245,240,228,.42) 19% 20%, transparent 21%),
    radial-gradient(circle, rgba(245,240,228,.54) 0 2px, transparent 3px);
}
.service-list,
.booking-list {
  display: grid;
  border-left: 1px solid var(--ink);
}
.service-list a,
.booking-list a {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(245,240,228,.22);
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  transition: padding .25s ease, background .25s ease;
}
.service-list a:hover,
.booking-list a:hover { padding-left: 34px; background: rgba(245,240,228,.08); }
.closing-cta {
  min-height: 68svh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 110px 20px 190px;
  overflow: hidden;
}
.closing-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
  filter: saturate(.8);
}
.closing-copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.closing-copy h2 { font-size: clamp(48px, 7vw, 96px); }
.page-hero {
  position: relative;
  min-height: 54svh;
  padding: 128px clamp(20px, 7vw, 110px) 54px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1320px;
  overflow: hidden;
}
.page-hero.compact { min-height: 46svh; }
.page-lede {
  max-width: 820px;
  font-size: clamp(17px, 1.8vw, 24px);
}
.page-hero:not(.blog-hero)::after {
  content: "";
  position: absolute;
  right: clamp(24px, 9vw, 150px);
  top: clamp(124px, 16vw, 190px);
  width: clamp(72px, 9vw, 132px);
  aspect-ratio: 1;
  border: 1px solid rgba(245,240,228,.18);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 7deg, transparent 0 13deg, rgba(245,240,228,.18) 13deg 14deg, transparent 14deg 25deg);
  opacity: .46;
}
.blog-hero {
  position: relative;
  overflow: hidden;
  min-height: 40svh;
  max-width: 1120px;
  padding-bottom: 34px;
}
.blog-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .94;
  text-transform: none;
}
.blog-hero .page-lede {
  max-width: 640px;
  font-size: clamp(16px, 1.45vw, 20px);
}
.blog-hero::before {
  content: "";
  position: absolute;
  left: clamp(20px, 6vw, 90px);
  bottom: 44px;
  width: clamp(58px, 7vw, 96px);
  aspect-ratio: 1;
  border: 1px solid rgba(245,240,228,.2);
  border-radius: 50%;
  box-shadow: inset 18px 0 0 rgba(25,35,28,.94);
  opacity: .48;
  transform: rotate(-18deg);
}
.blog-hero::after {
  content: "";
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  bottom: 42px;
  width: min(36vw, 440px);
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(to bottom, rgba(20,31,22,.08), rgba(20,31,22,.58)),
    url("../Images/generated/aditya-storyscape.png") center / cover no-repeat;
  border: 1px solid rgba(245,240,228,.18);
  box-shadow: var(--shadow);
  opacity: .42;
  transform: rotate(3deg);
}
.blog-feature {
  padding-top: 0;
}
.featured-article {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(18px, 3vw, 32px);
  background: rgba(8,9,8,.38);
  border: 1px solid rgba(245,240,228,.14);
  box-shadow: var(--shadow);
}
.featured-article figure {
  position: relative;
  margin: 0;
  height: clamp(300px, 32vw, 440px);
  overflow: hidden;
}
.featured-article figure::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(245,240,228,.32);
  pointer-events: none;
}
.featured-article img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s ease, filter .8s ease;
}
.featured-article:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.04);
}
.featured-article h2 {
  font-size: clamp(38px, 5.2vw, 70px);
}
.featured-article p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(17px, 1.7vw, 23px);
}
.featured-article span {
  display: inline-flex;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  padding-top: 0;
  perspective: 1200px;
}
.blog-card a {
  display: grid;
  grid-template-rows: minmax(250px, 24vw) auto;
  min-height: 100%;
  padding: clamp(12px, 1.4vw, 18px) clamp(12px, 1.4vw, 18px) clamp(22px, 2.8vw, 36px);
  background: #eee7da;
  color: #2c2924;
  border: 1px solid rgba(255,255,255,.5);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
  transform: translateY(var(--blog-y, 0)) rotate(var(--blog-rotate, 0deg));
  transform-origin: center 35%;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}
.blog-card a:hover {
  transform: translateY(calc(var(--blog-y, 0) - 14px)) rotate(calc(var(--blog-rotate, 0deg) * .35));
  box-shadow: 0 42px 90px rgba(0,0,0,.38);
  filter: saturate(1.03);
}
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
  transition: transform .7s ease, filter .7s ease;
}
.blog-card a:hover img {
  transform: scale(1.045);
  filter: saturate(.96) contrast(1.05);
}
.blog-card div {
  padding: clamp(18px, 2.4vw, 28px) 4px 0;
  min-height: 190px;
}
.blog-meta {
  margin: 0 0 14px;
  color: rgba(44,41,36,.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}
.blog-card h2 {
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: .96;
  text-transform: none;
}
.blog-card p:last-child {
  margin-bottom: 0;
  color: rgba(44,41,36,.78);
}
.blog-card:nth-child(1) a { --blog-rotate: -5deg; --blog-y: 8px; }
.blog-card:nth-child(2) a { --blog-rotate: 4deg; --blog-y: 58px; }
.blog-card:nth-child(3) a { --blog-rotate: -2deg; --blog-y: 18px; }
.blog-card:nth-child(4) a { --blog-rotate: 3deg; --blog-y: 18px; }
.blog-card:nth-child(5) a { --blog-rotate: -4deg; --blog-y: 72px; }
.blog-card:nth-child(6) a { --blog-rotate: 5deg; --blog-y: 30px; }
.blog-card:nth-child(1),
.blog-card:nth-child(4) {
  margin-left: clamp(0px, 2vw, 22px);
}
.blog-card:nth-child(3),
.blog-card:nth-child(6) {
  margin-right: clamp(0px, 2vw, 22px);
}
.reel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.reel-card { min-height: 620px; }
.reel-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}
.reel-card span {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
}
.reel-card h2 { font-size: clamp(44px, 6vw, 86px); }
.insta-collage {
  position: relative;
  isolation: isolate;
  width: auto;
  min-height: 1180px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 90px) clamp(100px, 12vw, 150px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(180deg, #465b43, #2f432f);
  background-size: 108px 108px, 108px 108px, auto;
  box-shadow: 0 40px 120px rgba(0,0,0,.28);
}
.insta-collage::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  z-index: -2;
  background:
    linear-gradient(rgba(39,58,43,.86), rgba(39,58,43,.7)),
    url("../Images/generated/aditya-storyscape.png") center / cover no-repeat,
    radial-gradient(circle at 18% 8%, rgba(255,255,255,.08), transparent 13rem),
    radial-gradient(circle at 80% 42%, rgba(0,0,0,.2), transparent 15rem),
    linear-gradient(115deg, rgba(255,255,255,.08), transparent 38%, rgba(0,0,0,.18));
  opacity: .9;
}
.insta-collage::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -2px;
  height: 170px;
  z-index: -1;
  background: url("../Images/ss/Screenshot 2026-06-23 101330.png") center bottom / cover no-repeat;
  filter: sepia(.2) saturate(.75) contrast(1.08);
  opacity: .92;
}
.insta-section-mark {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  max-width: 1120px;
  margin-inline: auto;
  margin-bottom: 18px;
  color: rgba(245,240,228,.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.insta-section-mark small {
  font-size: 9px;
  letter-spacing: .2em;
  opacity: .68;
}
.insta-side-note {
  position: absolute;
  left: clamp(20px, 4vw, 58px);
  bottom: 300px;
  z-index: 4;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(245,240,228,.7);
}
.insta-top {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  height: 560px;
}
.insta-post {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow);
  transition: transform .45s ease, filter .45s ease;
  will-change: transform;
}
.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.insta-post::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.18), transparent 34%, rgba(0,0,0,.28));
  pointer-events: none;
}
.insta-post::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: -8px;
  height: 20px;
  z-index: 3;
  background: rgba(233,222,202,.42);
  transform: rotate(-2deg);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  mix-blend-mode: screen;
  pointer-events: none;
}
.insta-post span {
  position: absolute;
  left: 20px;
  right: 18px;
  top: 22px;
  z-index: 2;
  color: white;
  font-weight: 900;
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0,0,0,.42);
}
.insta-post:hover {
  filter: saturate(1.12) contrast(1.03);
}
.insta-post:hover img { transform: scale(1.06); }
.post-one,
.post-two,
.post-three {
  position: absolute;
  top: 0;
  width: 300px;
  height: 540px;
  aspect-ratio: 9 / 16;
  border-radius: 58px;
  margin: 0;
}
.post-one {
  left: 18px;
  transform: rotate(-6deg) !important;
  z-index: 1;
  box-shadow: -18px 26px 44px rgba(0,0,0,.28);
}
.post-two {
  left: 280px;
  transform: translateY(-7px) rotate(0deg);
  z-index: 3;
  box-shadow: 0 30px 54px rgba(0,0,0,.32);
}
.post-three {
  right: 18px;
  transform: rotate(6deg) !important;
  z-index: 2;
  box-shadow: 18px 26px 44px rgba(0,0,0,.28);
}
.post-one:hover { transform: translateY(-10px) rotate(-6deg) !important; }
.post-two:hover { transform: translateY(-17px) rotate(0deg); }
.post-three:hover { transform: translateY(-10px) rotate(6deg) !important; }
.insta-title {
  position: relative;
  z-index: 4;
  max-width: 860px;
  margin: 30px auto;
  text-align: center;
  font-size: clamp(58px, 6vw, 82px);
  font-style: italic;
  text-transform: none;
  line-height: .88;
  text-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.insta-title::before,
.insta-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 44px;
  height: 1px;
  background: rgba(245,240,228,.42);
}
.insta-title::before { left: 2px; transform: rotate(-8deg); }
.insta-title::after { right: 2px; transform: rotate(8deg); }
.insta-bottom {
  display: grid;
  /* grid-template-columns: 250px 265px; */
  justify-content: center;
  align-items: start;
  gap: 0;
  position: relative;
  z-index: 2;
}
.post-four {
  /* width: 250px;
  height: 440px; */
  aspect-ratio: auto;
  border-radius: 0;
  transform: rotate(0deg);
  border: 7px solid rgba(233,222,202,.86);
}
.post-four img { object-fit: cover; }
.post-four:hover { transform: translateY(-8px); }
.insta-caption-card {
  display: block;
  width: 265px;
  min-height: 440px;
  padding: 20px 19px 16px;
  background: #070a0d;
  color: #f7f7f7;
  box-shadow: var(--shadow);
  font-size: 13px;
  line-height: 1.24;
  transition: transform .3s ease, background .3s ease;
  transform: translate(0, 12px) rotate(1deg);
}
.insta-caption-card:hover {
  transform: translate(0, 4px) rotate(0deg);
  background: #0b1015;
}
.caption-kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 6px;
  background: rgba(143,181,255,.15);
  color: #b9cdfd;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.caption-head {
  display: block;
  margin-bottom: 9px;
  font-weight: 800;
  color: white;
}
.insta-caption-card p {
  margin: 0 0 8px;
  line-height: 1.28;
}
.caption-actions,
.caption-likes {
  display: block;
  margin-top: 11px;
  color: #8fb5ff;
  font-weight: 700;
}
.caption-likes {
  color: #f7f7f7;
}
.insta-footnote {
  position: relative;
  z-index: 3;
  max-width: 390px;
  margin: 30px auto;
  color: rgba(245,240,228,.84);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.16;
  text-align: center;
}
.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
}
.process-step {
  background: rgba(8,9,8,.42);
  border: 1px solid rgba(245,240,228,.12);
  padding: clamp(26px, 4vw, 48px);
}
.process-step span {
  display: block;
  margin-bottom: 46px;
  font-family: var(--serif);
  font-size: 34px;
}
.process-step h2 { font-size: clamp(32px, 4vw, 54px); }
.article-pull {
  max-width: 980px;
  margin-inline: auto;
  padding-top: 0;
}
.article-pull h2 { font-size: clamp(32px, 4vw, 56px); }
.testimonial-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}
.testimonial-wall blockquote:nth-child(2),
.testimonial-wall blockquote:nth-child(5) { transform: translateY(48px); }
.impact-statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}
.impact-statement h2 { font-size: clamp(32px, 4vw, 58px); }
.impact-list { display: grid; gap: 12px; }
.impact-list span {
  padding: 18px;
  border: 1px solid rgba(245,240,228,.16);
  background: rgba(8,9,8,.36);
  font-weight: 800;
  text-transform: uppercase;
}
.booking-hero {
  min-height: 76svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: 130px clamp(20px, 6vw, 90px) 70px;
}
.booking-hero img {
  max-height: 76svh;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 70px rgba(0,0,0,.35));
}
.booking-list {
  max-width: 1100px;
  margin-inline: auto;
  padding-top: 0;
}
.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(245,240,228,.18);
}
.contact-strip h2 { font-size: clamp(34px, 5vw, 70px); text-transform: uppercase; }
.contact-page {
  min-height: 78svh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding: 130px clamp(20px, 6vw, 90px) 70px;
}
.contact-copy h1 { font-size: clamp(48px, 7vw, 96px); }
.contact-copy p { max-width: 640px; font-size: clamp(17px, 1.6vw, 22px); }
.direct-links { display: grid; gap: 12px; margin-top: 30px; font-weight: 800; text-transform: uppercase; }
.direct-links a,
.site-footer a,
.contact-strip h2,
.service-list a,
.booking-list a {
  overflow-wrap: anywhere;
}
.contact-form {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(22px, 4vw, 46px);
  background: rgba(8,9,8,.62);
  border: 1px solid rgba(245,240,228,.16);
  box-shadow: var(--shadow);
}
label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(245,240,228,.28);
  background: rgba(245,240,228,.08);
  color: var(--ink);
  padding: 14px 13px;
  font: inherit;
}
select option { color: var(--charcoal); }
textarea { resize: vertical; }
.form-note { margin: 0; min-height: 22px; font-size: 14px; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(20px, 6vw, 90px);
  border-top: 1px solid rgba(245,240,228,.14);
  background: rgba(8,9,8,.44);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-footer p { margin: 0; line-height: 1.3; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
[data-parallax] {
  --parallax-y: 0px;
  will-change: transform;
}
[data-parallax]:not(.reveal):not(.essay-frame) {
  transform: translate3d(0, var(--parallax-y), 0);
}
.split-text .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(.72em) rotate(.8deg);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22,.61,.36,1);
  transition-delay: calc(var(--word-index, 0) * 42ms);
}
.split-text.is-visible .word,
.reveal.is-visible .split-text .word,
.reveal.is-visible.split-text .word {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}
.reveal {
  --reveal-y: 28px;
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-y, 0px)), 0);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}
.image-loaded img {
  animation: imageBloom .8s ease both;
}
@keyframes imageBloom {
  from { filter: saturate(.6) contrast(.9) blur(6px); transform: scale(1.025); }
  to { filter: saturate(1) contrast(1) blur(0); transform: scale(1); }
}
@keyframes textileDrift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-1.5%, 1%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 1180px) {
  .visual-essay {
    grid-template-columns: 1fr;
  }
  .essay-copy {
    max-width: 900px;
  }
  .essay-board {
    min-height: 560px;
  }
  .insta-collage {
    min-height: 1040px;
  }
  .insta-section-mark,
  .insta-top,
  .insta-title {
    max-width: 720px;
  }
  .insta-top {
    height: 490px;
  }
  .post-one,
  .post-two,
  .post-three {
    width: 260px;
    height: 468px;
    border-radius: 50px;
  }
  .post-one { left: 0; }
  .post-two { left: 230px; }
  .post-three { right: 0; }
  .insta-title {
    font-size: clamp(52px, 7vw, 70px);
  }
  
  .insta-caption-card {
    width: 235px;
    min-height: 388px;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    gap: 12px;
    width: auto;
    height: 42px;
    place-content: initial;
    border: 1px solid rgba(245,240,228,.3);
    background: rgba(8,9,8,.2);
    color: var(--ink);
  }
  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: clamp(10px, 2.4vw, 16px);
    min-height: 100dvh;
    padding: clamp(88px, 16vw, 120px) 22px 44px;
    background:
      linear-gradient(rgba(12,14,11,.98), rgba(12,14,11,.985)),
      url("../Images/generated/aditya-storyscape.png") center / cover no-repeat;
    border: 1px solid rgba(245,240,228,.16);
    overflow-y: auto;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    font-size: clamp(34px, 10vw, 58px);
    line-height: .98;
  }
  .site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .hero,
  .intro-grid,
  .visual-essay,
  .social-ledger,
  .featured-article,
  .impact-preview,
  .services,
  .impact-statement,
  .booking-hero,
  .contact-page {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 120px; }
  .intro::after,
  .social-ledger::after,
  .impact-preview::before,
  .services::before,
  .page-hero:not(.blog-hero)::after {
    opacity: .18;
    transform: scale(.78);
  }
  .home-hero h1 {
    max-width: 860px;
    font-size: clamp(52px, 10vw, 96px);
  }
  .hero-art { min-height: 520px; }
  .essay-board { min-height: 520px; }
  .social-ledger__intro {
    max-width: 900px;
  }
  .feature-cards,
  .reel-grid,
  .blog-grid,
  .process,
  .testimonial-wall { grid-template-columns: 1fr; }
  .blog-card:nth-child(2n) a,
  .blog-card:nth-child(2n) a:hover {
    transform: translateY(0) rotate(var(--blog-rotate, 0deg));
  }
  .blog-card:nth-child(n) a {
    --blog-y: 0px;
  }
  .blog-card:nth-child(n) {
    margin-inline: 0;
  }
  .story-card,
  .reel-card { min-height: 460px; }
  .testimonial-wall blockquote:nth-child(2),
  .testimonial-wall blockquote:nth-child(5),
  .comment-cloud blockquote:nth-child(n) { transform: none; }
  .contact-strip,
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .insta-collage {
    min-height: auto;
    padding: 7vw 5vw 19vw;
  }
  .insta-section-mark {
    margin-bottom: 12px;
    font-size: 9px;
  }
  .insta-section-mark small,
  .insta-side-note {
    display: none;
  }
  .insta-top {
    height: 64vw;
    max-height: 440px;
    min-height: 292px;
  }
  .post-one,
  .post-two,
  .post-three {
    width: 37%;
    height: 62vw;
    max-height: 422px;
    min-height: 280px;
    border-radius: 7vw;
  }
  .post-one { left: 0; transform: rotate(-6deg); }
  .post-two { left: 31.5%; transform: translateY(-1vw) rotate(0deg); }
  .post-three { right: 0; transform: rotate(-6deg); }
  .post-one:hover { transform: translateY(-7px) rotate(-6deg); }
  .post-two:hover { transform: translateY(-12px) rotate(0deg); }
  .post-three:hover { transform: translateY(-7px) rotate(-6deg); }
  .insta-title {
    margin: -1vw auto 3vw;
    font-size: clamp(32px, 8.2vw, 53px);
  }
  .insta-bottom {
    /* grid-template-columns: 27vw 29vw; */
    max-width: none;
    margin-inline: 0;
  }
  .insta-caption-card {
    width: 29vw;
    min-height: 47vw;
    max-width: 184px;
    max-height: 306px;
    overflow: hidden;
    padding: 10px 9px;
    font-size: 8px;
  }
  .caption-kicker { display: none; }
  .insta-footnote {
    max-width: 280px;
    margin-top: 18px;
    font-size: 17px;
  }
  .insta-collage::after { height: 27vw; min-height: 118px; }
}

@media (max-width: 640px) {
  .site-header { padding-inline: 16px; }
  .brand { font-size: 24px; }
  .brand small { letter-spacing: .3em; }
  h1 { font-size: clamp(36px, 9vw, 68px); }
  .home-hero h1 {
    max-width: 92vw;
    font-size: clamp(46px, 14vw, 72px);
  }
  h2 { line-height: .95; }
  .hero { min-height: 78vh; padding-inline: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-art { min-height: 420px; }
  .polaroid { width: 88%; padding: 12px 12px 20px; }
  .portrait-stack { min-height: 430px; }
  .portrait-stack img { width: 78%; height: 300px; border-width: 9px; }
  .section { padding-inline: 18px; }
  .social-link {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 20px;
  }
  .social-link:hover {
    padding-left: 0;
  }
  .visual-essay::before { display: none; }
  .essay-board {
    min-height: 470px;
  }
  .essay-frame {
    padding: 10px;
  }
  .essay-large {
    width: 66%;
    height: 48%;
  }
  .essay-oval {
    width: 42%;
    height: 50%;
    right: 0;
  }
  .essay-small {
    width: 52%;
    height: 38%;
  }
  .insta-collage {
    min-height: auto;
    padding: 6vw 5vw 19vw;
  }
  .insta-section-mark {
    margin-bottom: 12px;
    font-size: 9px;
  }
  .insta-section-mark small { display: none; }
  .insta-side-note { display: none; }
  .insta-top {
    height: 64vw;
    max-height: 418px;
    min-height: 280px;
  }
  .post-one,
  .post-two,
  .post-three {
    width: 37%;
    height: 62vw;
    max-height: 410px;
    min-height: 270px;
    border-radius: 7vw;
  }
  .post-one { left: 0; transform: rotate(-6deg); }
  .post-two { left: 31.5%; transform: translateY(-1vw) rotate(0deg); }
  .post-three { right: 0; transform: rotate(-6deg); }
  .post-one:hover { transform: translateY(-7px) rotate(-6deg); }
  .post-two:hover { transform: translateY(-12px) rotate(0deg); }
  .post-three:hover { transform: translateY(-7px) rotate(-6deg); }
  .insta-title {
    margin: -1vw auto 3vw;
    font-size: clamp(32px, 8.2vw, 53px);
  }
  .insta-bottom {
    /* grid-template-columns: 27vw 29vw; */
    max-width: none;
    margin-inline: 0;
  }
  
  .insta-caption-card {
    width: 29vw;
    min-height: 47vw;
    max-width: 184px;
    max-height: 306px;
    overflow: hidden;
    padding: 10px 9px;
    font-size: 8px;
  }
  .caption-kicker { display: none; }
  .insta-footnote {
    max-width: 280px;
    margin-top: 18px;
    font-size: 17px;
  }
  .insta-collage::after { height: 27vw; min-height: 118px; }
  .page-hero,
  .booking-hero,
  .contact-page { padding-inline: 18px; }
  .blog-hero::after {
    display: none;
  }
  .featured-article {
    padding: 14px;
  }
  .featured-article figure {
    height: 280px;
  }
  .blog-card a {
    grid-template-rows: minmax(250px, 68vw) auto;
  }
  .quote-panel { padding: 22px; }
  .service-list a,
  .booking-list a { font-size: 16px; }
  .closing-cta { min-height: 72svh; }
}

@media (max-width: 480px) {
  .section {
    padding-block: 64px;
  }
  .hero {
    padding-top: 104px;
    gap: 18px;
  }
  .hero-art {
    min-height: 360px;
  }
  .mountain-strip {
    height: 72%;
  }
  .page-hero {
    min-height: auto;
    padding-top: 124px;
  }
  .featured-article figure {
    height: 230px;
  }
  .blog-card a {
    grid-template-rows: minmax(230px, 72vw) auto;
    --blog-rotate: 0deg;
  }
  .page-lede {
    font-size: 18px;
  }
  .portrait-stack {
    min-height: 390px;
  }
  .portrait-stack img {
    height: 270px;
  }
  .process-step span {
    margin-bottom: 34px;
  }
  .essay-board {
    min-height: 410px;
  }
  .essay-large {
    width: 72%;
    height: 46%;
  }
  .essay-oval {
    width: 46%;
    height: 44%;
  }
  .essay-small {
    width: 58%;
    height: 36%;
  }
  .contact-page,
  .booking-hero {
    min-height: auto;
    padding-top: 118px;
  }
  .contact-form {
    padding: 18px;
  }
  .site-footer nav {
    display: grid;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  [data-parallax],
  [data-parallax]:not(.reveal):not(.essay-frame),
  .reveal,
  .reveal.is-visible,
  .split-text .word,
  .split-text.is-visible .word {
    transform: none !important;
  }
  .reveal,
  .split-text .word {
    opacity: 1 !important;
  }
  .grain {
    transform: none !important;
  }
}
