:root {
  --wine: #6f1827;
  --wine-dark: #430c16;
  --wine-light: #a74555;
  --ivory: #f7f3ec;
  --cream: #ede3d6;
  --paper: #fffdf9;
  --ink: #1d1918;
  --muted: #6f6662;
  --gold: #b3925e;
  --line: rgba(29, 25, 24, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Be Vietnam Pro", Arial, sans-serif;
  --container: min(1220px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 6px 24px;
  color: #fff6ee;
  background: var(--wine-dark);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: #e2c48f;
  border-bottom: 1px solid currentColor;
}

.site-header {
  width: 100%;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1220px) / 2));
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(247, 243, 236, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: min-height 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  min-height: 72px;
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(58, 27, 25, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand-crown {
  color: var(--wine);
  font-size: 26px;
}

.brand span:last-child {
  display: grid;
  gap: 6px;
}

.brand strong {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.1em;
}

.brand small {
  font-size: 8px;
  letter-spacing: 0.38em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 22px;
  color: white;
  background: var(--wine);
  border: 1px solid var(--wine);
  transition: background 0.25s, color 0.25s;
}

.nav-cta:hover {
  color: var(--wine);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 24px;
  height: 1px;
  display: block;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 0.25s;
}

.hero {
  width: var(--container);
  min-height: auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(58px, 6vw, 82px) 0 76px;
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.story h2,
.reel-section h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 7vw, 106px);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.05em;
}

.hero h1 em,
.section h2 em,
.story h2 em,
.reel-section h2 em,
.contact h2 em {
  color: var(--wine);
  font-weight: 500;
}

.hero-description {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
}

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

.button-primary {
  color: white;
  background: var(--wine);
}

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

.button-outline {
  border-color: rgba(29, 25, 24, 0.35);
}

.button-outline:hover {
  color: white;
  background: var(--wine);
  border-color: var(--wine);
}

.button-light {
  color: var(--wine-dark);
  background: var(--paper);
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.25s;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-meta > div {
  display: grid;
  gap: 2px;
  padding-right: 15px;
}

.hero-meta > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-meta strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.hero-meta span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  min-height: min(680px, 72vh);
  position: relative;
}

.hero-image-wrap {
  width: 83%;
  height: 100%;
  min-height: inherit;
  margin-left: auto;
  position: relative;
  overflow: hidden;
  background: #ddd2c7;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 50% 28%;
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-image-wrap:hover img {
  transform: scale(1.025);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(40, 13, 17, 0.28));
}

.vertical-caption {
  position: absolute;
  right: 14px;
  bottom: 22px;
  color: white;
  font-size: 9px;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}

.hero-note {
  width: min(260px, 44%);
  min-height: 142px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 25px;
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: -4px;
  color: white;
  background: var(--wine);
  box-shadow: 0 20px 50px rgba(56, 13, 22, 0.22);
}

.hero-note > span {
  align-self: flex-start;
  color: #e6c89d;
  font-family: var(--serif);
  font-size: 54px;
  line-height: 0.7;
}

.hero-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
  line-height: 1.1;
}

.hero-seal {
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 3;
  top: 38px;
  left: 4px;
  color: var(--wine-dark);
  background: #e3c898;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(47, 24, 19, 0.17);
  transform: rotate(-9deg);
}

.hero-seal span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: absolute;
  border: 1px solid rgba(67, 12, 22, 0.28);
  border-radius: 50%;
  font-size: 7px;
  letter-spacing: 0.15em;
}

.hero-seal strong {
  font-family: var(--serif);
  font-size: 34px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  color: white;
  background: var(--wine);
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 34px;
  align-items: center;
  padding: 15px 0;
  animation: marquee 26s linear infinite;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}

.marquee-track i {
  color: #d8bd8b;
  font-size: 11px;
}

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

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(100px, 10vw, 150px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}

.section-heading h2,
.story h2,
.reel-section h2,
.contact h2 {
  font-size: clamp(46px, 5.7vw, 78px);
  line-height: 0.95;
}

.section-heading > p {
  max-width: 410px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
}

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

.service-card {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(59, 28, 25, 0.09);
}

.service-card::after {
  content: "";
  width: 140px;
  height: 140px;
  position: absolute;
  right: -70px;
  bottom: -70px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-card-featured {
  color: white;
  background: var(--wine);
  border-color: var(--wine);
}

.service-card-featured::after {
  border-color: rgba(255, 255, 255, 0.2);
}

.service-index {
  align-self: flex-end;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
}

.service-card-featured .service-index,
.service-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 40px 0 30px;
  color: var(--wine);
  background: var(--ivory);
  border-radius: 50%;
}

.service-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.service-card h3 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-card a {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-featured a {
  border-color: rgba(255, 255, 255, 0.22);
}

.service-card a span {
  float: right;
}

.story {
  min-height: 840px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
  padding: clamp(90px, 10vw, 150px) max(24px, calc((100vw - 1220px) / 2));
  background: #ece2d4;
}

.story-collage {
  min-height: 610px;
  position: relative;
}

.story-main {
  width: 73%;
  height: 570px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

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

.story-small {
  width: 46%;
  margin: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  box-shadow: 0 30px 70px rgba(45, 28, 23, 0.18);
}

.story-small img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.story-tag {
  position: absolute;
  top: 25px;
  right: 0;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.05;
  text-align: right;
}

.story-copy > p:not(.eyebrow) {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.story-points {
  display: grid;
  gap: 13px;
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.story-points span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  color: white;
  background: var(--wine);
  border-radius: 50%;
  font-size: 10px;
}

.portfolio {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1220px) / 2));
  padding-left: max(24px, calc((100vw - 1220px) / 2));
  color: white;
  background: #171515;
}

.section-heading-light .eyebrow {
  color: #d8b67f;
}

.section-heading-light h2 em {
  color: #d8b67f;
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.52);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}

.gallery-item {
  min-width: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 0;
  background: #272323;
  cursor: zoom-in;
}

.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(0.2, 0.7, 0.2, 1), filter 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.7);
}

.gallery-item span {
  display: grid;
  gap: 2px;
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: white;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s, transform 0.35s;
}

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

.gallery-item b {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.gallery-item small {
  color: #dfc394;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reel-section {
  width: var(--container);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 10vw, 140px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(100px, 11vw, 160px) 0;
}

.reel-section-new {
  grid-template-columns: 0.9fr 1.1fr;
}

.film-points {
  display: grid;
  gap: 0;
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.film-points li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.film-points span {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 18px;
}

.portrait-film {
  display: grid;
  grid-template-columns: minmax(270px, 390px) 1fr;
  gap: 26px;
  align-items: end;
  padding: 34px;
  background: #e9dfd2;
}

.portrait-film-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  padding: 10px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(47, 29, 24, 0.2);
}

.portrait-film-frame video {
  width: 100%;
  height: 100%;
  display: block;
  background: #1b1717;
  object-fit: cover;
}

.portrait-film-meta {
  display: grid;
  gap: 8px;
  padding-bottom: 4px;
}

.portrait-film-meta span {
  color: var(--wine);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.portrait-film-meta strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.reel-copy > p:not(.eyebrow) {
  margin: 30px 0;
  color: var(--muted);
  font-size: 14px;
}

.reel-player {
  aspect-ratio: 16 / 10;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 0;
  background: #d9d2c9;
  cursor: pointer;
}

.reel-player::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.44));
}

.reel-player > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  transition: transform 0.8s ease;
}

.reel-player:hover > img {
  transform: scale(1.03);
}

.play-button {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  color: var(--wine);
  background: rgba(255, 253, 249, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
  transition: transform 0.3s, background 0.3s;
}

.reel-player:hover .play-button {
  background: white;
  transform: translate(-50%, -50%) scale(1.08);
}

.play-button i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
}

.reel-duration,
.reel-label {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  color: white;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.reel-duration { right: 22px; }
.reel-label { left: 22px; }

.process {
  padding-top: 40px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 250px;
  padding: 26px 28px 0 0;
  position: relative;
}

.process-list li + li {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 22px;
}

.process-list h3 {
  margin: 70px 0 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 130px);
  padding: clamp(90px, 10vw, 140px) max(24px, calc((100vw - 1220px) / 2));
  color: white;
  background: var(--wine);
}

.contact .eyebrow,
.contact h2 em {
  color: #e2c48f;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}

.contact-details a {
  font-family: var(--serif);
  font-size: 20px;
}

.contact-details span {
  width: 70px;
  display: inline-block;
  color: #e2c48f;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.contact-card {
  align-self: center;
  padding: 42px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(48, 8, 16, 0.2);
}

.contact-card-label {
  color: var(--wine);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.contact-card h3 {
  margin: 12px 0 24px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
}

.contact-card ol {
  display: grid;
  gap: 0;
  margin: 0 0 30px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.contact-card li {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.contact-card li span {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 18px;
}

.contact-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.button-ghost-light {
  color: var(--wine);
  border-color: rgba(111, 24, 39, 0.3);
}

.button-ghost-light:hover {
  color: white;
  background: var(--wine);
  border-color: var(--wine);
}

.contact-card small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 10px;
}

.booking-form {
  display: grid;
  gap: 24px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 11px 0;
  color: white;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 0;
  outline: none;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  border-color: white;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

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

.booking-form .button {
  width: max-content;
  margin-top: 6px;
  border: 0;
}

.form-note {
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 70px max(24px, calc((100vw - 1220px) / 2)) 34px;
  position: relative;
  background: #140f10;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 4px;
  color: white;
}

.footer-brand .brand-crown {
  color: #d8b67f;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.1em;
}

.footer-brand small {
  font-size: 8px;
  letter-spacing: 0.4em;
}

.site-footer > p {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: white;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.copyright {
  grid-column: 1 / -1;
  margin: 36px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.35);
}

.floating-contact {
  display: grid;
  gap: 8px;
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
}

body.modal-open .floating-contact {
  opacity: 0;
  pointer-events: none;
}

.floating-contact a {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  color: white;
  background: var(--wine);
  box-shadow: 0 10px 30px rgba(54, 12, 20, 0.2);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.floating-contact a + a {
  background: #1877f2;
}

.floating-contact svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.floating-contact b {
  font: bold 21px Arial;
}

dialog {
  max-width: none;
  max-height: none;
  padding: 0;
  color: white;
  background: transparent;
  border: 0;
}

dialog::backdrop {
  background: rgba(14, 10, 10, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox[open] {
  width: min(920px, calc(100vw - 40px));
  display: grid;
  justify-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox p {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: 22px;
}

.modal-close {
  width: 44px;
  height: 44px;
  position: fixed;
  z-index: 3;
  top: 20px;
  right: 24px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.video-modal[open] {
  width: min(980px, calc(100vw - 40px));
  display: grid;
  gap: 14px;
  justify-items: center;
}

.video-shell {
  width: min(920px, 92vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #151111;
}

.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #111;
  object-fit: cover;
}

.video-modal > a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.toast {
  max-width: 380px;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  position: fixed;
  z-index: 150;
  right: 22px;
  bottom: 22px;
  color: white;
  background: #1d1918;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast strong {
  font-family: var(--serif);
  font-size: 22px;
}

.toast span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

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

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

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 42px;
  }

  .hero h1 { font-size: clamp(56px, 7.7vw, 80px); }
  .hero-visual { min-height: 580px; }
  .hero-image-wrap { width: 90%; }
  .hero-seal { left: -10px; }
  .hero-note { left: -10px; }

  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-card { min-height: 430px; padding: 27px; }
  .story { gap: 60px; }
  .gallery { grid-auto-rows: 230px; }
  .contact { grid-template-columns: 1fr 1.1fr; gap: 50px; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 36px, 680px); }

  .topbar { justify-content: space-between; font-size: 9px; }
  .topbar p { max-width: 60%; }

  .site-header { min-height: 72px; padding: 0 18px; }
  .brand strong { font-size: 21px; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 96px 24px 32px;
    width: 100vw;
    min-height: 100dvh;
    position: absolute;
    top: 0;
    left: -18px;
    z-index: 2;
    overflow-y: auto;
    background: var(--ivory);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.25s, transform 0.25s;
  }

  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { padding: 18px 4px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 28px; text-transform: none; }
  .main-nav .nav-cta { margin-top: 20px; text-align: center; font-family: var(--sans); font-size: 12px; text-transform: uppercase; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .hero-copy { max-width: 620px; }
  .hero h1 { font-size: clamp(60px, 15vw, 90px); }
  .hero-visual { min-height: 740px; }
  .hero-image-wrap { width: 86%; }
  .hero-note { left: 0; }
  .hero-seal { top: 35px; left: 0; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; }
  .service-icon { margin: 22px 0 18px; }

  .story { grid-template-columns: 1fr; padding-right: 18px; padding-left: 18px; }
  .story-collage { min-height: 630px; }
  .story-copy { max-width: 620px; }

  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
  .gallery-item-wide { grid-column: span 2; }

  .reel-section { grid-template-columns: 1fr; }
  .reel-copy { max-width: 590px; }

  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li:nth-child(3) { border-left: 0; }
  .process-list li:nth-child(n + 3) { border-top: 1px solid var(--line); }

  .contact { grid-template-columns: 1fr; padding-right: 18px; padding-left: 18px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-content: flex-end; }
  .site-footer > p:not(.copyright) { grid-column: 1 / -1; order: 3; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 30px); }
  .topbar { min-height: 32px; justify-content: center; }
  .topbar p { display: none; }
  .topbar a { border: 0; }

  .hero { gap: 38px; padding-top: 46px; padding-bottom: 56px; }
  .hero h1 { font-size: clamp(57px, 18vw, 78px); }
  .hero-description { margin-top: 26px; font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-meta { margin-top: 40px; }
  .hero-meta strong { font-size: 20px; }
  .hero-meta span { font-size: 8px; }
  .hero-meta > div + div { padding-left: 12px; }
  .hero-visual { min-height: 560px; }
  .hero-image-wrap { width: 92%; }
  .hero-note { width: 58%; min-height: 118px; bottom: 22px; padding: 18px; }
  .hero-note p { font-size: 19px; }
  .hero-seal { width: 98px; height: 98px; top: 22px; }
  .hero-seal strong { font-size: 28px; }

  .section { padding-top: 88px; padding-bottom: 88px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2, .story h2, .reel-section h2, .contact h2 { font-size: 46px; }

  .story { min-height: auto; gap: 54px; padding-top: 86px; padding-bottom: 86px; }
  .story-collage { min-height: 480px; }
  .story-main { width: 80%; height: 430px; }
  .story-small { width: 45%; }
  .story-tag { display: none; }

  .gallery { grid-template-columns: 1fr; grid-auto-rows: 420px; }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 1; }
  .gallery-item span { opacity: 1; transform: none; }

  .reel-section { gap: 46px; }
  .reel-player { aspect-ratio: 4 / 5; }

  .process-list { grid-template-columns: 1fr; }
  .process-list li,
  .process-list li + li { min-height: 170px; padding: 22px 0; border-left: 0; border-top: 1px solid var(--line); }
  .process-list h3 { margin-top: 36px; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 27px 22px; }
  .contact-details a { font-size: 16px; word-break: break-word; }

  .site-footer { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
  .site-footer > p:not(.copyright) { grid-column: 1; }

  .floating-contact { right: 12px; bottom: 12px; }
  .floating-contact a { width: 46px; padding: 0; justify-content: center; }
  .floating-contact span { display: none; }
}

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

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

@media (max-width: 820px) {
  .reel-section-new {
    grid-template-columns: 1fr;
  }

  .portrait-film {
    grid-template-columns: minmax(260px, 390px) 1fr;
  }

  .contact-card {
    max-width: 680px;
  }
}

@media (max-width: 560px) {
  .portrait-film {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .portrait-film-frame {
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .portrait-film-meta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-card-actions {
    display: grid;
  }

  .contact-card-actions .button {
    width: 100%;
  }
}
