/* ── Reset & Variables ─────────────────────────────────────── */
:root {
  --bg:       #ffffff;
  --text:     #111111;
  --muted:    #606060;
  --line:     #e0dedd;
  --font:     'Outfit', 'Arial', sans-serif;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --expo:     cubic-bezier(0.76, 0, 0.24, 1);
  --pad:      clamp(16px, 1.8vw, 32px);
  --max:      1920px;
  --showreel-bg:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.62) 0, rgba(255, 255, 255, 0) 20%),
    radial-gradient(circle at 78% 24%, rgba(255, 240, 196, 0.52) 0, rgba(255, 240, 196, 0) 19%),
    linear-gradient(135deg, #d9d2c8 0%, #b7ab9c 34%, #796f63 64%, #4f4741 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.22;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img,
video {
  display: block;
  width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font-family: var(--font);
  color: inherit;
}

/* ── Page Shell ────────────────────────────────────────────── */
.page-shell {
  margin: 0 auto;
  max-width: var(--max);
  min-height: 100vh;
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px var(--pad);
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 300ms var(--ease), backdrop-filter 300ms var(--ease);
  z-index: 80;
}

.site-header.scrolled {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
}

.logo {
  display: inline-flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.header-right {
  align-items: center;
  display: flex;
}

.header-contact,
.menu-toggle {
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  line-height: 1;
}

.header-contact {
  padding: 0 26px;
}

.header-contact:hover {
  opacity: 0.6;
  transition: opacity 200ms;
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle:hover {
  opacity: 0.6;
  transition: opacity 200ms;
}

/* ── Menu Overlay ──────────────────────────────────────────── */
.menu-panel {
  background: #111;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  inset: 0;
  overflow-y: auto;
  padding: 14px var(--pad) 32px;
  pointer-events: none;
  position: fixed;
  transition: clip-path 700ms var(--expo);
  z-index: 90;
}

.menu-panel.open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: auto;
}

.menu-head {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.menu-head .logo {
  color: var(--bg);
}

.menu-close {
  background: transparent;
  border: 0;
  color: var(--bg);
  cursor: pointer;
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.menu-close:hover {
  opacity: 0.6;
  transition: opacity 200ms;
}

.menu-links {
  display: grid;
  gap: 2px;
  margin: auto 0;
  padding: 32px 0;
}

.menu-links a {
  font-size: clamp(54px, 9.5vw, 178px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.91;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 580ms var(--ease), opacity 500ms var(--ease), color 200ms;
  text-transform: lowercase;
}

.menu-panel.open .menu-links a {
  opacity: 1;
  transform: translateY(0);
}

.menu-panel.open .menu-links a:nth-child(1) { transition-delay: 80ms; }
.menu-panel.open .menu-links a:nth-child(2) { transition-delay: 120ms; }
.menu-panel.open .menu-links a:nth-child(3) { transition-delay: 160ms; }
.menu-panel.open .menu-links a:nth-child(4) { transition-delay: 200ms; }
.menu-panel.open .menu-links a:nth-child(5) { transition-delay: 240ms; }
.menu-panel.open .menu-links a:nth-child(6) { transition-delay: 280ms; }

.menu-links a:hover {
  color: rgba(248, 247, 244, 0.38);
  text-decoration: underline;
  text-underline-offset: 0.08em;
}

.menu-foot {
  border-top: 1px solid rgba(248, 247, 244, 0.18);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 20px;
}

.menu-foot p,
.menu-foot a {
  display: block;
  color: rgba(248, 247, 244, 0.6);
  font-size: 14px;
  line-height: 1.3;
}

.menu-foot a:hover {
  color: var(--bg);
  transition: color 200ms;
}

/* ── Page Revealer ─────────────────────────────────────────── */
.revealer {
  background: #111;
  inset: 0;
  pointer-events: none;
  position: fixed;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 900ms var(--expo);
  z-index: 100;
}

.revealer.gone {
  transform: scaleY(0);
}

/* ── Main ──────────────────────────────────────────────────── */
main {
  padding-top: 70px;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding: 24px var(--pad) 28px;
}

.hero-title {
  display: grid;
  font-size: clamp(74px, 13.8vw, 256px);
  font-weight: 800;
  letter-spacing: -0.048em;
  line-height: 0.89;
  margin-top: 14px;
  text-transform: lowercase;
}

.hero-subline {
  display: inline-block;
  min-height: 1em;
  position: relative;
}

.hero-cycle {
  display: inline-grid;
  overflow: hidden;
  vertical-align: bottom;
}

.hero-cycle > span {
  grid-area: 1 / 1;
  opacity: 0;
  padding-top: 0.06em;
  transform: translateY(108%);
  transition: transform 700ms var(--expo), opacity 500ms var(--ease);
  white-space: nowrap;
}

.hero-cycle > span.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-cycle > span.exit {
  opacity: 0;
  transform: translateY(-108%);
}

/* ── Shrink zone ───────────────────────────────────────────── */
.showreel-stage {
  padding: 14px 0 0;
}

.shrink-zone {
  height: calc(100vh + 220px);
  position: relative;
}

.shrink-origin {
  background: var(--showreel-bg);
  border-radius: 2px;
  height: clamp(320px, 39vw, 548px);
  margin: 0 var(--pad);
  width: calc(100% - (var(--pad) * 2));
}

/* Compact sticky row — the destination the media animates into */
.shrink-sticky {
  align-items: start;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: block;
  min-height: clamp(280px, 33vw, 420px);
  padding: 34px clamp(190px, 20vw, 300px) 34px var(--pad);
  position: sticky;
  top: 70px;
  z-index: 15;
}

.shrink-copy p {
  color: #000;
  font-size: clamp(52px, 6.9vw, 114px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 0.88;
  max-width: 15.5ch;
}

.shrink-sticky .pill {
  position: absolute;
  right: var(--pad);
  top: 34px;
}

/* Inline destination measured by JS for the fixed media box */
.shrink-inline-slot {
  background: var(--showreel-bg);
  border-radius: 2px;
  display: inline-block;
  height: clamp(92px, 10vw, 146px);
  margin: 0 0.12em;
  opacity: 0;
  pointer-events: none;
  vertical-align: -0.12em;
  visibility: hidden;
  width: clamp(150px, 15.5vw, 230px);
}

/* Floating media — position:fixed so it can travel freely across viewport */
.shrink-media {
  background: #efeee9;
  border-radius: 2px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  transform-origin: top left;
  visibility: hidden;
  z-index: 14;
}

.hero-media-inner {
  background: var(--showreel-bg);
  height: 100%;
  width: 100%;
}

.hero-output {
  display: inline-block;
  min-width: 6.8ch;
}

/* ── Marquee ───────────────────────────────────────────────── */
.marquee-section {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  padding-right: 28px;
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.44);
}

.marquee-inner span:nth-child(even) {
  font-size: 0.5em;
  opacity: 0.5;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Pills ─────────────────────────────────────────────────── */
.pill,
.pill-dark {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  gap: 8px;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 16px 32px;
  text-transform: lowercase;
  transition: background 200ms, color 200ms, border-color 200ms;
  white-space: nowrap;
}

.pill {
  border: 1px solid var(--text);
}

.pill:hover {
  background: var(--text);
  color: var(--bg);
}

.pill-dark {
  background: var(--text);
  border: 1px solid var(--text);
  color: var(--bg);
}

.pill-dark:hover {
  background: transparent;
  color: var(--text);
}

/* ── Sections ──────────────────────────────────────────────── */
.section {
  border-bottom: 1px solid var(--line);
  padding: clamp(44px, 7.5vw, 112px) var(--pad);
}

.section-header {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-eyebrow {
  font-size: clamp(15px, 1.5vw, 26px);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.section-title {
  font-size: clamp(38px, 5.2vw, 98px);
  font-weight: 800;
  letter-spacing: -0.044em;
  line-height: 0.93;
  text-transform: lowercase;
}

/* ── Cards ─────────────────────────────────────────────────── */
.grid-2,
.grid-3 {
  display: grid;
  gap: clamp(12px, 1.6vw, 24px);
}

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

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

.card {
  overflow: hidden;
}

.card-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(140deg, #e8e8e4 0%, #c0bfba 100%);
}

.card-content {
  display: grid;
  gap: 5px;
  padding: 16px 0 20px;
}

.card-title {
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-transform: lowercase;
}

.card-meta {
  color: var(--muted);
  font-size: 15px;
  letter-spacing: -0.01em;
}

/* ── What We Do ────────────────────────────────────────────── */
.what-shell {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.what-tabs {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.what-tabs-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 1.5vw, 24px);
  margin-top: auto;
  padding: clamp(16px, 2vw, 28px) 22px;
}

.what-tab {
  align-items: baseline;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 20px 22px;
  text-align: left;
  transition: color 200ms;
}

.what-tab:last-child {
  border-bottom: 0;
}

.what-tab:hover {
  color: var(--text);
}

.what-tab-num {
  font-size: 13px;
  margin-right: 14px;
  padding-top: 4px;
}

.what-tab-label {
  font-size: clamp(28px, 3.6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 0.9;
  text-transform: lowercase;
}

.what-tab.active {
  color: var(--text);
}

.what-panels {
  position: relative;
}

.what-panel {
  display: none;
  gap: 22px;
  padding: 24px 24px 28px;
}

.what-panel.active {
  display: grid;
}

.what-list {
  display: grid;
  gap: 6px;
}

.what-list p {
  font-size: clamp(17px, 1.6vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-transform: lowercase;
  transition: opacity 200ms;
}

.what-list p:hover {
  opacity: 0.5;
}

.what-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #e8e8e4, #c0bfba);
}

.what-footer-text {
  color: var(--muted);
  font-size: clamp(13px, 1.2vw, 18px);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

/* ── Copy Large ────────────────────────────────────────────── */
.copy-large {
  font-size: clamp(28px, 3.8vw, 76px);
  font-weight: 400;
  letter-spacing: -0.038em;
  line-height: 0.97;
  max-width: 18ch;
}

/* ── Office Photo ──────────────────────────────────────────── */
.office-section {
  border-bottom: 1px solid var(--line);
  padding: clamp(16px, 2vw, 28px) var(--pad);
}

.office-media-inner {
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, #d8d7d4 0%, #b8b7b2 100%);
  width: 100%;
}

/* ── About Section ─────────────────────────────────────────── */
.about-section {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 7vw, 88px) var(--pad);
}

.about-label {
  font-size: clamp(16px, 1.5vw, 26px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: clamp(24px, 3vw, 42px);
  text-transform: lowercase;
}

.about-text {
  font-size: clamp(46px, 5.8vw, 108px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 0.9;
  max-width: 14ch;
  text-transform: lowercase;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: clamp(28px, 4vw, 52px);
}


/* ── Contact Section ───────────────────────────────────────── */
.contact-section {
  padding-bottom: clamp(32px, 5vw, 72px);
}

.contact-pre {
  font-size: clamp(14px, 1.3vw, 22px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: clamp(14px, 2vw, 28px);
  opacity: 0.55;
  text-transform: lowercase;
}

.contact-large {
  font-size: clamp(72px, 13.5vw, 250px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.87;
  text-transform: lowercase;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: clamp(20px, 3vw, 38px);
}

.contact-details a {
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: lowercase;
  transition: opacity 200ms;
}

.contact-details a:hover {
  opacity: 0.5;
}

/* ── Locations ─────────────────────────────────────────────── */
.locations-section {
  padding-top: 0;
}

.locations-grid {
  display: grid;
  gap: clamp(24px, 3vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 800px;
}

.location-name {
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  text-transform: lowercase;
}

.location-addr {
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: -0.01em;
  line-height: 1.5;
  text-transform: lowercase;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 46px) var(--pad) 20px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
}

.footer-brand-large {
  display: inline-grid;
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 0.85;
  text-transform: lowercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  font-size: clamp(18px, 1.8vw, 30px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.97;
  text-decoration: none;
  text-transform: lowercase;
  transition: opacity 200ms, text-decoration 200ms;
}

.footer-links a:hover {
  opacity: 0.5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  font-size: clamp(13px, 1.2vw, 20px);
  font-weight: 400;
  letter-spacing: -0.02em;
  opacity: 0.5;
  text-align: right;
  text-transform: lowercase;
}

/* ── Horizontal Scroll Sections ───────────────────────────── */
.hscroll-section {
  border-bottom: 1px solid var(--line);
  padding: clamp(36px, 6vw, 90px) 0 0;
}

.hscroll-header {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 0 var(--pad);
}

.hscroll-track {
  cursor: grab;
  display: flex;
  gap: clamp(12px, 1.4vw, 20px);
  overflow-x: auto;
  padding: 0 var(--pad) clamp(28px, 4vw, 56px);
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  user-select: none;
}

.hscroll-track::-webkit-scrollbar {
  display: none;
}

.hscroll-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.hscroll-card {
  flex: 0 0 clamp(260px, 32vw, 460px);
  scroll-snap-align: start;
}

.hscroll-card--tall {
  flex: 0 0 clamp(220px, 28vw, 400px);
}

.hscroll-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(140deg, #e8e8e4 0%, #c0bfba 100%);
  width: 100%;
  overflow: hidden;
  transition: transform 500ms var(--ease);
}

.hscroll-media--tall {
  aspect-ratio: 4 / 5;
}

.hscroll-card:hover .hscroll-media {
  transform: scale(1.02);
}

.hscroll-info {
  padding: 14px 0 18px;
  display: grid;
  gap: 4px;
}

.hscroll-title {
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-transform: lowercase;
}

.hscroll-meta {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.01em;
}

/* ── Booking Popup ─────────────────────────────────────────── */
.booking-popup {
  align-items: center;
  background: #f0e620;
  border: 1.5px solid #111;
  bottom: 16px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  left: 50%;
  max-width: 1360px;
  padding: 20px clamp(16px, 2vw, 32px);
  position: fixed;
  transform: translateX(-50%) translateY(0);
  transition: transform 500ms var(--expo), opacity 400ms var(--ease);
  width: calc(100% - 32px);
  z-index: 85;
}

.booking-popup.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(120%);
}

.booking-popup-inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

.booking-title {
  font-size: clamp(18px, 2.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  max-width: 18ch;
  text-transform: lowercase;
}

.booking-sub {
  font-size: clamp(14px, 1.4vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 28ch;
  opacity: 0.75;
}

.booking-cta {
  align-items: center;
  border: 1.5px solid #111;
  border-radius: 999px;
  display: inline-flex;
  font-size: clamp(14px, 1.4vw, 22px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  padding: 12px 22px;
  text-transform: lowercase;
  white-space: nowrap;
  transition: background 200ms, color 200ms;
  flex-shrink: 0;
}

.booking-cta:hover {
  background: #111;
  color: #f0e620;
}

.booking-close {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  padding: 4px 8px;
  flex-shrink: 0;
  transition: opacity 200ms;
}

.booking-close:hover {
  opacity: 0.5;
}

@media (max-width: 760px) {
  .booking-popup-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .booking-title,
  .booking-sub {
    max-width: none;
  }
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 720ms var(--ease), opacity 560ms var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 800ms var(--ease), opacity 600ms var(--ease);
}

.reveal-stagger.in span {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in span:nth-child(1) { transition-delay: 100ms; }
.reveal-stagger.in span:nth-child(2) { transition-delay: 200ms; }
.reveal-stagger.in span:nth-child(3) { transition-delay: 300ms; }

/* ── Contact Page ──────────────────────────────────────────── */
.contact-main-section {
  padding-top: clamp(100px, 12vw, 180px);
}

.contact-grid {
  display: grid;
  gap: clamp(40px, 6vw, 120px);
  grid-template-columns: 1fr 1.15fr;
  align-items: start;
}

.contact-hero-title {
  font-size: clamp(48px, 6vw, 110px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin-bottom: clamp(32px, 4vw, 56px);
  max-width: 10ch;
}

.contact-links-large {
  display: grid;
  gap: 16px;
}

.info-link-bold {
  display: inline-block;
  font-size: clamp(28px, 3.2vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-decoration: underline;
  text-underline-offset: 0.12em;
  transition: opacity 200ms;
  width: fit-content;
}

.info-link-bold:hover {
  opacity: 0.5;
}

.contact-form {
  display: grid;
  gap: clamp(32px, 4vw, 52px);
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.input-group label {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.input-group input,
.input-group textarea {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--line);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  padding: 8px 0 16px;
  transition: border-color 300ms var(--ease);
  width: 100%;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--text);
  outline: none;
}

.input-group textarea {
  resize: none;
  min-height: 1.5em;
  overflow: hidden;
}

.form-footer {
  display: grid;
  gap: 24px;
  margin-top: 12px;
}

.form-disclaimer {
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.checkbox-group {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  accent-color: #000;
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.checkbox-group label {
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.form-submit {
  justify-content: space-between;
  margin-top: 12px;
  padding: 18px 36px;
  width: fit-content;
}

.form-submit .arrow {
  margin-left: 20px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shrink-copy {
    width: 52%;
  }

  .menu-foot {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}

/* ── Tablet / large phones ─────────────────────────────────── */
@media (max-width: 760px) {
  /* Always show header background on mobile — no transparent header */
  .site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }

  /* Larger touch target for menu button */
  .menu-toggle {
    font-size: 18px;
    padding: 6px 0 6px 12px;
  }

  .header-contact {
    display: none;
  }

  /* Shrink animation: disable on mobile — show static layout */
  .shrink-zone {
    height: auto;
  }

  .showreel-stage {
    padding-top: 12px;
  }

  .shrink-origin {
    margin-bottom: 20px;
  }

  .shrink-sticky {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: auto;
    position: relative;
    top: auto;
  }

  /* On mobile, show a static media box above the text */
  .shrink-copy {
    width: 100%;
  }

  .shrink-inline-slot {
    display: none;
  }

  /* Hide the fixed floating media on mobile */
  .shrink-media {
    display: none;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .what-shell {
    grid-template-columns: 1fr;
  }

  .what-tabs {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  /* Pills */
  .pill,
  .pill-dark {
    font-size: 17px;
    padding: 13px 24px;
  }

  /* Hero */
  .hero {
    padding-bottom: 0;
  }

  .hero-title {
    font-size: clamp(52px, 20vw, 110px);
  }

  /* About */
  .about-text {
    font-size: clamp(42px, 13vw, 92px);
    max-width: 11ch;
  }

  /* Footer */
  .footer-brand-large {
    font-size: clamp(40px, 13vw, 86px);
  }

  /* Menu */
  .menu-links a {
    font-size: clamp(44px, 16vw, 96px);
  }

  /* Horizontal scroll cards: show ~1.2 cards at once */
  .hscroll-card {
    flex: 0 0 78vw;
  }

  .hscroll-card--tall {
    flex: 0 0 68vw;
  }

  /* Contact */
  .contact-large {
    font-size: clamp(52px, 17vw, 180px);
  }

  /* Booking popup: full-width at bottom, compact */
  .booking-popup {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    bottom: 0;
    flex-direction: column;
    gap: 12px;
    left: 0;
    right: 0;
    transform: translateY(0);
    width: 100%;
  }

  .booking-popup.hidden {
    transform: translateY(110%);
  }

  .booking-popup-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .booking-title {
    font-size: clamp(18px, 5vw, 26px);
  }

  .booking-sub {
    font-size: 14px;
  }

  .booking-cta {
    font-size: 15px;
    padding: 10px 18px;
  }
}

/* ── Small phones (< 480px) ────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --pad: 14px;
  }

  .logo {
    font-size: 15px;
  }

  .hero-title {
    font-size: clamp(70px, 12vw, 240px);
  }

  .hero-cycle span {
    font-size: inherit;
  }

  .hscroll-card {
    flex: 0 0 86vw;
  }

  .hscroll-card--tall {
    flex: 0 0 74vw;
  }

  .pill,
  .pill-dark {
    font-size: 15px;
    padding: 11px 20px;
  }

  .about-text {
    font-size: clamp(38px, 12vw, 72px);
  }

  .footer-brand-large {
    font-size: clamp(34px, 12vw, 64px);
  }

  .menu-links a {
    font-size: clamp(38px, 14vw, 72px);
  }

  .what-tab-label {
    font-size: 14px;
  }

  .what-tab-num {
    font-size: 12px;
  }

  .section-title {
    font-size: clamp(32px, 9vw, 60px);
  }

  .copy-large {
    font-size: clamp(26px, 7.5vw, 52px);
  }

  .contact-large {
    font-size: clamp(44px, 15vw, 140px);
  }

  .footer-grid {
    gap: 16px;
  }
}
