:root {
  --ink: #11100d;
  --charcoal: #1d1b17;
  --deep: #0b0b09;
  --cream: #f7f3ea;
  --warm: #e8dfcf;
  --muted: #8a8376;
  --gold: #b99358;
  --gold-light: #dbc08f;
  --line: rgba(185, 147, 88, 0.28);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  --luxury-shadow: 0 34px 120px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

body.success-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(rgba(11, 11, 9, 0.84), rgba(11, 11, 9, 0.88)),
    url("./assets/woodhue-living.jpg") center / cover;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 16px clamp(20px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand img {
  width: 56px;
  height: 48px;
  padding: 0;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  background: transparent;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand span {
  position: relative;
}

.brand span::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--white);
}

.nav-cta {
  flex: 0 0 auto;
  padding: 12px 18px;
  color: var(--ink) !important;
  background: var(--gold-light);
}

.nav-cta:hover,
.button.primary:hover {
  background: #efd9a8;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(0deg, var(--deep), rgba(11, 11, 9, 0));
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  transform: scale(1.02);
  filter: saturate(0.9) contrast(1.12);
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 28%, rgba(219, 192, 143, 0.16), rgba(219, 192, 143, 0) 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.66) 100%);
}

.hero-content {
  position: relative;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 210px 0 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 1120px;
  margin-bottom: 26px;
  font-size: clamp(48px, 6.2vw, 86px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5.2vw, 74px);
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button.primary {
  color: var(--deep);
  background: var(--gold-light);
}

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #15130f, var(--deep));
  color: var(--white);
}

.proof-strip div {
  min-height: 136px;
  padding: 30px clamp(20px, 3vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.intro-section,
.portfolio-section,
.standard-section,
.audience-section,
.credentials-section,
.process-section,
.about-section,
.contact-section {
  padding: clamp(76px, 9vw, 138px) clamp(20px, 5vw, 80px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: end;
  background: var(--cream);
}

.cinematic-break {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.55fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  padding: clamp(70px, 8vw, 126px) clamp(20px, 5vw, 80px);
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.cinematic-break::before {
  content: "Frame and Focus";
  position: absolute;
  left: clamp(20px, 4vw, 70px);
  top: 18px;
  color: rgba(255, 255, 255, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(78px, 13vw, 190px);
  line-height: 0.9;
  white-space: nowrap;
}

.cinematic-image {
  position: relative;
  min-height: clamp(420px, 46vw, 660px);
  box-shadow: var(--luxury-shadow);
}

.cinematic-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(219, 192, 143, 0.2), rgba(219, 192, 143, 0) 22%);
}

.cinematic-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  width: clamp(92px, 12vw, 170px);
  height: 1px;
  background: var(--gold-light);
  pointer-events: none;
}

.cinematic-copy {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(0px, 6vw, 90px);
}

.cinematic-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 78px);
}

.cinematic-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.audience-section {
  background: var(--cream);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 32px);
}

.audience-grid article {
  position: relative;
  min-height: 390px;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
}

.audience-grid article:nth-child(1) {
  background:
    linear-gradient(rgba(11, 11, 9, 0.72), rgba(11, 11, 9, 0.88)),
    url("./assets/woodhue-living.jpg") center / cover;
}

.audience-grid article:nth-child(2) {
  background:
    linear-gradient(rgba(11, 11, 9, 0.68), rgba(11, 11, 9, 0.88)),
    url("./assets/wisteria-living.jpg") center / cover;
}

.audience-grid article:nth-child(3) {
  background:
    linear-gradient(rgba(11, 11, 9, 0.68), rgba(11, 11, 9, 0.88)),
    url("./assets/wisteria-kitchen.jpg") center / cover;
}

.audience-grid article::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(219, 192, 143, 0.24);
  pointer-events: none;
}

.audience-grid span {
  display: block;
  margin-bottom: 110px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.audience-grid h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 500;
}

.audience-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.intro-section > p,
.about-copy p,
.contact-panel p {
  color: #4d473d;
  font-size: 18px;
}

.section-heading {
  width: min(980px, 100%);
  margin-bottom: 42px;
}

.split-heading {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.split-heading h2 {
  max-width: 980px;
}

.section-heading.inverted {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(240px, 22vw);
  gap: 14px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  cursor: zoom-in;
}

.gallery-item img {
  transition: transform 520ms ease, filter 520ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(0.92) contrast(1.08);
}

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

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

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-item::after {
  content: "View";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 9px 12px;
  color: var(--deep);
  background: rgba(219, 192, 143, 0.92);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.portfolio-cta p {
  max-width: 640px;
  margin: 0;
  color: #5a5449;
  font-size: 17px;
}

.services-section {
  padding: clamp(76px, 9vw, 136px) clamp(20px, 5vw, 80px);
  background:
    radial-gradient(circle at 14% 20%, rgba(219, 192, 143, 0.12), transparent 26%),
    linear-gradient(135deg, #100f0d, var(--deep));
}

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

.service-card {
  position: relative;
  min-height: 360px;
  padding: clamp(26px, 4vw, 44px);
  color: var(--white);
  border: 1px solid rgba(219, 192, 143, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  transition:
    border-color 200ms ease,
    transform 200ms ease,
    background 200ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
  opacity: 0.35;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(219, 192, 143, 0.52);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
}

.service-card span {
  display: block;
  margin-bottom: 64px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.service-card h3 {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
}

.service-card p {
  color: rgba(255, 255, 255, 0.68);
}

.services-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 28px;
  color: var(--white);
  border: 1px solid rgba(219, 192, 143, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.services-note p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.credentials-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(219, 192, 143, 0.12), transparent 28%),
    linear-gradient(135deg, #171511, var(--deep));
}

.credentials-badge {
  width: min(100%, 390px);
  padding: 0;
  filter: drop-shadow(0 22px 46px rgba(0, 0, 0, 0.34));
}

.credentials-badge img {
  height: auto;
  object-fit: contain;
}

.credentials-copy h2 {
  max-width: 840px;
  margin-bottom: 22px;
}

.credentials-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.credentials-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(219, 192, 143, 0.26);
  border-left: 1px solid rgba(219, 192, 143, 0.26);
}

.credentials-grid article {
  min-height: 150px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(219, 192, 143, 0.26);
  border-bottom: 1px solid rgba(219, 192, 143, 0.26);
  background: rgba(255, 255, 255, 0.04);
}

.credentials-grid strong,
.credentials-grid span {
  display: block;
}

.credentials-grid strong {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.credentials-grid span {
  color: rgba(255, 255, 255, 0.66);
}

.standard-section {
  background:
    linear-gradient(rgba(247, 243, 234, 0.92), rgba(247, 243, 234, 0.96)),
    url("./assets/woodhue-entry.jpg") center / cover;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.standard-grid article {
  min-height: 270px;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(247, 243, 234, 0.9);
}

.standard-grid h3 {
  margin-bottom: 46px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.standard-grid p {
  margin: 0;
  color: #5a5449;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.process-list div {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.process-list span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--deep);
  background: var(--gold-light);
  font-weight: 800;
}

.process-list p {
  color: #5a5449;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  background:
    linear-gradient(90deg, var(--warm), #f3eadb);
}

.about-image {
  min-height: 620px;
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  padding-bottom: 6px;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-section {
  background:
    radial-gradient(circle at 78% 22%, rgba(219, 192, 143, 0.22), transparent 22%),
    linear-gradient(rgba(11, 11, 9, 0.88), rgba(11, 11, 9, 0.9)),
    url("./assets/woodhue-detail.jpg")
      center / cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 82px);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 64px);
  color: var(--white);
  border: 1px solid rgba(219, 192, 143, 0.26);
  background: rgba(13, 12, 10, 0.82);
  backdrop-filter: blur(10px);
}

.contact-panel h2 {
  margin-bottom: 24px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--gold-light);
  font-weight: 800;
}

.contact-booking {
  width: fit-content;
  margin-top: 10px;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.hidden-field {
  display: none;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 14px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.booking-form option {
  color: var(--ink);
}

.booking-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.65) 50%) calc(100% - 18px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.65) 50%, transparent 50%) calc(100% - 13px) 50% / 7px 7px no-repeat,
    rgba(255, 255, 255, 0.08);
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(219, 192, 143, 0.58);
  outline-offset: 2px;
}

.booking-form button {
  min-height: 54px;
  margin-top: 4px;
  border: 0;
  color: var(--deep);
  background: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 80px);
  color: rgba(255, 255, 255, 0.58);
  background: var(--deep);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.success-message {
  display: grid;
  align-content: center;
  width: min(760px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 70px 0;
}

.success-brand {
  margin-bottom: 44px;
}

.success-message h1 {
  margin-bottom: 24px;
}

.success-message p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.success-message .button {
  width: fit-content;
  margin-top: 18px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content.reveal {
  transform: translateY(18px);
}

.lightbox {
  width: min(1180px, calc(100% - 28px));
  border: 1px solid rgba(219, 192, 143, 0.34);
  padding: 18px;
  color: var(--white);
  background: rgba(11, 11, 9, 0.94);
  box-shadow: var(--luxury-shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: var(--deep);
}

.lightbox p {
  margin: 14px 0 0;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox-close {
  display: block;
  margin: 0 0 12px auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 10px 13px;
  color: var(--white);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    position: fixed;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
    padding: 14px 20px 13px;
    background: rgba(11, 11, 9, 0.82);
    border-bottom: 1px solid rgba(219, 192, 143, 0.16);
    backdrop-filter: blur(16px);
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-content {
    padding-top: 250px;
  }

  .proof-strip,
  .service-grid,
  .process-list,
  .intro-section,
  .cinematic-break,
  .standard-grid,
  .audience-grid,
  .credentials-section,
  .credentials-grid,
  .about-section,
  .contact-panel,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .split-heading .button {
    width: fit-content;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(220px, 42vw);
  }

  .portfolio-cta,
  .services-note {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .cinematic-copy {
    padding-bottom: 0;
  }

  .standard-grid article {
    min-height: 210px;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px 11px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 40px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 10px;
  }

  .main-nav {
    gap: 16px;
    padding-bottom: 1px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 190px 0 48px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  h2 {
    font-size: 36px;
    line-height: 1.04;
  }

  h3 {
    font-size: 20px;
  }

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

  .hero-copy {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .split-heading .button {
    width: 100%;
  }

  .intro-section,
  .portfolio-section,
  .cinematic-break,
  .audience-section,
  .credentials-section,
  .standard-section,
  .process-section,
  .about-section,
  .contact-section,
  .services-section {
    padding: 64px 16px;
  }

  .cinematic-break::before {
    top: 14px;
    font-size: 70px;
  }

  .cinematic-image {
    min-height: 330px;
  }

  .cinematic-image::after {
    inset: 0;
  }

  .cinematic-copy h2 {
    font-size: 38px;
  }

  .cinematic-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .audience-grid article {
    min-height: 340px;
    padding: 24px;
  }

  .audience-grid article::after {
    inset: 10px;
  }

  .audience-grid span {
    margin-bottom: 70px;
    font-size: 34px;
  }

  .credentials-badge {
    width: 100%;
    max-width: 340px;
  }

  .credentials-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .credentials-grid article {
    min-height: auto;
    padding: 22px;
  }

  .credentials-grid strong {
    font-size: 26px;
  }

  .proof-strip div {
    min-height: 0;
    padding: 22px 18px;
  }

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

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

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .service-card span {
    margin-bottom: 28px;
    font-size: 34px;
  }

  .service-card h3 {
    font-size: 28px;
  }

  .standard-grid {
    gap: 0;
  }

  .standard-grid article {
    min-height: auto;
    padding: 24px;
  }

  .standard-grid h3 {
    margin-bottom: 24px;
    font-size: 27px;
  }

  .services-note {
    padding: 22px;
  }

  .portfolio-cta p,
  .services-note p,
  .process-list p,
  .intro-section > p,
  .about-copy p,
  .contact-panel p {
    font-size: 16px;
  }

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

  .contact-panel {
    padding: 22px;
  }

  .contact-booking {
    width: 100%;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    padding: 13px 14px;
  }

  .gallery-item::after {
    opacity: 1;
    transform: none;
  }

  .lightbox {
    padding: 10px;
  }

  .site-footer {
    flex-direction: column;
  }

  .success-message {
    width: calc(100% - 32px);
  }

  .success-message .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
