:root {
  --night: #101312;
  --night-2: #171c1a;
  --ink: #20231f;
  --fog: #f3eee6;
  --paper: #fffaf1;
  --stone: #d9d1c4;
  --sage: #8f967f;
  --moss: #59614f;
  --copper: #c78f62;
  --butter: #e4c994;
  --blue: #60737a;
  --rose: #b88778;
  --line: rgba(255, 250, 241, 0.16);
  --dark-line: rgba(16, 19, 18, 0.15);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
  --radius-xl: 38px;
  --radius-lg: 26px;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Newsreader', Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--night);
  background: var(--fog);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 80%, rgba(0,0,0,0.7) 0 1px, transparent 1px);
  background-size: 34px 34px, 29px 29px;
  mix-blend-mode: overlay;
}

.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(228, 201, 148, 0.8);
  pointer-events: none;
  z-index: 99;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.cursor-dot.active {
  width: 54px;
  height: 54px;
  background: rgba(228, 201, 148, 0.08);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 90;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--copper), var(--butter), var(--sage));
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 28px));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 999px;
  background: rgba(16, 19, 18, 0.68);
  color: var(--paper);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.22);
}

.logo {
  text-decoration: none;
  display: grid;
  line-height: 1;
  padding-left: 8px;
}

.logo span {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.logo small {
  margin-top: 5px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 250, 241, 0.62);
}

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

.nav a {
  position: relative;
  text-decoration: none;
  font-size: 13px;
  color: rgba(255, 250, 241, 0.78);
  padding: 11px 14px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav a:hover {
  color: var(--paper);
  background: rgba(255, 250, 241, 0.08);
  transform: translateY(-1px);
}

.nav .nav-cta {
  background: var(--paper);
  color: var(--night);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--night);
  cursor: pointer;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding: 145px max(24px, calc((100vw - 1160px) / 2)) 88px;
  color: var(--paper);
  background:
    radial-gradient(circle at 75% 22%, rgba(199, 143, 98, 0.24), transparent 32%),
    linear-gradient(135deg, #0c0e0d 0%, #18201d 46%, #273231 100%);
}

.hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(16,19,18,0.86), transparent 60%),
    url('images/golden-coastal-cliffs.jpg') center/cover;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.hero-copy,
.hero-stage,
.scroll-cue {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--copper);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 760px;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.86;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(40px, 5.8vw, 86px);
  line-height: 0.91;
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 0.98;
  margin-bottom: 14px;
}

p {
  color: rgba(32, 35, 31, 0.72);
  font-size: 17px;
  line-height: 1.78;
}

.hero p,
.site-header p,
.hero-text {
  color: rgba(255, 250, 241, 0.74);
}

.hero-text {
  max-width: 630px;
  font-size: clamp(18px, 1.65vw, 22px);
}

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

.btn {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid currentColor;
  padding: 0 22px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255,255,255,0.15);
  transform: translateY(105%);
  transition: transform 0.25s ease;
}

.btn:hover:after {
  transform: translateY(0);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.primary {
  background: var(--paper);
  color: var(--night);
  border-color: var(--paper);
}

.ghost {
  color: var(--paper);
  background: rgba(255,255,255,0.05);
}

.full {
  width: 100%;
}

.hero-stage {
  min-height: 690px;
  position: relative;
  perspective: 1200px;
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: var(--night-2);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}

.hero-photo:hover img {
  transform: scale(1.04);
}

.hero-main {
  inset: 8px 88px 24px 48px;
}

.hero-small {
  border: 10px solid rgba(16, 19, 18, 0.92);
}

.hero-small.one {
  width: 220px;
  height: 292px;
  top: 66px;
  right: 0;
}

.hero-small.two {
  width: 270px;
  height: 210px;
  left: 0;
  bottom: 88px;
}

.hero-note {
  position: absolute;
  right: 18px;
  bottom: 22px;
  width: 245px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 250, 241, 0.88);
  color: var(--night);
  box-shadow: 0 24px 70px rgba(0,0,0,0.26);
  transform: rotate(-2deg);
}

.hero-note span {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--moss);
  font-weight: 800;
}

.hero-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--night);
}

.scroll-cue {
  position: absolute;
  left: max(24px, calc((100vw - 1160px) / 2));
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 250, 241, 0.72);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 32px;
  height: 48px;
  border: 1px solid rgba(255,250,241,0.35);
  border-radius: 999px;
  position: relative;
}

.scroll-cue span:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--paper);
  transform: translateX(-50%);
  animation: wheel 1.45s infinite;
}

@keyframes wheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 18px); opacity: 0; }
}

.marquee-section {
  overflow: hidden;
  background: var(--night);
  color: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 22px 0;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--serif);
  font-size: clamp(28px, 4.4vw, 72px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 250, 241, 0.52);
  white-space: nowrap;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.story,
.editorial-strip,
.work,
.approach,
.journal,
.packages,
.contact {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.story {
  padding: 120px 0 80px;
}

.story-intro {
  max-width: 920px;
  margin-bottom: 48px;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
  align-items: end;
}

.story-text {
  padding: 34px;
  border-left: 1px solid var(--dark-line);
}

.story-text p {
  font-size: 19px;
}

.story-text p:first-child::first-letter {
  float: left;
  font-family: var(--serif);
  font-size: 72px;
  line-height: 0.8;
  padding-right: 10px;
  color: var(--copper);
}

.story-image {
  margin: 0;
  min-height: 640px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.72fr;
  gap: 18px;
  padding: 38px 0 120px;
  align-items: end;
}

.strip-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--night);
  box-shadow: var(--shadow);
}

.strip-card.large { height: 620px; }
.strip-card.mid { height: 475px; }
.strip-card.small { height: 340px; }

.strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.strip-card:hover img {
  transform: scale(1.04);
}

.strip-card:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.58), transparent 58%);
}

.strip-card figcaption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.08;
}

.work {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  padding: 120px 0;
}

.work:before {
  content: '';
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: linear-gradient(180deg, var(--night) 0%, #17201d 100%);
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: 120px;
  color: var(--paper);
}

.sticky-heading p {
  color: rgba(255, 250, 241, 0.68);
}

.gallery-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.filter {
  border: 1px solid rgba(255,250,241,0.18);
  background: rgba(255,250,241,0.06);
  color: rgba(255,250,241,0.78);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.filter:hover,
.filter.active {
  background: var(--paper);
  color: var(--night);
  transform: translateY(-1px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 265px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #222;
  cursor: zoom-in;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  display: none;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1), filter 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.gallery-item:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.78));
  opacity: 0.86;
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: var(--paper);
  font-size: 14px;
  line-height: 1.35;
}

.gallery-item figcaption span {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--butter);
  font-weight: 800;
}

.approach {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  padding: 130px 0 90px;
}

.approach-pin {
  position: sticky;
  top: 140px;
  align-self: start;
}

.approach-cards {
  display: grid;
  gap: 18px;
}

.approach-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,250,241,0.86), rgba(255,250,241,0.52)),
    radial-gradient(circle at 100% 0%, rgba(199,143,98,0.18), transparent 35%);
  border: 1px solid rgba(16,19,18,0.08);
  box-shadow: 0 22px 60px rgba(16,19,18,0.08);
}

.approach-card span,
.package-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.journal {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  padding: 76px 0 120px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--dark-line);
  border-radius: 24px;
  background: rgba(255,250,241,0.62);
  overflow: hidden;
}

.accordion-item button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--night);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion-item button:after {
  content: '+';
  color: var(--copper);
  font-size: 22px;
  line-height: 1;
}

.accordion-item.open button:after {
  content: '×';
}

.accordion-item div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.accordion-item.open div {
  max-height: 220px;
}

.accordion-item p {
  margin: 0;
  padding: 0 24px 24px;
}

.packages {
  padding: 110px 0 120px;
}

.centered {
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--paper);
  border: 1px solid var(--dark-line);
  box-shadow: 0 22px 70px rgba(16, 19, 18, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 36px 95px rgba(16, 19, 18, 0.14);
}

.package-card.featured {
  background:
    radial-gradient(circle at 15% 10%, rgba(228, 201, 148, 0.18), transparent 36%),
    linear-gradient(135deg, var(--night), #1d2824);
  color: var(--paper);
  border-color: rgba(255,250,241,0.12);
}

.package-card.featured p,
.package-card.featured li {
  color: rgba(255, 250, 241, 0.72);
}

.price {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 0.95;
  color: var(--night);
  margin-bottom: 22px;
}

.featured .price {
  color: var(--paper);
}

ul {
  margin: auto 0 0;
  padding-left: 18px;
}

li {
  color: rgba(32,35,31,0.72);
  line-height: 1.55;
  margin-bottom: 9px;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  padding: 120px 0;
  color: var(--paper);
}

.contact:before {
  content: '';
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(16,19,18,0.92), rgba(16,19,18,0.78)),
    url('images/lake-estate-sunset.jpg') center/cover;
}

.contact p {
  color: rgba(255, 250, 241, 0.72);
}

.contact-notes {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.contact-notes p {
  margin-bottom: 0;
}

.contact-notes strong {
  color: var(--butter);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255,250,241,0.16);
  border-radius: var(--radius-xl);
  background: rgba(255,250,241,0.1);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255,250,241,0.76);
  font-size: 13px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,250,241,0.16);
  border-radius: 20px;
  padding: 15px 16px;
  background: rgba(16,19,18,0.34);
  color: var(--paper);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,250,241,0.42);
}

input:focus,
textarea:focus {
  border-color: rgba(228,201,148,0.7);
  box-shadow: 0 0 0 4px rgba(228,201,148,0.11);
  background: rgba(16,19,18,0.56);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(10, 12, 11, 0.88);
  backdrop-filter: blur(16px);
}

.lightbox.open {
  display: flex;
}

.lightbox figure {
  margin: 0;
  width: min(900px, 84vw);
  max-height: 86vh;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 36px 100px rgba(0,0,0,0.52);
}

.lightbox figcaption {
  margin-top: 14px;
  color: var(--paper);
  text-align: center;
  font-size: 14px;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: 1px solid rgba(255,250,241,0.18);
  background: rgba(255,250,241,0.08);
  color: var(--paper);
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  padding: 12px 16px;
}

.lightbox-arrow {
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 0;
}

.lightbox-arrow.prev { left: 22px; }
.lightbox-arrow.next { right: 22px; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid var(--dark-line);
}

.footer p {
  margin: 0;
  font-size: 14px;
}


.section-reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(8px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.8,.2,1), filter 0.9s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1080px) {
  .hero,
  .work,
  .approach,
  .journal,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 580px;
  }

  .sticky-heading,
  .approach-pin {
    position: relative;
    top: auto;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: 82px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255,250,241,0.18);
    border-radius: 28px;
    background: rgba(16,19,18,0.95);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 14px 16px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-main {
    inset: 0 28px 44px 0;
  }

  .hero-small.one {
    width: 178px;
    height: 220px;
  }

  .hero-small.two {
    width: 214px;
    height: 170px;
    bottom: 40px;
  }

  .hero-note {
    right: 0;
    bottom: 0;
    width: 220px;
  }

  .story-grid,
  .editorial-strip,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .story-image,
  .strip-card.large,
  .strip-card.mid,
  .strip-card.small {
    height: 420px;
    min-height: 0;
  }

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

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .logo span {
    font-size: 21px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 70px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-actions,
  .footer {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-small.one {
    right: -6px;
  }

  .hero-note {
    width: 190px;
    padding: 18px;
  }

  .hero-note p {
    font-size: 20px;
  }

  .story,
  .work,
  .approach,
  .journal,
  .packages,
  .contact {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .contact-form,
  .story-text,
  .approach-card,
  .package-card {
    padding: 22px;
  }

  .lightbox-arrow {
    display: none;
  }
}


/* Mobile polish: desktop layout remains unchanged above this point. */
@media (hover: none), (pointer: coarse) {
  .cursor-dot {
    display: none;
  }

  .tilt-card,
  .magnetic,
  .gallery-item,
  .package-card,
  .strip-card img,
  .hero-photo img {
    transform: none !important;
  }

  .btn:hover,
  .gallery-item:hover,
  .package-card:hover {
    transform: none;
    box-shadow: inherit;
  }
}

@media (max-width: 860px) {
  body.menu-open,
  body.lightbox-open {
    overflow: hidden;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 22px);
    padding: 10px;
    border-radius: 26px;
  }

  .menu-toggle {
    min-height: 42px;
    align-items: center;
    font-weight: 800;
  }

  .nav {
    top: 76px;
    left: 11px;
    right: 11px;
    max-height: calc(100svh - 92px);
    overflow: auto;
    gap: 6px;
  }

  .nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
    padding: 122px 18px 64px;
  }

  .hero:before {
    opacity: 0.12;
  }

  .hero-copy {
    max-width: 650px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(50px, 14vw, 86px);
    line-height: 0.88;
    letter-spacing: -0.06em;
    margin-bottom: 22px;
  }

  h2 {
    font-size: clamp(42px, 11vw, 68px);
    line-height: 0.94;
  }

  h3 {
    font-size: clamp(27px, 7vw, 40px);
  }

  p {
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-text {
    max-width: 34rem;
    font-size: 18px;
    line-height: 1.62;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .btn {
    min-height: 52px;
    padding: 0 20px;
    touch-action: manipulation;
  }

  .hero-stage {
    width: 100%;
    min-height: 560px;
    perspective: none;
  }

  .hero-main {
    inset: 0 22px 70px 0;
    border-radius: 32px;
  }

  .hero-small.one {
    width: min(38vw, 185px);
    height: min(48vw, 240px);
    top: 34px;
    right: 0;
    border-width: 7px;
    border-radius: 24px;
  }

  .hero-small.two {
    width: min(48vw, 235px);
    height: min(37vw, 175px);
    left: 0;
    bottom: 34px;
    border-width: 7px;
    border-radius: 24px;
  }

  .hero-note {
    right: 10px;
    bottom: 0;
    width: min(58vw, 260px);
    padding: 18px;
    border-radius: 22px;
  }

  .hero-note p {
    font-size: 21px;
    line-height: 1.08;
  }

  .scroll-cue {
    display: none;
  }

  .marquee-track {
    gap: 24px;
    padding: 18px 0;
    animation-duration: 24s;
  }

  .story,
  .editorial-strip,
  .work,
  .approach,
  .journal,
  .packages,
  .contact,
  .footer {
    width: min(100% - 28px, 720px);
  }

  .story {
    padding: 88px 0 52px;
  }

  .story-intro {
    margin-bottom: 30px;
  }

  .story-grid,
  .editorial-strip,
  .approach,
  .journal,
  .package-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .approach,
  .journal,
  .contact {
    gap: 28px;
  }

  .story-text {
    padding: 24px;
    border-left: 0;
    border-radius: 26px;
    background: rgba(255, 250, 241, 0.55);
    border: 1px solid rgba(16, 19, 18, 0.08);
  }

  .story-text p {
    font-size: 17px;
  }

  .story-text p:first-child::first-letter {
    float: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    padding-right: 0;
    color: inherit;
  }

  .story-image,
  .strip-card.large,
  .strip-card.mid,
  .strip-card.small {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 30px;
  }

  .editorial-strip {
    gap: 14px;
    padding: 34px 0 86px;
  }

  .strip-card.mid,
  .strip-card.small {
    aspect-ratio: 16 / 11;
  }

  .work {
    display: block;
    padding: 84px 0;
  }

  .sticky-heading {
    position: relative;
    top: auto;
    margin-bottom: 26px;
  }

  .gallery-tools {
    gap: 8px;
    margin-top: 22px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .gallery-tools::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
    padding: 11px 15px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 270px;
    gap: 12px;
  }

  .gallery-item {
    border-radius: 24px;
  }

  .gallery-item figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 13px;
  }

  .approach {
    padding: 88px 0 68px;
  }

  .approach-pin {
    position: relative;
    top: auto;
  }

  .approach-card,
  .package-card,
  .contact-form {
    border-radius: 28px;
  }

  .journal {
    padding: 58px 0 88px;
  }

  .accordion-item button {
    padding: 20px;
  }

  .accordion-item p {
    padding: 0 20px 22px;
  }

  .packages {
    padding: 84px 0;
  }

  .package-grid {
    gap: 14px;
  }

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

  .contact {
    padding: 84px 0;
  }

  .contact-form {
    padding: 22px;
  }

  input,
  textarea {
    min-height: 52px;
    font-size: 16px;
  }

  textarea {
    min-height: 150px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox figure {
    width: 100%;
    max-height: 84svh;
  }

  .lightbox img {
    max-height: 72svh;
    border-radius: 22px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .footer {
    justify-content: center;
    text-align: center;
    padding: 28px 0 38px;
  }
}

@media (max-width: 560px) {
  .grain {
    opacity: 0.08;
  }

  .scroll-progress {
    height: 2px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    padding: 8px;
    border-radius: 23px;
  }

  .logo {
    padding-left: 6px;
  }

  .logo span {
    font-size: 20px;
  }

  .logo small {
    font-size: 9px;
    letter-spacing: 0.21em;
  }

  .menu-toggle {
    min-height: 40px;
    padding: 10px 14px;
  }

  .nav {
    top: 68px;
    border-radius: 24px;
  }

  .hero {
    padding: 104px 14px 54px;
    gap: 28px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.17em;
  }

  h1 {
    max-width: 9.4ch;
    font-size: clamp(43px, 15.2vw, 62px);
    line-height: 0.89;
  }

  h2 {
    font-size: clamp(36px, 12vw, 50px);
    line-height: 0.96;
  }

  .hero-text,
  p {
    font-size: 15.5px;
    line-height: 1.64;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stage {
    min-height: 470px;
    margin-top: 4px;
  }

  .hero-main {
    inset: 0 0 98px 0;
    border-radius: 28px;
  }

  .hero-small.one {
    width: 34vw;
    height: 45vw;
    min-width: 118px;
    min-height: 156px;
    top: 22px;
    right: -4px;
  }

  .hero-small.two {
    width: 48vw;
    height: 34vw;
    min-width: 165px;
    min-height: 118px;
    left: -2px;
    bottom: 56px;
  }

  .hero-note {
    right: 0;
    bottom: 0;
    width: min(78vw, 285px);
    padding: 16px;
    transform: rotate(-1deg);
  }

  .hero-note p {
    font-size: 19px;
  }

  .marquee-track span {
    font-size: 34px;
  }

  .story,
  .editorial-strip,
  .work,
  .approach,
  .journal,
  .packages,
  .contact,
  .footer {
    width: calc(100% - 24px);
  }

  .story,
  .work,
  .approach,
  .packages,
  .contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .story-text,
  .approach-card,
  .package-card,
  .contact-form {
    padding: 20px;
  }

  .editorial-strip {
    padding-bottom: 72px;
  }

  .strip-card figcaption {
    font-size: 22px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4 / 5;
  }

  .gallery-item.wide {
    aspect-ratio: 5 / 4;
  }

  .gallery-item img {
    height: 100%;
  }

  .gallery-item figcaption {
    font-size: 14px;
    bottom: 16px;
  }

  .centered {
    text-align: left;
  }

  .price {
    font-size: 42px;
  }

  .contact-notes {
    gap: 6px;
  }

  .lightbox-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 44px;
    font-size: 28px;
    transform: none;
  }

  .lightbox-arrow.prev { left: 16px; }
  .lightbox-arrow.next { right: 16px; }

  .lightbox figcaption {
    padding: 0 54px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 42px;
  }

  .hero-stage {
    min-height: 430px;
  }

  .hero-note {
    width: calc(100% - 54px);
  }

  .btn {
    padding-left: 16px;
    padding-right: 16px;
  }
}
