:root {
  --paper: #faf8f5;
  --paper-soft: #ffffff;
  --paper-deep: #f2ece3;
  --ink: #0d1322;
  --ink-soft: #374151;
  --muted: #6b7280;
  --copper: #c8682e;
  --ember: #ea580c;
  --rose: #db2777;
  --violet: #7c3aed;
  --olive: #65a30d;
  --blue: #2563eb;
  --emerald: #059669;
  --gold: #d97706;
  --white: #ffffff;
  --line: rgba(13, 19, 34, 0.08);
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 10px 30px rgba(13, 19, 34, 0.05);
  --shadow-md: 0 18px 40px rgba(13, 19, 34, 0.08);
  --shadow-lg: 0 28px 70px rgba(13, 19, 34, 0.14);
  --display: "Italiana", "Cormorant Garamond", serif;
  --serif: "Cormorant Garamond", serif;
  --sans: "Syne", sans-serif;
  --body: "Plus Jakarta Sans", sans-serif;
  --container: 1240px;
  --header-height: 82px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 350;
  letter-spacing: 0.01em;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; }
button, select { cursor: pointer; }
::selection { background: var(--copper); color: var(--paper-soft); }

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.container-wide { width: min(calc(100% - 32px), 1440px); margin-inline: auto; }
.section-pad { padding-block: clamp(88px, 10vw, 150px); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--ember), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(245, 239, 232, 0.91);
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(45, 25, 15, 0.06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(calc(100% - 48px), 1380px);
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark, .footer-mark {
  position: relative;
  width: 48px;
  height: 48px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1.5px solid rgba(200, 104, 46, 0.35);
  border-radius: 50%;
  background: #080d1a;
  box-shadow: var(--shadow-sm);
}
.brand-mark img, .footer-mark img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transform: none;
}
.brand-name { display: grid; line-height: 1.05; }
.brand-name strong { font-family: var(--display); font-size: 14px; letter-spacing: 0.13em; }
.brand-name small { margin-top: 6px; color: var(--muted); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(20px, 2.8vw, 44px); }
.desktop-nav a { position: relative; padding: 10px 0; color: var(--ink-soft); font-size: 13px; font-weight: 400; letter-spacing: 0.03em; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 4px; height: 1px; background: var(--copper); transform: scaleX(0); transform-origin: right; transition: transform 0.25s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.7);
  place-items: center;
}
.menu-toggle span { grid-area: 1 / 1; width: 18px; height: 1.5px; background: var(--ink); transition: transform 0.25s var(--ease); }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 auto;
  max-height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  padding: 26px 24px 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.98);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.mobile-nav a { display: flex; align-items: center; min-height: 52px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 26px; font-weight: 400; letter-spacing: 0.02em; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 0.22s var(--ease), background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button-solid { background: var(--ink); color: var(--paper-soft); box-shadow: 0 10px 28px rgba(11, 19, 41, 0.16); }
.button-solid:hover { background: linear-gradient(135deg, var(--copper) 0%, var(--ember) 100%); color: #ffffff; box-shadow: 0 14px 34px rgba(224, 108, 40, 0.32); }
.button-ghost { border-color: var(--line); background: rgba(255, 255, 255, 0.85); box-shadow: var(--shadow-sm); }
.button-ghost:hover { border-color: var(--copper); background: #ffffff; color: var(--copper); box-shadow: var(--shadow-md); }
.button-outline { border-color: var(--ink); background: transparent; }
.button-outline:hover { background: var(--ink); color: var(--paper-soft); }
.header-cta { min-height: 44px; padding-inline: 18px; }

.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--copper); font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: linear-gradient(90deg, var(--copper), var(--ember)); }
.eyebrow-light { color: rgba(255, 250, 244, 0.78); }
.eyebrow-light > span { background: var(--ember); }

@keyframes ambientAuroraShift {
  0% {
    filter: hue-rotate(0deg);
    transform: rotate(0deg) scale(1);
  }
  50% {
    filter: hue-rotate(90deg);
    transform: rotate(180deg) scale(1.08);
  }
  100% {
    filter: hue-rotate(0deg);
    transform: rotate(360deg) scale(1);
  }
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(54px, 6vw, 90px));
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(200, 104, 46, 0.13), transparent 36%),
    radial-gradient(circle at 90% 16%, rgba(124, 58, 237, 0.12), transparent 36%),
    radial-gradient(circle at 50% 85%, rgba(217, 119, 6, 0.07), transparent 45%),
    var(--paper);
}
.hero::before { content: ""; position: absolute; inset: var(--header-height) 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }
.hero-orbit { position: absolute; border: 1px solid rgba(200, 104, 46, 0.2); border-radius: 50%; pointer-events: none; animation: ambientAuroraShift 24s linear infinite; }
.orbit-one { width: 540px; height: 540px; right: -150px; top: 12%; }
.orbit-two { width: 780px; height: 780px; right: -270px; top: 1%; animation-duration: 36s; animation-direction: reverse; }
.hero-grid { min-height: calc(100svh - var(--header-height) - 180px); display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.76fr); align-items: center; gap: clamp(60px, 8vw, 130px); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { margin-top: 22px; max-width: 780px; font-family: var(--display); font-size: clamp(62px, 8.4vw, 126px); font-weight: 400; letter-spacing: 0.01em; line-height: 0.96; }
.role-wrap { display: block; min-height: 1.04em; padding-right: 0.08em; }
.role-word {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.04em;
  color: var(--copper);
  background: linear-gradient(135deg, #c8682e 0%, #ea580c 40%, #db2777 75%, #7c3aed 100%);
  background-size: 200% 200%;
  animation: gradientFlow 8s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), filter 0.25s var(--ease);
}
.role-word.is-changing { opacity: 0; transform: translateY(15px); filter: blur(5px); }
.role-word.tone-1 { background-image: linear-gradient(90deg, var(--violet), var(--rose)); }
.hero-intro { max-width: 610px; margin-top: 30px; color: var(--ink-soft); font-size: clamp(17px, 1.3vw, 20px); font-weight: 350; letter-spacing: 0.01em; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.role-control { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 250, 244, 0.48); color: var(--muted); font-size: 10px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease); }
.role-control:hover { border-color: var(--copper); background: var(--paper-soft); color: var(--ink); }
.role-control svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.role-control .resume-icon { display: none; }
.role-control[aria-pressed="true"] .pause-icon { display: none; }
.role-control[aria-pressed="true"] .resume-icon { display: block; }
.button:active, .role-control:active, .film-card:active, .social-card:active { transform: scale(0.98); }
.availability { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin-top: 32px; color: var(--muted); font-size: 12px; }
.availability b { color: var(--ink-soft); font-weight: 400; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #5f9d59; box-shadow: 0 0 0 5px rgba(95, 157, 89, 0.12); }

.hero-visual { position: relative; z-index: 1; width: min(100%, 520px); justify-self: end; }
.hero-number { position: absolute; right: -8px; top: -54px; z-index: -1; color: rgba(180, 95, 61, 0.12); font-family: var(--display); font-size: 150px; font-weight: 300; line-height: 1; }
.portrait-frame { position: relative; aspect-ratio: 0.78; overflow: hidden; border: 1px solid rgba(29, 23, 19, 0.19); border-radius: 46% 46% 20px 20px; background: #bba18e; box-shadow: var(--shadow-lg); }
.portrait-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(18, 12, 9, 0.76)); pointer-events: none; }
.portrait-frame > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; transition: transform 0.8s var(--ease); }
.portrait-frame:hover > img { transform: scale(1.025); }
.portrait-glow { position: absolute; inset: 9% 12% auto; z-index: 1; height: 50%; border-radius: 50%; background: radial-gradient(circle, rgba(255, 213, 183, 0.18), transparent 65%); pointer-events: none; }
.portrait-caption { position: absolute; inset: auto 28px 25px; z-index: 2; display: grid; color: var(--white); }
.portrait-caption span { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; font-weight: 350; }
.portrait-caption b { margin-top: 4px; font-family: var(--display); font-size: 22px; font-weight: 400; }
.hero-emblem {
  position: absolute;
  left: -82px;
  top: 14%;
  width: 180px;
  height: 180px;
  overflow: hidden;
  border: 1.5px solid rgba(200, 104, 46, 0.35);
  border-radius: 50%;
  background: #080d1a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: rotate(-7deg);
}
.hero-emblem img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transform: none;
}
.float-tag { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 11px 15px; border: 1px solid rgba(29, 23, 19, 0.13); border-radius: 999px; background: rgba(255, 250, 244, 0.9); box-shadow: var(--shadow-sm); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); font-size: 11px; font-weight: 400; letter-spacing: 0.04em; }
.float-tag svg { width: 16px; height: 16px; fill: none; stroke: var(--copper); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.tag-code { right: -38px; top: 31%; }
.tag-film { left: -50px; bottom: 15%; }
.hero-stats { margin-top: 54px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-stats div { min-height: 92px; display: flex; align-items: baseline; justify-content: center; gap: 10px; padding: 20px; border-right: 1px solid var(--line); }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { font-family: var(--display); font-size: 38px; font-weight: 400; }
.hero-stats span { color: var(--muted); font-size: 10.5px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; }

.section-head { margin-bottom: clamp(42px, 6vw, 78px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 0.38fr); align-items: end; gap: 50px; }
.section-head h2 { max-width: 850px; margin-top: 18px; font-family: var(--display); font-size: clamp(44px, 5.4vw, 78px); font-weight: 400; letter-spacing: 0.005em; line-height: 1.04; }
.section-head h2 em, .about-copy h2 em, .booking-copy h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--copper); }
.section-head > p { color: var(--muted); font-size: 15px; font-weight: 350; line-height: 1.7; }
.work { background: var(--paper-soft); }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.project-card { position: relative; min-width: 0; min-height: 390px; display: flex; flex-direction: column; padding: clamp(26px, 3vw, 42px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.22); overflow: hidden; transition: background 0.3s var(--ease), transform 0.3s var(--ease); }
.project-card:hover { z-index: 2; background: var(--white); transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.project-card-featured { grid-column: span 2; background: var(--ink); color: var(--paper-soft); }
.project-card-featured:hover { background: #161e33; }
.project-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: rgba(200,104,46,0.12); color: var(--copper); }
.project-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.project-card-featured .project-icon { background: rgba(255,250,244,0.12); color: #f1a47c; }
.icon-rose { color: var(--rose); background: rgba(219,39,119,0.12); }
.icon-olive { color: var(--olive); background: rgba(101,163,13,0.12); }
.icon-violet { color: var(--violet); background: rgba(124,58,237,0.12); }
.icon-blue { color: var(--blue); background: rgba(37,99,235,0.12); }
.project-meta { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.project-meta span { padding: 5px 9px; border: 1px solid currentColor; border-radius: 999px; color: var(--copper); }
.project-card-featured .project-meta span { color: #f1a47c; }
.project-meta b { color: var(--muted); font-weight: 500; }
.project-card-featured .project-meta b { color: rgba(255,250,244,0.55); }
.project-card h3 { margin-top: 18px; max-width: 520px; font-family: var(--display); font-size: clamp(30px, 3.2vw, 45px); font-weight: 400; letter-spacing: 0.005em; line-height: 1.05; }
.project-card p { max-width: 560px; margin-top: 16px; color: var(--muted); font-size: 14px; }
.project-card-featured p { color: rgba(255,250,244,0.62); }
.project-card > a { width: fit-content; display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 28px; font-size: 10.5px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
.project-card > a svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform 0.2s var(--ease); }
.project-card > a:hover svg { transform: translateX(4px); }
.card-index { position: absolute; top: 32px; right: 32px; color: rgba(29,23,19,0.23); font-family: var(--display); font-size: 16px; }
.project-card-featured .card-index { color: rgba(255,250,244,0.28); }
.view-more { margin-top: 36px; display: flex; justify-content: center; }
.view-more .button { min-width: min(100%, 390px); justify-content: space-between; }
.view-more .button span { color: var(--muted); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.view-more .button:hover span { color: rgba(255,250,244,0.65); }

.films { position: relative; overflow: hidden; background: #171311; color: var(--paper-soft); }
.film-noise { position: absolute; inset: 0; opacity: 0.26; pointer-events: none; background: radial-gradient(circle at 15% 30%, rgba(230,111,67,0.24), transparent 26%), radial-gradient(circle at 90% 85%, rgba(122,83,219,0.12), transparent 24%); }
.films > *:not(.film-noise) { position: relative; z-index: 1; }
.section-head-dark h2 em { color: #ef946b; }
.section-head-dark > p, .section-head-dark .eyebrow { color: rgba(255,250,244,0.58); }
.film-shell { overflow: hidden; }
.film-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(270px, 23vw); gap: 14px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; padding: 10px 2px 22px; }
.film-rail::-webkit-scrollbar { display: none; }
.film-card { position: relative; min-height: 400px; display: flex; flex-direction: column; align-items: flex-start; padding: 28px; overflow: hidden; scroll-snap-align: start; border: 1px solid var(--line-dark); border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(255,250,244,0.08), rgba(255,250,244,0.02)); color: var(--paper-soft); text-align: left; transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease); }
.film-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,10,8,0.18) 0%, rgba(15,10,8,0.12) 32%, rgba(15,10,8,0.9) 100%); pointer-events: none; }
.film-cover { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; transition: transform 0.7s var(--ease), filter 0.4s var(--ease); }
.film-card:hover { transform: translateY(-6px); border-color: rgba(239,148,107,0.52); }
.film-card:hover .film-cover { transform: scale(1.055); filter: saturate(1.08) contrast(1.04); }
.film-index { position: relative; z-index: 2; color: rgba(255,250,244,0.72); font-size: 11px; letter-spacing: 0.14em; }
.play-mark { position: relative; z-index: 2; width: 70px; height: 70px; display: grid; place-items: center; margin-top: 54px; border: 1px solid rgba(255,250,244,0.5); border-radius: 50%; background: rgba(20,14,11,0.42); backdrop-filter: blur(8px); }
.play-mark svg { width: 28px; height: 28px; fill: none; stroke: #f1a47c; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.film-card > span:last-child { position: relative; z-index: 2; display: grid; margin-top: auto; }
.film-card small { color: #ef946b; font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase; }
.film-card strong { margin-top: 8px; font-family: var(--display); font-size: 28px; font-weight: 400; line-height: 1.05; }
.film-card b { margin-top: 5px; color: rgba(255,250,244,0.72); font-size: 11px; font-weight: 350; }
.film-controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 20px; color: rgba(255,250,244,0.48); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.film-controls > div { display: flex; gap: 8px; }
.film-controls button { width: 48px; height: 48px; border: 1px solid var(--line-dark); border-radius: 50%; background: transparent; color: var(--paper-soft); transition: border-color 0.2s var(--ease), background 0.2s var(--ease); }
.film-controls button:hover { border-color: #ef946b; background: rgba(239,148,107,0.1); }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-width: 0; min-height: 350px; display: flex; flex-direction: column; padding: clamp(25px, 3vw, 38px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.service-card > span { color: var(--muted); font-size: 10px; letter-spacing: 0.12em; font-weight: 400; }
.service-card > svg { width: 36px; height: 36px; margin-top: 44px; fill: none; stroke: var(--copper); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-top: 26px; font-family: var(--display); font-size: 30px; font-weight: 400; letter-spacing: 0.005em; }
.service-card p { margin-top: 12px; color: var(--muted); font-size: 14px; font-weight: 350; line-height: 1.7; }
.service-card a { width: fit-content; display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 24px; font-size: 10.5px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
.service-card a svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.service-card:hover { background: var(--ink); color: var(--paper-soft); }
.service-card:hover p { color: rgba(255,250,244,0.58); }
.service-card:hover > svg { stroke: #ef946b; }
.service-card-wide { grid-column: span 3; min-height: 270px; display: grid; grid-template-columns: 60px 70px minmax(220px, 0.7fr) minmax(260px, 1fr) auto; align-items: center; gap: 32px; }
.service-card-wide > svg, .service-card-wide h3, .service-card-wide p, .service-card-wide a { margin: 0; padding: 0; }

.about { background: var(--ink); color: var(--paper-soft); }
.about-grid { display: grid; grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr); gap: clamp(60px, 9vw, 140px); align-items: center; }
.about-art {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(30px, 4vw, 50px);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 28px;
  background: radial-gradient(circle at 50% 45%, rgba(200, 104, 46, 0.12), transparent 60%), #080d1a;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4), 0 30px 80px rgba(0, 0, 0, 0.4);
}
.about-art .about-number { display: none; }
.about-emblem {
  position: relative;
  width: min(82%, 340px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.about-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.about-art > p {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 250, 244, 0.65);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 350;
}
.about-art > p b { color: #ef946b; font-weight: 400; }
.about-copy .eyebrow { color: rgba(255,250,244,0.55); font-weight: 400; }
.about-copy h2 { margin-top: 20px; font-family: var(--display); font-size: clamp(45px, 5.2vw, 76px); font-weight: 400; letter-spacing: 0.005em; line-height: 1.04; }
.about-copy > p { margin-top: 24px; color: rgba(255,250,244,0.58); font-weight: 350; line-height: 1.7; }
.about-copy .about-lead { color: rgba(255,250,244,0.86); font-size: 19px; font-weight: 350; line-height: 1.7; }
.about-copy blockquote { margin-top: 32px; padding: 22px 0 22px 24px; border-left: 2px solid #ef946b; color: rgba(255,250,244,0.82); font-family: var(--serif); font-style: italic; font-size: 22px; font-weight: 400; line-height: 1.5; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.skill-tags span { padding: 8px 12px; border: 1px solid var(--line-dark); border-radius: 999px; color: rgba(255,250,244,0.62); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 350; }

.process { background: var(--paper-deep); }
.process-list { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-list li { min-height: 280px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.process-list li > span { color: var(--copper); font-size: 11px; letter-spacing: 0.12em; font-weight: 400; }
.process-list li > div { margin-top: auto; }
.process-list h3 { font-family: var(--display); font-size: 32px; font-weight: 400; letter-spacing: 0.005em; }
.process-list p { margin-top: 10px; color: var(--muted); font-size: 13px; font-weight: 350; line-height: 1.7; }

.social-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.social-card { position: relative; min-width: 0; min-height: 220px; display: grid; grid-template-columns: 60px 1fr auto; grid-template-rows: 1fr auto; align-items: center; gap: 8px 18px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease); }
.social-card::after { content: ""; position: absolute; inset: auto -45px -65px auto; width: 150px; height: 150px; border: 1px solid currentColor; border-radius: 50%; opacity: 0.08; }
.social-card:hover { z-index: 1; transform: translateY(-4px); color: var(--white); }
.social-card.instagram:hover { background: #c13584; }
.social-card.facebook:hover { background: #1877f2; }
.social-card.linkedin:hover { background: #0a66c2; }
.social-card.whatsapp:hover { background: #188d50; }
.social-card.email:hover { background: var(--copper); }
.social-icon { grid-row: 1 / 3; width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 18px; }
.social-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.social-card small { align-self: end; color: var(--muted); font-size: 10px; letter-spacing: 0.11em; text-transform: uppercase; font-weight: 350; }
.social-card strong { align-self: start; min-width: 0; overflow-wrap: anywhere; font-family: var(--display); font-size: 20px; font-weight: 400; }
.social-arrow { grid-column: 3; grid-row: 1 / 3; }
.social-arrow svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.social-card:hover small { color: rgba(255,255,255,0.68); }
.social-card:hover .social-icon { border-color: rgba(255,255,255,0.28); }
.social-card.email { grid-column: span 2; }

.global-strip { padding-block: clamp(68px, 7vw, 100px); background: linear-gradient(135deg, #0b1329 0%, #1e293b 50%, #0f172a 100%); color: var(--white); border-top: 1px solid rgba(224, 108, 40, 0.25); border-bottom: 1px solid rgba(224, 108, 40, 0.25); }
.global-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: clamp(50px, 8vw, 120px); align-items: end; }
.global-grid h2 { max-width: 700px; margin-top: 18px; font-family: var(--display); font-size: clamp(43px, 5vw, 72px); font-weight: 400; letter-spacing: 0.005em; line-height: 1.04; }
.global-grid h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; background: linear-gradient(90deg, var(--copper), var(--ember)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.global-grid > div:last-child > p { color: rgba(255,255,255,0.78); font-weight: 350; line-height: 1.7; }
.currency-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.currency-list span { min-width: 74px; display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; background: rgba(255,255,255,0.06); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); font-weight: 350; }
.currency-list b { font-size: 9px; letter-spacing: 0.08em; color: var(--gold); font-weight: 400; }

.booking { background: var(--paper-soft); }
.booking-grid { display: grid; grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr); align-items: start; gap: clamp(60px, 8vw, 120px); }
.booking-copy { position: sticky; top: calc(var(--header-height) + 30px); }
.booking-copy h2 { margin-top: 18px; font-family: var(--display); font-size: clamp(45px, 5vw, 74px); font-weight: 400; letter-spacing: 0.005em; line-height: 1.04; }
.booking-copy > p { margin-top: 24px; color: var(--muted); font-weight: 350; line-height: 1.7; }
.booking-contact { display: grid; margin-top: 34px; border-top: 1px solid var(--line); }
.booking-contact a { display: grid; padding: 17px 0; border-bottom: 1px solid var(--line); }
.booking-contact small { color: var(--muted); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 350; }
.booking-contact strong { margin-top: 4px; font-family: var(--display); font-size: 20px; font-weight: 400; overflow-wrap: anywhere; }
.privacy-note { display: flex; gap: 12px; margin-top: 24px; padding: 17px; border: 1px solid rgba(16,185,129,0.25); border-radius: var(--radius-sm); background: rgba(16,185,129,0.08); }
.privacy-note svg { width: 21px; height: 21px; flex: 0 0 auto; fill: none; stroke: var(--emerald); stroke-width: 1.5; }
.privacy-note p { color: var(--ink-soft); font-size: 12px; font-weight: 350; }
.booking-form { padding: clamp(24px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); box-shadow: var(--shadow-sm); }
.form-required-note { margin: 0 0 18px; color: var(--muted); font-size: 12px; font-weight: 350; }
.form-required-note span { color: #9c341d; font-weight: 500; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px 16px; }
.field { min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; color: var(--ink-soft); font-size: 11px; font-weight: 400; letter-spacing: 0.06em; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(11,19,41,0.16); border-radius: 12px; background: rgba(255,255,255,0.9); color: var(--ink); font-weight: 350; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease); }
.field input, .field select { min-height: 50px; padding: 0 14px; }
.field textarea { min-height: 140px; padding: 13px 14px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #94a3b8; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--copper); background: var(--white); box-shadow: 0 0 0 4px rgba(224,108,40,0.15); outline: 0; }
.field [aria-invalid="true"] { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }
.field-help { display: block; margin-top: 6px; color: var(--muted); font-size: 10px; font-weight: 350; }
.field-error { display: block; min-height: 0; margin-top: 5px; color: #ef4444; font-size: 11px; line-height: 1.4; font-weight: 350; }
.field-error:empty { margin: 0; }
.textarea-meta { display: flex; justify-content: space-between; gap: 12px; }
.form-error-summary { margin-bottom: 22px; padding: 16px 18px; border-left: 3px solid #ef4444; background: rgba(239,68,68,0.08); border-radius: 4px; }
.form-error-summary h3 { font-family: var(--display); font-size: 18px; font-weight: 400; }
.form-error-summary ul { margin-top: 7px; padding-left: 18px; color: #b91c1c; font-size: 12px; font-weight: 350; }
.form-error-summary a { text-decoration: underline; }
.consent { display: flex; align-items: flex-start; gap: 11px; margin-top: 24px; color: var(--ink-soft); font-size: 12px; font-weight: 350; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--copper); flex: 0 0 auto; }
.consent-error { margin-left: 29px; }
.form-submit { width: 100%; margin-top: 24px; }

.site-footer { padding-top: 72px; background: linear-gradient(180deg, #0b1329 0%, #060a17 100%); color: var(--paper-soft); }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 0.7fr); gap: clamp(38px, 6vw, 86px); padding-bottom: 60px; }
.footer-brand h2 { margin-top: 0; font-family: var(--display); font-size: 38px; font-weight: 400; }
.footer-brand p { max-width: 330px; margin-top: 10px; color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 350; line-height: 1.7; }
.site-footer h3 { margin-bottom: 18px; color: rgba(255,255,255,0.5); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; }
.site-footer > .footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer a, .site-footer > .footer-grid > div:not(.footer-brand) > p { margin-top: 9px; color: rgba(255,255,255,0.78); font-size: 12px; font-weight: 350; }
.site-footer a:hover { color: var(--ember); }
.footer-status { display: flex; align-items: center; gap: 8px; }
.footer-status span { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 5px rgba(16,185,129,0.2); }
.footer-book { margin-top: 18px !important; color: var(--ember) !important; font-weight: 400; }
.footer-bottom { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,0.45); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-bottom a { display: flex; align-items: center; gap: 7px; }
.footer-bottom a svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.floating-whatsapp, .go-top { position: fixed; z-index: 900; bottom: max(20px, env(safe-area-inset-bottom)); display: grid; place-items: center; border-radius: 999px; }
.floating-whatsapp { left: 20px; width: 54px; height: 54px; background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: var(--white); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.floating-whatsapp:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 16px 35px rgba(37, 211, 102, 0.55); }
.floating-whatsapp svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.go-top { right: 20px; min-width: 54px; height: 54px; padding: 0 14px; border: 1px solid var(--line); background: rgba(255,255,255,0.92); color: var(--ink); opacity: 0; visibility: hidden; transform: translateY(12px); box-shadow: var(--shadow-sm); transition: opacity 0.25s var(--ease), visibility 0.25s, transform 0.25s var(--ease); }
.go-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.go-top svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.go-top span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.video-modal { width: min(94vw, 1120px); max-width: none; padding: 0; overflow: hidden; border: 1px solid rgba(255,250,244,0.16); border-radius: var(--radius-md); background: #171311; color: var(--paper-soft); box-shadow: 0 40px 120px rgba(0,0,0,0.52); }
.video-modal::backdrop { background: rgba(12,9,7,0.86); -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px); }
.modal-bar, .modal-controls { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 20px; }
.modal-bar { border-bottom: 1px solid var(--line-dark); }
.modal-bar p { font-family: var(--display); font-size: 17px; }
.modal-bar button { width: 44px; height: 44px; border: 1px solid var(--line-dark); border-radius: 50%; background: transparent; color: var(--paper-soft); font-size: 26px; }
.video-frame { aspect-ratio: 16 / 9; background: #050404; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.modal-controls { border-top: 1px solid var(--line-dark); }
.modal-controls button { min-height: 44px; padding: 0 14px; border: 0; background: transparent; color: rgba(255,250,244,0.68); font-size: 12px; }
.modal-controls button:hover { color: #ef946b; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.js .reveal[data-reveal-delay="1"] { transition-delay: 0.09s; }
.js .reveal[data-reveal-delay="2"] { transition-delay: 0.18s; }
.js .reveal[data-reveal-delay="3"] { transition-delay: 0.27s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Projects archive */
.archive-page { background: var(--paper-soft); }
.archive-hero { padding: calc(var(--header-height) + 90px) 0 80px; background: radial-gradient(circle at 85% 10%, rgba(122,83,219,0.09), transparent 24%), var(--paper); border-bottom: 1px solid var(--line); }
.archive-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(270px,0.34fr); align-items: end; gap: 60px; }
.archive-hero h1 { margin-top: 18px; max-width: 900px; font-family: var(--display); font-size: clamp(58px, 8vw, 116px); font-weight: 400; letter-spacing: 0.01em; line-height: 0.96; }
.archive-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #c8682e 0%, #ea580c 40%, #db2777 75%, #7c3aed 100%);
  background-size: 200% 200%;
  animation: gradientFlow 8s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.archive-hero p:last-child { color: var(--muted); font-size: 17px; font-weight: 350; line-height: 1.7; }
.archive-main { padding-block: 80px 130px; }
.client-feature { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 28px; padding: 30px; border: 1px solid var(--line); background: var(--ink); color: var(--paper-soft); }
.client-feature .archive-icon { color: #ef946b; background: rgba(255,250,244,0.09); }
.client-feature small { color: #ef946b; }
.client-feature p { color: rgba(255,250,244,0.58); }
.client-feature a { min-height: 46px; display: inline-flex; align-items: center; padding: 0 18px; border: 1px solid var(--line-dark); border-radius: 999px; font-size: 11px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; }
.client-feature a:hover { border-color: #ef946b; color: #ef946b; }
.filter-bar { margin-top: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.filter-list { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-list button { min-height: 44px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); font-size: 11px; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; }
.filter-list button[aria-pressed="true"], .filter-list button:hover { background: var(--ink); border-color: var(--ink); color: var(--paper-soft); }
.project-count { color: var(--muted); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; font-weight: 400; }
.archive-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.archive-card { min-width: 0; min-height: 340px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 0.25s var(--ease), transform 0.25s var(--ease); }
.archive-card:hover { z-index: 1; background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.archive-card[hidden] { display: none; }
.archive-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: rgba(200,104,46,0.1); color: var(--copper); }
.archive-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.archive-card small, .client-feature small { margin-top: 28px; font-size: 9px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; }
.archive-card h2, .client-feature h2 { margin-top: 9px; font-family: var(--display); font-size: 30px; font-weight: 400; letter-spacing: 0.005em; line-height: 1.06; }
.archive-card p { margin-top: 12px; color: var(--muted); font-size: 13px; font-weight: 350; line-height: 1.7; }
.archive-card a { width: fit-content; margin-top: auto; padding-top: 26px; font-size: 10.5px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
.archive-card a:hover { color: var(--copper); }
.archive-cta { margin-top: 70px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 40px; background: var(--copper); color: var(--white); }
.archive-cta h2 { font-family: var(--display); font-size: clamp(34px,4vw,54px); font-weight: 400; line-height: 1.05; }
.archive-cta p { margin-top: 10px; color: rgba(255,255,255,0.72); font-weight: 350; }
.archive-cta .button { background: var(--white); color: var(--ink); }

.not-found-page { min-height: 100svh; background: radial-gradient(circle at 50% 30%, rgba(180,95,61,0.14), transparent 31%), var(--paper); }
.not-found { min-height: 100svh; width: min(calc(100% - 32px), 900px); margin-inline: auto; display: grid; place-items: center; align-content: center; gap: 24px; padding: 60px 0; text-align: center; }
.not-found-mark { width: 136px; height: 136px; overflow: hidden; border: 1px solid rgba(180,95,61,0.24); border-radius: 50%; background: #080d1a; box-shadow: var(--shadow-sm); }
.not-found-mark img { width: 100%; max-width: none; height: 100%; object-fit: contain; }
.not-found .eyebrow { justify-content: center; }
.not-found h1 { max-width: 780px; font-family: var(--display); font-size: clamp(54px,10vw,112px); font-weight: 400; letter-spacing: 0.01em; line-height: 0.95; }
.not-found > p:not(.eyebrow) { color: var(--muted); font-weight: 350; line-height: 1.7; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-actions { justify-self: end; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(360px,0.72fr); gap: 60px; }
  .hero-copy h1 { font-size: clamp(56px,8vw,86px); }
  .hero-emblem { left: -45px; width: 150px; height: 150px; }
  .hero-emblem img { width: 215px; transform: translate(-33px,-12px); }
  .tag-code { right: -10px; }
  .tag-film { left: -25px; }
  .project-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .project-card-featured { grid-column: span 2; }
  .service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-card-wide { grid-column: span 2; grid-template-columns: 50px 60px 1fr 1fr; }
  .service-card-wide a { grid-column: 3 / -1; }
  .about-grid { gap: 70px; }
  .process-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.2fr repeat(3,0.7fr); gap: 34px; }
  .archive-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 820px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { width: calc(100% - 28px); }
  .header-cta { display: none; }
  .hero { min-height: auto; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { padding-top: 24px; }
  .hero-copy h1 { font-size: clamp(58px,13vw,92px); }
  .hero-intro { max-width: 680px; }
  .hero-visual { width: min(86%, 520px); justify-self: center; }
  .hero-emblem { left: -70px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .hero-stats div:nth-child(2) { border-right: 0; }
  .hero-stats div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .section-head > p { max-width: 590px; }
  .film-rail { grid-auto-columns: minmax(275px, 44vw); }
  .about-grid, .booking-grid, .global-grid { grid-template-columns: 1fr; }
  .about-art { width: min(100%, 600px); min-height: 540px; }
  .booking-copy { position: static; }
  .social-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .social-card.email { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .archive-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .client-feature { grid-template-columns: auto 1fr; }
  .client-feature > a { grid-column: 2; justify-self: start; }
  .archive-cta { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .section-pad { padding-block: 78px; }
  .brand-name small { display: none; }
  .brand-name strong { font-size: 12px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-mark img { width: 100%; height: 100%; object-fit: contain; transform: none; }
  .hero { padding-top: calc(var(--header-height) + 42px); }
  .hero-copy h1 { margin-top: 17px; font-size: clamp(51px,16.2vw,74px); line-height: 0.92; }
  .hero-intro { margin-top: 23px; font-size: 16px; }
  .hero-actions { margin-top: 26px; }
  .hero-actions .button { width: 100%; }
  .availability b { width: 100%; margin-left: 20px; }
  .hero-visual { width: 92%; }
  .portrait-frame { border-radius: 42% 42% 18px 18px; }
  .hero-emblem { left: -25px; top: 8%; width: 110px; height: 110px; }
  .hero-emblem img { width: 100%; height: 100%; object-fit: contain; transform: none; }
  .float-tag { padding: 9px 11px; font-size: 9px; }
  .tag-code { top: 33%; right: -14px; }
  .tag-film { left: -10px; bottom: 13%; }
  .hero-number { top: -37px; font-size: 105px; }
  .hero-stats { margin-top: 42px; }
  .hero-stats div { min-height: 78px; flex-direction: column; align-items: flex-start; gap: 0; padding: 14px; }
  .hero-stats strong { font-size: 28px; }
  .hero-stats span { font-size: 9px; }
  .section-head h2 { font-size: clamp(39px,11.5vw,56px); }
  .project-grid, .service-grid, .social-grid, .archive-grid { grid-template-columns: 1fr; }
  .project-card-featured, .service-card-wide, .social-card.email { grid-column: auto; }
  .project-card { min-height: 360px; padding: 26px; }
  .film-rail { grid-auto-columns: 82vw; }
  .film-card { min-height: 365px; }
  .service-card { min-height: 320px; }
  .service-card-wide { display: flex; align-items: stretch; gap: 0; }
  .service-card-wide > svg { margin-top: 44px; }
  .service-card-wide h3 { margin-top: 26px; }
  .service-card-wide p { margin-top: 12px; }
  .service-card-wide a { margin-top: auto; padding-top: 24px; }
  .about-art { min-height: 430px; }
  .about-emblem { width: 220px; height: 220px; }
  .about-emblem img { width: 100%; height: 100%; object-fit: contain; transform: none; }
  .about-number { top: -30px; font-size: 390px; }
  .about-copy h2, .booking-copy h2, .global-grid h2 { font-size: clamp(39px,11vw,54px); }
  .about-copy .about-lead { font-size: 17px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 220px; }
  .social-card { min-height: 190px; padding: 24px; grid-template-columns: 52px 1fr auto; }
  .social-icon { width: 50px; height: 50px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .booking-form { padding: 20px; border-radius: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { min-height: 92px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .floating-whatsapp { width: 48px; height: 48px; left: 14px; bottom: max(14px, env(safe-area-inset-bottom)); }
  .go-top { right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); width: 48px; height: 48px; min-width: 48px; }
  .video-modal { width: 96vw; border-radius: 14px; }
  .video-frame { aspect-ratio: 9 / 14; }
  .archive-hero { padding-top: calc(var(--header-height) + 62px); }
  .archive-hero h1 { font-size: clamp(52px,15vw,76px); }
  .client-feature { grid-template-columns: 1fr; padding: 24px; }
  .client-feature > a { grid-column: auto; }
  .filter-bar { align-items: flex-start; flex-direction: column; }
  .project-count { white-space: normal; }
  .archive-cta { padding: 26px; }
}

@media (max-width: 380px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand-name { display: none; }
  .hero-copy h1 { font-size: 49px; }
  .float-tag { display: none; }
  .hero-emblem { left: -18px; }
  .project-card, .service-card { padding: 22px; }
  .film-rail { grid-auto-columns: 86vw; }
  .social-card { grid-template-columns: 48px 1fr auto; padding: 20px; }
  .social-icon { width: 46px; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .role-word { transition: none; }
}

/* Round Panther Logo Emblem */
.brand-mark, .footer-mark, .hero-emblem, .about-emblem, .not-found-mark {
  border: 0;
  background: transparent;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.not-found-mark { position: relative; }
.brand-mark img, .footer-mark img, .hero-emblem img, .about-emblem img, .not-found-mark img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hero-emblem { transform: none; }
.about-emblem { width: 300px; height: 300px; }

@media (max-width: 620px) {
  .about-emblem { width: 220px; height: 220px; }
  .role-word.tone-1 { font-size: 0.9em; letter-spacing: -0.075em; }
}

/* ==========================================================================
   Interactive AI Assistant Widget (Luxury Floating Assistant)
   ========================================================================== */
.ai-widget {
  position: fixed;
  right: 24px;
  bottom: max(84px, calc(16px + env(safe-area-inset-bottom)));
  z-index: 950;
}

.ai-trigger {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px 0 16px;
  border: 1px solid rgba(200, 104, 46, 0.4);
  border-radius: 999px;
  background: rgba(13, 19, 34, 0.92);
  color: #faf8f5;
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.ai-trigger:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--copper);
  box-shadow: 0 18px 42px rgba(200, 104, 46, 0.3);
}

.ai-pulse {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.25);
  animation: aiPulse 2.4s infinite;
}

@keyframes aiPulse {
  0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(5, 150, 105, 0); }
  100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.ai-sparkle {
  width: 16px;
  height: 16px;
  margin-left: 12px;
  stroke: var(--gold);
}

.ai-modal {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(calc(100vw - 36px), 380px);
  height: min(540px, 78vh);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(200, 104, 46, 0.35);
  border-radius: 22px;
  background: rgba(11, 17, 31, 0.96);
  color: #faf8f5;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  overflow: hidden;
  animation: aiOpen 0.3s var(--ease);
}

.ai-modal[hidden] { display: none; }

@keyframes aiOpen {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.ai-header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(200, 104, 46, 0.4);
  background: #080d1a;
  flex-shrink: 0;
}

.ai-avatar img { width: 100%; height: 100%; object-fit: contain; }

.ai-header-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.ai-header-brand small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 250, 244, 0.65);
  font-size: 10px;
}

.ai-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
}

.ai-close {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 250, 244, 0.7);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.ai-close:hover {
  color: #ffffff;
  border-color: var(--copper);
}

.ai-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.ai-msg {
  max-width: 86%;
  padding: 12px 15px;
  border-radius: 16px;
  font-size: 12.5px;
  font-weight: 350;
  line-height: 1.6;
  animation: aiMsgIn 0.25s var(--ease);
}

@keyframes aiMsgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ai-msg-bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 250, 244, 0.94);
  border-bottom-left-radius: 4px;
}

.ai-msg-bot a {
  color: #f1a47c;
  text-decoration: underline;
  font-weight: 400;
}

.ai-msg-user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--copper), var(--ember));
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.ai-suggestions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.ai-suggestions button {
  text-align: left;
  padding: 8px 12px;
  border: 1px solid rgba(200, 104, 46, 0.28);
  border-radius: 12px;
  background: rgba(200, 104, 46, 0.08);
  color: rgba(255, 250, 244, 0.88);
  font-size: 11.5px;
  font-weight: 350;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.ai-suggestions button:hover {
  background: rgba(200, 104, 46, 0.2);
  border-color: var(--copper);
  transform: translateX(3px);
}

.ai-typing {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.ai-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  animation: aiTyping 1.2s infinite ease-in-out;
}

.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes aiTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.ai-input-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 13, 26, 0.98);
}

.ai-input-form input {
  flex: 1;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #faf8f5;
  font-size: 12px;
  font-weight: 350;
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.ai-input-form input:focus {
  border-color: var(--copper);
  background: rgba(255, 255, 255, 0.08);
}

.ai-input-form button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--ember));
  color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}

.ai-input-form button:hover {
  transform: scale(1.06);
}

.ai-input-form button svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Cookie Consent Banner (Luxury Glass Banner)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 920;
  max-width: min(calc(100vw - 48px), 480px);
  padding: 18px 22px;
  border: 1px solid rgba(200, 104, 46, 0.3);
  border-radius: 20px;
  background: rgba(13, 19, 34, 0.94);
  color: #faf8f5;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  animation: cookieSlide 0.4s var(--ease);
}

.cookie-banner[hidden] { display: none; }

@keyframes cookieSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-content p {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 350;
  line-height: 1.6;
  color: rgba(255, 250, 244, 0.82);
}

.cookie-content a {
  color: #f1a47c;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 38px;
  padding: 0 16px;
  font-size: 10.5px;
}

@media (max-width: 620px) {
  .ai-widget { right: 14px; bottom: max(76px, calc(14px + env(safe-area-inset-bottom))); }
  .ai-modal { width: calc(100vw - 28px); right: -6px; height: 72vh; }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; max-width: none; }
}
