/* ===== block-01 ===== */
:root {
  --ink: #161713;
  --ink-soft: #25261f;
  --cream: #f0ecdf;
  --paper: #fbf8f0;
  --paper-2: #f7f2e7;
  --lime: #dfff62;
  --lime-soft: #efffc0;
  --warm: #e7c7a6;
  --muted: #716f65;
  --line: rgba(22, 23, 19, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 12px 30px rgba(27, 25, 20, 0.08);
  --shadow-md: 0 28px 70px rgba(27, 25, 20, 0.14);
  --shadow-lg: 0 40px 110px rgba(27, 25, 20, 0.18);
  --radius: 26px;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
  --max-width: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Be Vietnam Pro", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: var(--lime);
  color: var(--ink);
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.section-pad {
  width: 100%;
  padding: 130px max(28px, 6vw);
}

.section-pad > * {
  width: min(100%, var(--max-width));
  margin-left: auto;
  margin-right: auto;
}

/* Navigation */
.nav-wrap {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 40px), 1440px);
  min-height: 70px;
  padding: 0 14px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(251, 248, 240, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(25, 23, 18, 0.06);
  transition:
    top 0.35s var(--ease),
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s var(--ease);
}

.nav-wrap.is-scrolled {
  top: 10px;
  background: rgba(251, 248, 240, 0.9);
  border-color: rgba(22, 23, 19, 0.08);
  box-shadow: 0 18px 48px rgba(25, 23, 18, 0.11);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  flex-shrink: 0;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand i {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

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

.nav-wrap nav a {
  position: relative;
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(22, 23, 19, 0.62);
  font-size: 12px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-wrap nav a:hover,
.nav-wrap nav a.active {
  color: var(--ink);
  background: rgba(22, 23, 19, 0.055);
}

.nav-wrap nav a.active::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
  transform: translateX(-50%);
}

.nav-cta,
.btn,
.book-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.nav-cta::before,
.btn-dark::before,
.book-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--lime);
  transform: translateY(105%);
  transition: transform 0.35s var(--ease);
}

.nav-cta:hover::before,
.btn-dark:hover::before,
.book-btn:hover::before {
  transform: translateY(0);
}

.nav-cta:hover,
.btn-dark:hover,
.book-btn:hover {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.nav-cta span,
.btn span,
.book-btn span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 0.25s var(--ease);
}

.nav-cta:hover span,
.btn:hover span,
.book-btn:hover span {
  transform: translate(3px, -3px);
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.mobile-menu-toggle span,
.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
  content: "";
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

.mobile-menu-toggle.open span {
  opacity: 0;
}

.mobile-menu-toggle.open::before {
  transform: translateY(5.5px) rotate(45deg);
}

.mobile-menu-toggle.open::after {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  z-index: 95;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 110px 24px 40px;
  background: rgba(246, 242, 231, 0.96);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease), visibility 0.35s;
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-drawer nav {
  display: flex;
  width: min(100%, 520px);
  flex-direction: column;
}

.mobile-drawer a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  font-family: "Playfair Display", serif;
  font-size: clamp(31px, 8vw, 52px);
  line-height: 1.3;
}

.mobile-drawer a::after {
  content: "↗";
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
}

/* Common typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 10px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.hero h1,
.section-head h2,
.gallery-title h2,
.process h2,
.trust h2,
.final-cta h2 {
  margin: 22px 0 30px;
  font-size: clamp(54px, 7.4vw, 118px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero h1 em,
.section-head h2 em,
.gallery-title h2 em,
.process h2 em,
.trust h2 em,
.final-cta h2 em {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, color 0.25s ease;
}

.btn:active,
.book-btn:active {
  transform: scale(0.98);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 26px rgba(22, 23, 19, 0.16);
}

.btn-dark:hover {
  box-shadow: 0 18px 34px rgba(22, 23, 19, 0.2);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.25s var(--ease);
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
  padding-top: 145px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 24%, rgba(255, 255, 255, 0.98) 0, transparent 29%),
    radial-gradient(circle at 78% 70%, rgba(223, 255, 98, 0.18) 0, transparent 24%),
    var(--paper);
}

.hero::before {
  content: "2026";
  position: absolute;
  right: -0.035em;
  bottom: -0.21em;
  color: rgba(22, 23, 19, 0.025);
  font-size: min(31vw, 450px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  pointer-events: none;
}

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

.hero-copy > p {
  max-width: 585px;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 40px 0 62px;
}

.trust-row {
  display: flex;
  gap: clamp(24px, 4vw, 52px);
}

.trust-row div {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-row div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3px;
  right: calc(clamp(24px, 4vw, 52px) / -2);
  width: 1px;
  height: 38px;
  background: var(--line);
}

.trust-row b {
  font-size: 22px;
  letter-spacing: 0;
}

.trust-row span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.hero-visual::before {
  width: 82%;
  aspect-ratio: 1;
  border: 1px solid rgba(22, 23, 19, 0.1);
}

.hero-visual::after {
  width: 48%;
  aspect-ratio: 1;
  background: var(--lime);
  filter: blur(80px);
  opacity: 0.15;
}

.photo-frame {
  overflow: hidden;
  border-radius: 240px 240px 30px 30px;
}

.main-photo {
  position: relative;
  z-index: 2;
  width: min(520px, 84%);
  height: 665px;
  border: 8px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease);
}

.main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(12, 12, 9, 0.18));
  pointer-events: none;
}

.main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.03);
  transform: scale(1.04);
  transition: transform 1s var(--ease), filter 0.5s ease;
}

.hero-visual:hover .main-photo img {
  transform: scale(1.075);
  filter: saturate(0.95) contrast(1.03);
}

.photo-label {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(251, 248, 240, 0.84);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: var(--shadow-sm);
}

.floating-card small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
}

.floating-card strong {
  font-size: 11px;
}

.fc-top {
  top: 16%;
  left: -3%;
  animation: float-a 5s ease-in-out infinite;
}

.fc-top > b {
  padding: 8px 9px;
  border-radius: 10px;
  background: var(--lime);
  font-size: 10px;
}

.fc-bottom {
  right: -2%;
  bottom: 15%;
  animation: float-b 6.4s ease-in-out infinite;
}

.avatar {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 34%, #d5bca7 0 13%, transparent 14%),
    linear-gradient(135deg, #292a24, #ad957b);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #64c969;
  box-shadow: 0 0 0 5px rgba(100, 201, 105, 0.13);
  animation: pulse 2s ease-out infinite;
}

@keyframes float-a {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(1deg); }
}

@keyframes float-b {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(1deg); }
  50% { transform: translate3d(0, 8px, 0) rotate(-1deg); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(100, 201, 105, 0.35); }
  70% { box-shadow: 0 0 0 8px rgba(100, 201, 105, 0); }
  100% { box-shadow: 0 0 0 0 rgba(100, 201, 105, 0); }
}

/* Ticker */
.ticker {
  position: relative;
  overflow: hidden;
  padding: 17px 0;
  background: var(--ink);
  color: #fff;
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--ink), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 31px;
  align-items: center;
  animation: ticker 28s linear infinite;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.ticker-track i {
  color: var(--lime);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-45%); }
}

/* Photographer section */
.photographers {
  position: relative;
  background: var(--cream);
}

.photographers::before {
  content: "";
  position: absolute;
  top: 7%;
  right: -10vw;
  width: 30vw;
  height: 30vw;
  border-radius: 50%;
  background: rgba(223, 255, 98, 0.26);
  filter: blur(100px);
  pointer-events: none;
}

.section-head {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: end;
}

.section-head h2,
.gallery-title h2,
.process h2,
.trust h2,
.final-cta h2 {
  font-size: clamp(48px, 6.1vw, 92px);
}

.section-head > p {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.filters {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 54px auto 32px;
}

.filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 248, 240, 0.2);
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.25s var(--ease);
}

.filter:hover {
  border-color: rgba(22, 23, 19, 0.36);
  background: rgba(251, 248, 240, 0.58);
  transform: translateY(-1px);
}

.filter.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(22, 23, 19, 0.13);
}

.filter-count {
  min-width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(22, 23, 19, 0.08);
  font-size: 9px;
}

.filter.active .filter-count {
  background: var(--lime);
  color: var(--ink);
}

.photographer-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.photographer-card {
  --mx: 50%;
  --my: 30%;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 23, 19, 0.08);
  border-radius: 24px;
  background: rgba(251, 248, 240, 0.9);
  box-shadow: 0 8px 26px rgba(22, 23, 19, 0.035);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.3s ease,
    opacity 0.25s ease;
}

.photographer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.45), transparent 24%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photographer-card:hover {
  transform: translateY(-9px);
  border-color: rgba(22, 23, 19, 0.16);
  box-shadow: 0 30px 70px rgba(22, 23, 19, 0.12);
}

.photographer-card:hover::after {
  opacity: 0.75;
}

.photographer-card.is-leaving {
  opacity: 0;
  transform: scale(0.96) translateY(8px);
}

.photographer-card.hidden {
  display: none;
}

.card-image {
  position: relative;
  height: clamp(300px, 27vw, 390px);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  transform: translateZ(0);
}

.card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 8, 0.02) 50%, rgba(10, 10, 8, 0.18) 100%);
  transition: opacity 0.35s ease;
}

.photographer-card:hover .card-image {
  background-size: 106%;
}

.img-1 {
  background-image: var(--cg-photo-0);
}

.img-2 {
  background-image: var(--cg-photo-1);
}

.img-3 {
  background-image: var(--cg-photo-2);
}

.img-4 {
  background-image: var(--cg-photo-3);
}

.badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 8px 18px rgba(22, 23, 19, 0.08);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.badge.neutral {
  background: rgba(251, 248, 240, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.heart {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(251, 248, 240, 0.84);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  line-height: 1.3;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease;
}

.heart:hover {
  transform: scale(1.08);
}

.heart.liked {
  background: var(--ink);
  color: var(--lime);
}

.heart.pop {
  animation: heart-pop 0.35s var(--ease);
}

@keyframes heart-pop {
  50% { transform: scale(1.26) rotate(-6deg); }
}

.card-body {
  position: relative;
  z-index: 2;
  padding: 22px;
}

.name-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.name-row small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.name-row h3 {
  margin: 4px 0 0;
  font-family: "Playfair Display", serif;
  font-size: 27px;
  letter-spacing: 0;
}

.rating {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
}

.card-body > p {
  min-height: 65px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.card-meta {
  display: flex;
  gap: 9px 14px;
  flex-wrap: wrap;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.available {
  color: #3f8645;
  font-weight: 600;
}

.available.warn {
  color: #9a6426;
}

.book-btn {
  width: 100%;
  min-height: 45px;
  margin-top: 17px;
  padding: 0 15px;
  border: 0;
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: transform 0.2s var(--ease), color 0.25s ease;
}

/* Gallery */
.gallery {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.gallery::before {
  content: "PORTFOLIO";
  position: absolute;
  top: 36%;
  left: -2%;
  color: rgba(22, 23, 19, 0.027);
  font-size: clamp(90px, 16vw, 250px);
  font-weight: 800;
  letter-spacing: 0;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
  pointer-events: none;
}

.gallery-title {
  text-align: center;
  max-width: 1050px;
  margin-bottom: 64px;
}

.masonry {
  display: grid;
  grid-template-columns: 1.06fr 0.78fr 1.06fr;
  grid-template-rows: 340px 310px;
  gap: 16px;
}

.masonry figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #ddd8cd;
}

.masonry figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 12, 10, 0.17));
  pointer-events: none;
}

.masonry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s ease;
}

.masonry figure:hover img {
  transform: scale(1.055);
  filter: saturate(0.9);
}

.masonry figcaption {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(251, 248, 240, 0.84);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 700;
}

.g1 {
  grid-row: 1 / 3;
}

.g3 {
  grid-row: 1 / 3;
  grid-column: 3;
}

.gallery-quote {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-radius: 24px;
  background: var(--lime);
}

.gallery-quote::after {
  content: "✦";
  position: absolute;
  right: -18px;
  bottom: -43px;
  color: rgba(22, 23, 19, 0.12);
  font-size: 150px;
  line-height: 1.3;
}

.gallery-quote span {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 1.3;
}

.gallery-quote p {
  position: relative;
  z-index: 1;
  margin: 15px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.25;
  letter-spacing: 0;
}

/* Process */
.process {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 8vw, 140px);
  background: var(--cream);
}

.process-intro {
  align-self: start;
  position: sticky;
  top: 125px;
}

.process-intro p {
  max-width: 410px;
  color: var(--muted);
  line-height: 1.7;
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr 1.25fr;
  gap: 18px;
  align-items: start;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease), background 0.3s ease;
}

.step::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.5s var(--ease);
}

.step:hover::before {
  width: 100%;
}

.step:hover {
  padding-left: 10px;
  padding-right: 10px;
}

.step > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.step h3 {
  margin: 7px 0 0;
  font-size: 19px;
  letter-spacing: 0;
}

.step p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

/* Trust */
.trust {
  background: var(--paper);
}

.trust-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 7vw, 120px);
  padding: clamp(42px, 6vw, 82px);
  border-radius: 36px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.trust-panel::before {
  content: "";
  position: absolute;
  top: -170px;
  right: -150px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(223, 255, 98, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(223, 255, 98, 0.03),
    0 0 0 120px rgba(223, 255, 98, 0.018);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.62);
}

.trust-copy,
.trust-features {
  position: relative;
  z-index: 2;
}

.trust h2 {
  margin-bottom: 28px;
}

.trust-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.75;
}

.trust-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-features > div {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}

.trust-features > div:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 255, 98, 0.35);
  background: rgba(255, 255, 255, 0.045);
}

.trust-features span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

.trust-features b {
  font-size: 13px;
}

.trust-features p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.6;
}

/* CTA + footer */
.final-cta {
  position: relative;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, #fff 0, rgba(255, 255, 255, 0.72) 23%, transparent 58%),
    var(--paper);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta::before {
  width: min(620px, 82vw);
  aspect-ratio: 1;
}

.final-cta::after {
  width: min(790px, 104vw);
  aspect-ratio: 1;
  opacity: 0.45;
}

.final-cta > * {
  position: relative;
  z-index: 2;
}

.final-cta .btn {
  margin-top: 10px;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 54px max(28px, 6vw);
  background: var(--ink);
  color: #fff;
}

.footer-brand {
  font-size: 30px;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  text-align: right;
  font-size: 12px;
}

footer > div {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 11px;
}

footer > div a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

footer > div a:hover {
  color: var(--lime);
}

footer small {
  color: rgba(255, 255, 255, 0.36);
  text-align: right;
}

/* Booking modal */
.modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.3);
  transform: translateY(24px) scale(0.975);
  transition: transform 0.38s var(--ease);
}

.modal.open .modal-panel {
  transform: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  line-height: 1.3;
  transition: transform 0.25s ease, background 0.25s ease;
}

.modal-close:hover {
  transform: rotate(90deg);
  background: rgba(22, 23, 19, 0.05);
}

.modal-panel h3 {
  margin: 17px 44px 10px 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 5vw, 41px);
  line-height: 1.3;
  letter-spacing: 0;
}

.modal-panel h3 span {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-decoration-color: var(--lime);
  text-underline-offset: 0.1em;
}

.modal-panel > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.modal form {
  display: grid;
  gap: 13px;
  margin-top: 25px;
}

.modal label {
  display: grid;
  gap: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal input,
.modal select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal input:focus,
.modal select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(22, 23, 19, 0.07);
}

.success {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(65, 138, 69, 0.18);
  border-radius: 13px;
  background: #e8f6df;
  color: #326a36;
  font-size: 12px;
}

.success.show {
  display: block;
  animation: slide-in 0.35s var(--ease);
}

@keyframes slide-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* Toast */
.toast-stack {
  position: fixed;
  z-index: 700;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 9px;
  pointer-events: none;
}

.toast {
  min-width: min(340px, calc(100vw - 36px));
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  background: rgba(22, 23, 19, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: var(--shadow-md);
  font-size: 11px;
  transform: translateY(14px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.3s var(--ease);
}

.toast.show {
  transform: none;
  opacity: 1;
}

.toast b {
  color: var(--lime);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s var(--ease);
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* Tablet */
@media (max-width: 1120px) {
  .nav-wrap nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 52px;
  }

  .hero-copy {
    padding-top: 40px;
  }

  .hero-copy > p {
    max-width: 670px;
  }

  .hero-visual {
    min-height: 640px;
  }

  .main-photo {
    height: 600px;
  }

  .fc-top {
    left: 6%;
  }

  .fc-bottom {
    right: 7%;
  }

  .section-head,
  .process,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: relative;
    top: 0;
  }

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

  .card-image {
    height: 430px;
  }

  .masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 390px 300px;
  }

  .g1,
  .g3 {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-quote {
    grid-column: 1 / 3;
  }

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

/* Mobile */
@media (max-width: 720px) {
  html {
    scroll-padding-top: 82px;
  }

  .section-pad {
    padding: 92px 20px;
  }

  .nav-wrap {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
    padding: 0 8px 0 17px;
    gap: 8px;
  }

  .nav-wrap.is-scrolled {
    top: 6px;
  }

  .brand {
    font-size: 18px;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    margin-left: auto;
  }

  .hero {
    padding-top: 105px;
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 78px);
    line-height: 1.3;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin: 31px 0 42px;
  }

  .btn {
    min-height: 51px;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
  }

  .trust-row div::after {
    display: none;
  }

  .hero-visual {
    min-height: 480px;
    margin-top: 4px;
  }

  .main-photo {
    width: 87%;
    height: 470px;
    border-width: 5px;
    border-radius: 180px 180px 24px 24px;
  }

  .fc-top {
    left: -2px;
    top: 12%;
    transform: scale(0.84);
    transform-origin: left center;
    animation: none;
  }

  .fc-bottom {
    right: -5px;
    bottom: 8%;
    transform: scale(0.84);
    transform-origin: right center;
    animation: none;
  }

  .ticker::before,
  .ticker::after {
    width: 32px;
  }

  .section-head h2,
  .gallery-title h2,
  .process h2,
  .trust h2,
  .final-cta h2 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .section-head > p {
    margin: 0;
    font-size: 14px;
  }

  .filters {
    flex-wrap: nowrap;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px 7px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
  }

  .photographer-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: min(114vw, 450px);
  }

  .card-body > p {
    min-height: auto;
  }

  .gallery-title {
    margin-bottom: 42px;
  }

  .masonry {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .masonry figure {
    height: 440px;
  }

  .masonry .g2 {
    height: 330px;
  }

  .gallery-quote {
    grid-column: auto;
    min-height: 230px;
  }

  .process {
    gap: 42px;
  }

  .step {
    grid-template-columns: 50px 1fr;
    gap: 10px 12px;
    padding: 23px 0;
  }

  .step p {
    grid-column: 2;
    margin-top: 0;
  }

  .trust-panel {
    padding: 36px 22px;
    border-radius: 28px;
  }

  .trust-features {
    grid-template-columns: 1fr;
  }

  .trust-features > div {
    min-height: auto;
  }

  .trust-features span {
    margin-bottom: 21px;
  }

  .final-cta {
    min-height: 560px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 45px 20px;
  }

  footer p,
  footer small {
    text-align: left;
  }

  .modal-panel {
    padding: 31px 20px 22px;
    border-radius: 22px;
  }

  .toast-stack {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 410px) {
  .fc-top {
    left: -24px;
  }

  .fc-bottom {
    right: -26px;
  }

  .floating-card {
    padding: 11px 12px;
  }

  .floating-card strong {
    font-size: 10px;
  }
}

@media (hover: none) {
  .photographer-card:hover,
  .trust-features > div:hover,
  .step:hover {
    transform: none;
  }

  .photographer-card:hover .card-image {
    background-size: cover;
  }
}

@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;
  }
}



/* ==================================================
   INLINE EXPERIENCE FX — premium interaction layer
   ================================================== */
:root {
  --fx-accent: #d8ff63;
  --fx-ink: #11110f;
}

/* Immediate intro overlay (no external asset required) */
.fx-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #f5f1e8;
  transition: opacity .65s cubic-bezier(.2,.75,.2,1), visibility .65s ease;
}
.fx-loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(216,255,99,.42), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(16,16,14,.08), transparent 32%);
  animation: fxLoaderGlow 2.4s ease-in-out infinite alternate;
}
.fx-loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.fx-loader-inner { position: relative; width: min(76vw, 420px); text-align: center; }
.fx-loader-logo {
  display: inline-flex;
  align-items: baseline;
  font: 700 clamp(2rem, 7vw, 4.8rem)/.9 'Be Vietnam Pro', sans-serif;
  letter-spacing: 0;
  color: var(--fx-ink);
}
.fx-loader-logo i {
  margin-left: .12em;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0;
}
.fx-loader-line {
  height: 2px;
  margin-top: 24px;
  overflow: hidden;
  background: rgba(17,17,15,.15);
  border-radius: 999px;
}
.fx-loader-line span {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--fx-ink);
  transform: translateX(-110%);
  animation: fxLoaderLine 1.05s cubic-bezier(.65,0,.35,1) infinite;
}
.fx-loader small {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .55;
}
@keyframes fxLoaderLine { 55%,100% { transform: translateX(235%); } }
@keyframes fxLoaderGlow { to { transform: scale(1.06); filter: blur(6px); } }

/* Desktop pointer aura */
.fx-pointer-aura {
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  height: 260px;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,255,99,.15) 0%, rgba(216,255,99,.06) 34%, transparent 70%);
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: opacity .25s ease;
  will-change: left, top;
}
.fx-pointer-aura.show { opacity: 1; }
main, footer, .nav-wrap { position: relative; z-index: 2; }

/* Animated editorial accent */
.hero h1 em,
.gallery-title h2 em,
.process-intro h2 em,
.final-cta h2 em {
  background: linear-gradient(105deg, currentColor 10%, #7d8157 42%, currentColor 72%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fxTextSheen 6s ease-in-out infinite;
}
@keyframes fxTextSheen { 0%,30%,100% { background-position: 100% 50%; } 55%,72% { background-position: 0% 50%; } }

/* Gloss pass over key imagery */
.main-photo::after,
.photographer-card .card-image::after {
  content: '';
  position: absolute;
  inset: -45% -70%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.26) 47%, rgba(255,255,255,.04) 54%, transparent 66%);
  transform: translateX(-48%) rotate(4deg);
  transition: transform 1s cubic-bezier(.2,.75,.2,1);
}
.main-photo:hover::after,
.photographer-card:hover .card-image::after { transform: translateX(48%) rotate(4deg); }

/* Magnetic/ripple controls */
.btn, .nav-cta, .book-btn, .filter {
  isolation: isolate;
  overflow: hidden;
}
.fx-ripple {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  background: rgba(255,255,255,.28);
  transform: translate(-50%,-50%) scale(0);
  animation: fxRipple .62s ease-out forwards;
}
.filter .fx-ripple { background: rgba(17,17,15,.14); }
@keyframes fxRipple { to { transform: translate(-50%,-50%) scale(24); opacity: 0; } }

/* Stronger perspective depth, JS supplies transform on fine pointers */
.photographer-card.fx-tilting {
  transition: box-shadow .18s ease, border-color .18s ease;
  box-shadow: 0 26px 70px rgba(20,18,12,.14);
}
.photographer-card { transform-style: preserve-3d; }
.photographer-card .card-body { transform: translateZ(0); }
.photographer-card.fx-tilting .card-body { transform: translateZ(18px); }
.photographer-card.fx-tilting .card-image { transform: translateZ(10px); }

/* Gallery lightbox */
.masonry figure { cursor: zoom-in; }
.masonry figure::before {
  content: 'XEM ẢNH';
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
  background: rgba(17,17,15,.54);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.masonry figure:hover::before { opacity: 1; transform: none; }
.fx-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(12,12,11,.92);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .34s ease, visibility .34s ease;
}
.fx-lightbox.open { opacity: 1; visibility: visible; }
.fx-lightbox-stage { min-height: 0; display: grid; place-items: center; }
.fx-lightbox img {
  display: block;
  max-width: min(1120px, 92vw);
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
  transform: translateY(14px) scale(.975);
  transition: transform .45s cubic-bezier(.2,.75,.2,1);
}
.fx-lightbox.open img { transform: none; }
.fx-lightbox-meta {
  width: min(1120px, 92vw);
  margin: 18px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fx-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.08);
  font-size: 26px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}
.fx-lightbox-close:hover { transform: rotate(90deg); background: rgba(255,255,255,.16); }

/* Subtle section spotlight when it enters viewport */
section.fx-section-live::after {
  content: '';
  position: absolute;
  width: min(50vw, 700px);
  aspect-ratio: 1;
  border-radius: 50%;
  right: -22vw;
  top: 12%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(216,255,99,.09), transparent 68%);
  animation: fxSectionPulse 2.4s ease-out both;
}
@keyframes fxSectionPulse { from { opacity: 0; transform: scale(.7); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 780px), (pointer: coarse) {
  .fx-pointer-aura { display: none; }
  .masonry figure::before { opacity: .82; transform: none; }
  .photographer-card.fx-tilting,
  .photographer-card.fx-tilting .card-body,
  .photographer-card.fx-tilting .card-image { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .fx-loader::before,
  .fx-loader-line span,
  .hero h1 em,
  .gallery-title h2 em,
  .process-intro h2 em,
  .final-cta h2 em,
  section.fx-section-live::after { animation: none !important; }
  .main-photo::after,
  .photographer-card .card-image::after { display: none; }
}

/* ===== cheese-brand-overrides ===== */
:root {
      --ink: #263d52;
      --ink-soft: #314c64;
      --cream: #ebe2d1;
      --paper: #f5eddf;
      --paper-2: #eee3d1;
      --lime: #d9a20d;
      --lime-soft: #f7e6a1;
      --warm: #ead1ad;
      --muted: #6d716f;
      --pink: #d82479;
      --line: rgba(38, 61, 82, 0.14);
    }

    body {
      background: var(--paper);
    }

    .nav-wrap {
      background: rgba(245, 237, 223, 0.82);
      border-color: rgba(38, 61, 82, 0.09);
    }

    .nav-wrap.is-scrolled {
      background: rgba(245, 237, 223, 0.94);
    }

    .brand-logo {
      width: clamp(155px, 13vw, 210px);
      height: 54px;
      display: inline-flex;
      align-items: center;
      overflow: visible;
      letter-spacing: 0;
    }

    .brand-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: left center;
      filter: drop-shadow(0 2px 0 rgba(255,255,255,.28));
    }

    .footer-brand {
      width: min(250px, 70vw);
      height: 82px;
    }

    .fx-loader {
      background: #ebe2d1;
    }

    .fx-loader-logo {
      width: min(430px, 78vw);
      margin: 0 auto 18px;
    }

    .fx-loader-logo img {
      width: 100%;
      height: auto;
      display: block;
    }

    .fx-loader-inner small {
      color: rgba(38,61,82,.55);
      letter-spacing: .2em;
    }

    .fx-loader-line span,
    .scroll-progress span {
      background: linear-gradient(90deg, var(--ink), var(--lime), var(--pink));
    }

    .hero {
      grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
      gap: clamp(32px, 4.5vw, 84px);
      min-height: 100svh;
      padding-top: 132px;
      padding-bottom: 58px;
      background:
        radial-gradient(circle at 10% 18%, rgba(255,255,255,.72) 0, transparent 30%),
        radial-gradient(circle at 73% 58%, rgba(216,36,121,.075) 0, transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(217,162,13,.12) 0, transparent 23%),
        var(--paper);
    }

    .hero::before {
      content: "CHEESE";
      right: -.04em;
      bottom: -.11em;
      color: rgba(38,61,82,.027);
      font-size: min(19vw, 290px);
      letter-spacing: 0;
    }

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

    .hero h1 {
      color: var(--ink);
    }

    .hero h1 em,
    .section-head h2 em,
    .gallery-title h2 em,
    .process-intro h2 em,
    .final-cta h2 em {
      color: var(--ink);
      text-decoration-color: var(--lime);
    }

    .hero .eyebrow::before,
    .section-head .eyebrow::before {
      background: var(--pink);
    }

    .hero-actions {
      margin-bottom: 54px;
    }

    .btn-dark,
    .nav-cta,
    .book-btn {
      background: var(--ink);
      color: #fffaf1;
    }

    .nav-cta::before,
    .btn-dark::before,
    .book-btn::before {
      background: var(--lime);
    }

    .nav-cta:hover,
    .btn-dark:hover,
    .book-btn:hover {
      color: var(--ink);
    }

    /* Continuous hero photo wall */
    .hero-reels-wrap {
      min-height: 720px;
      height: min(76vh, 760px);
      display: block;
      perspective: none;
      overflow: visible;
    }

    .hero-reels-wrap::before,
    .hero-reels-wrap::after {
      display: none;
    }

    .hero-reels {
      position: relative;
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 15px;
      overflow: hidden;
      padding: 0;
      border-radius: 36px;
      background: rgba(255,255,255,.3);
      border: 1px solid rgba(38,61,82,.08);
      box-shadow: 0 34px 100px rgba(38,61,82,.15);
      transform: rotate(1.1deg);
      isolation: isolate;
    }

    .hero-reels::before,
    .hero-reels::after {
      content: "";
      position: absolute;
      z-index: 6;
      left: 0;
      right: 0;
      height: 90px;
      pointer-events: none;
    }

    .hero-reels::before {
      top: 0;
      background: linear-gradient(to bottom, var(--paper), transparent);
    }

    .hero-reels::after {
      bottom: 0;
      background: linear-gradient(to top, var(--paper), transparent);
    }

    .hero-reel {
      min-width: 0;
      overflow: hidden;
    }

    .hero-reel:nth-child(2) {
      margin-top: -92px;
      margin-bottom: -92px;
    }

    .hero-reel-track {
      display: flex;
      flex-direction: column;
      gap: 14px;
      will-change: transform;
      animation: cheese-reel-up 25s linear infinite;
    }

    .hero-reel-2 .hero-reel-track {
      animation-duration: 31s;
      animation-direction: reverse;
    }

    .hero-reel-3 .hero-reel-track {
      animation-duration: 28s;
    }

    .hero-reel-group {
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex-shrink: 0;
    }

    .reel-card {
      position: relative;
      margin: 0;
      height: clamp(245px, 31vh, 330px);
      overflow: hidden;
      border-radius: 22px;
      background: #ded4c5;
      box-shadow: 0 14px 34px rgba(38,61,82,.11);
    }

    .hero-reel:nth-child(2) .reel-card:nth-child(even),
    .hero-reel:nth-child(3) .reel-card:nth-child(odd) {
      height: clamp(210px, 27vh, 285px);
    }

    .reel-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.86) contrast(1.02) sepia(.035);
      transform: scale(1.025);
      transition: filter .5s ease, transform .7s var(--ease);
    }

    .hero-reels:hover .hero-reel-track {
      animation-play-state: paused;
    }

    .hero-reels:hover .reel-card:hover img {
      filter: saturate(1) contrast(1.04);
      transform: scale(1.08);
    }

    .hero-reels-badge {
      position: absolute;
      z-index: 8;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-4deg);
      min-width: 166px;
      padding: 15px 18px 13px;
      border: 1px solid rgba(255,255,255,.75);
      border-radius: 18px;
      background: rgba(245,237,223,.88);
      backdrop-filter: blur(16px) saturate(130%);
      box-shadow: 0 18px 48px rgba(38,61,82,.18);
      text-align: center;
      pointer-events: none;
    }

    .hero-reels-badge span {
      display: block;
      color: var(--ink);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .2em;
    }

    .hero-reels-badge b {
      display: inline-block;
      margin-top: 1px;
      color: var(--pink);
      font-family: "Playfair Display", serif;
      font-style: italic;
      font-size: 22px;
      font-weight: 600;
    }

    .hero-reels-badge i {
      margin-left: 5px;
      color: var(--lime);
      font-style: normal;
    }

    @keyframes cheese-reel-up {
      from { transform: translateY(0); }
      to { transform: translateY(calc(-50% - 7px)); }
    }

    .ticker {
      background: var(--ink);
      color: #fffaf1;
    }

    .ticker i {
      color: var(--pink);
    }

    .filters button.active,
    .filters button:hover {
      background: var(--ink);
      color: #fff;
      border-color: var(--ink);
    }

    .favorite.active {
      color: var(--pink);
    }

    .status-dot,
    .trust-list li::before {
      background: var(--pink);
    }

    @media (max-width: 1180px) {
      .hero {
        grid-template-columns: .9fr 1.1fr;
        gap: 30px;
      }
      .hero-reels-wrap {
        min-height: 620px;
        height: 650px;
      }
      .brand-logo {
        width: 165px;
      }
    }

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 140px;
        gap: 56px;
      }
      .hero-copy {
        max-width: 760px;
      }
      .hero-reels-wrap {
        width: 100%;
        height: 600px;
        min-height: 0;
      }
      .hero-reels {
        transform: rotate(.6deg);
      }
      .reel-card {
        height: 280px;
      }
      .hero-reel:nth-child(2) .reel-card:nth-child(even),
      .hero-reel:nth-child(3) .reel-card:nth-child(odd) {
        height: 235px;
      }
    }

    @media (max-width: 640px) {
      .brand-logo {
        width: 150px;
        height: 45px;
      }
      .nav-wrap {
        min-height: 62px;
        padding-left: 17px;
      }
      .hero {
        padding-top: 118px;
        gap: 42px;
      }
      .hero-reels-wrap {
        width: calc(100% + 28px);
        margin-left: -14px;
        height: 485px;
      }
      .hero-reels {
        gap: 8px;
        border-radius: 25px;
      }
      .hero-reel-track,
      .hero-reel-group {
        gap: 8px;
      }
      .reel-card,
      .hero-reel:nth-child(2) .reel-card:nth-child(even),
      .hero-reel:nth-child(3) .reel-card:nth-child(odd) {
        height: 190px;
        border-radius: 13px;
      }
      .hero-reel:nth-child(2) {
        margin-top: -52px;
        margin-bottom: -52px;
      }
      .hero-reels-badge {
        min-width: 132px;
        padding: 11px 12px 10px;
        border-radius: 14px;
      }
      .hero-reels-badge b {
        font-size: 18px;
      }
      .hero-reels-badge span {
        font-size: 9px;
      }
      @keyframes cheese-reel-up {
        from { transform: translateY(0); }
        to { transform: translateY(calc(-50% - 4px)); }
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-reel-track {
        animation: none !important;
      }
      .hero-reels {
        transform: none;
      }
    }

/* ===== block-03 ===== */
/* =========================================================
   Cheese.graduation v3 — horizontal reels + compact crew cards
   ========================================================= */
.cheese-hero-v3{
  display:block!important;
  width:100%!important;
  max-width:none!important;
  padding:118px 0 0!important;
  background:linear-gradient(180deg,#15130f 0%,#090909 68%,#090909 100%)!important;
  color:#fff!important;
  overflow:hidden;
  min-height:auto!important;
}
.cheese-hero-v3::before{display:none!important}
.cheese-hero-v3 .hero-copy{
  width:min(860px,calc(100% - 40px));
  max-width:860px!important;
  margin:0 auto 34px!important;
  padding:0!important;
  text-align:center;
  position:relative;
  z-index:2;
}
.cheese-hero-v3 .eyebrow{color:#f0c928!important;justify-content:center;font-size:11px;letter-spacing:.16em}
.cheese-hero-v3 .eyebrow::before{background:#f0c928!important}
.cheese-hero-v3 h1{font-size:clamp(42px,5.3vw,82px)!important;line-height:1.3!important;letter-spacing:0!important;color:#fff!important;margin:16px 0 18px!important}
.cheese-hero-v3 h1 em{color:#f0c928!important;font-style:normal!important;background:none!important}
.cheese-hero-v3 .hero-copy>p{max-width:690px!important;margin:0 auto!important;color:rgba(255,255,255,.7)!important;font-size:clamp(15px,1.35vw,18px)!important;line-height:1.65!important}
.hero-pills{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin:22px 0 18px}
.hero-pills span{border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.045);border-radius:999px;padding:8px 12px;font-size:12px;color:rgba(255,255,255,.72);backdrop-filter:blur(8px)}
.hero-pills b{color:#fff}
.cheese-hero-v3 .hero-actions{justify-content:center!important;margin-top:14px!important;gap:10px!important}
.btn-light{background:#fff!important;color:#131313!important;border-color:#fff!important;box-shadow:0 8px 30px rgba(255,255,255,.1)!important}
.btn-outline-light{background:transparent!important;color:#fff!important;border:1px solid rgba(255,255,255,.32)!important}
.btn-outline-light:hover{background:#fff!important;color:#111!important}
.cheese-hero-v3 .hero-reels-wrap{width:100vw!important;max-width:none!important;margin:0!important;padding:0 0 28px!important;transform:none!important;position:relative!important;left:50%!important;right:50%!important;margin-left:-50vw!important;margin-right:-50vw!important;min-height:0!important}
.cheese-hero-v3 .hero-reels{display:flex!important;flex-direction:column!important;gap:8px!important;width:100%!important;height:auto!important;padding:0!important;overflow:hidden!important;background:#090909!important;border-radius:0!important;box-shadow:none!important}
.cheese-hero-v3 .hero-reels::before,.cheese-hero-v3 .hero-reels::after{display:none!important}
.cheese-hero-v3 .hero-reel{width:100%!important;overflow:hidden!important;transform:none!important;opacity:1!important}
.cheese-hero-v3 .hero-reel-track{display:flex!important;width:max-content!important;gap:8px!important;animation:cheeseMarqueeA 43s linear infinite!important;will-change:transform}
.cheese-hero-v3 .hero-reel-2 .hero-reel-track{animation-name:cheeseMarqueeB!important;animation-duration:50s!important}
.cheese-hero-v3 .hero-reel-group{display:flex!important;gap:8px!important;flex:none!important;width:max-content!important}
.cheese-hero-v3 .reel-card{position:relative!important;flex:0 0 210px!important;width:210px!important;height:190px!important;border-radius:10px!important;overflow:hidden!important;background:#171717!important;margin:0!important;box-shadow:none!important;transform:none!important}
.cheese-hero-v3 .reel-card:nth-child(3n+1){flex-basis:280px!important;width:280px!important}
.cheese-hero-v3 .reel-card:nth-child(4n+2){flex-basis:160px!important;width:160px!important}
.cheese-hero-v3 .hero-reel-2 .reel-card{height:205px!important}
.cheese-hero-v3 .reel-card img{width:100%!important;height:100%!important;display:block!important;object-fit:cover!important;filter:saturate(.88) contrast(1.04)!important;transition:transform .7s cubic-bezier(.2,.7,.2,1),filter .4s ease!important}
.cheese-hero-v3 .reel-card:hover img{transform:scale(1.04)!important;filter:saturate(1) contrast(1.02)!important}
.cheese-hero-v3 .hero-reels:hover .hero-reel-track{animation-play-state:paused!important}
@keyframes cheeseMarqueeA{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@keyframes cheeseMarqueeB{from{transform:translateX(-50%)}to{transform:translateX(0)}}

/* Photographer cards inspired by the compact reference card */
.cheese-photographer-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:18px!important;align-items:start}
.cheese-photographer-card{background:#fff!important;border:1px solid #d7e0e8!important;border-radius:18px!important;overflow:hidden!important;box-shadow:0 8px 30px rgba(14,37,58,.055)!important;padding:0!important;transform:none;min-width:0}
.cheese-photographer-card:hover{transform:translateY(-7px)!important;box-shadow:0 18px 45px rgba(14,37,58,.12)!important;border-color:#bacbd8!important}
.cheese-photographer-card::after{display:none!important}
.cheese-photographer-card .card-image{aspect-ratio:4/5!important;height:auto!important;min-height:0!important;border-radius:17px 17px 0 0!important;background-size:cover!important;background-position:center!important;position:relative!important;overflow:hidden!important;transform:none!important}
.cheese-photographer-card .card-image::after{background:linear-gradient(180deg,rgba(0,0,0,.06),transparent 28%,rgba(0,0,0,.08))!important}
.cheese-photographer-card .badge{top:12px!important;left:12px!important;background:rgba(255,255,255,.94)!important;color:#176c9b!important;border:1px solid rgba(23,108,155,.12)!important;border-radius:7px!important;padding:6px 10px!important;font-size:11px!important;font-weight:800!important;letter-spacing:.08em!important;box-shadow:0 3px 14px rgba(0,0,0,.08)!important}
.cheese-photographer-card .heart{top:11px!important;right:11px!important;background:rgba(255,255,255,.9)!important;color:#16334d!important;width:34px!important;height:34px!important;border-radius:50%!important;opacity:0;transform:translateY(-4px);transition:.25s ease!important}
.cheese-photographer-card:hover .heart{opacity:1;transform:none}
.cheese-photographer-card .card-body{padding:14px 14px 13px!important;transform:none!important}
.cheese-photographer-card h3{font-family:var(--font-display)!important;font-size:26px!important;line-height:1.3!important;margin:0 0 10px!important;color:#102a43!important;letter-spacing:0!important}
.photographer-tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:9px}
.photographer-tags span{font-size:11px;line-height:1.3;border:1px solid #a8d8ba;background:#effaf3;color:#0f7650;border-radius:6px;padding:6px 8px}
.shoot-stats{font-size:13px;color:#4d6273;line-height:1.45;margin:0 0 10px}
.shoot-stats b{color:#1f3345}.shoot-stats .star{color:#ff5d31;margin-right:2px}
.price-block{border-top:1px solid #d8e0e7;padding-top:11px;margin-top:7px;display:flex;align-items:baseline;gap:5px;flex-wrap:wrap}
.price-block small{font-size:13px;color:#5d7182}
.price-block strong{font-family:var(--font-sans)!important;font-size:clamp(25px,2vw,31px)!important;line-height:1.3!important;color:#132c42!important;font-weight:800!important;letter-spacing:0!important}
.card-book-link{padding:5px 0 0!important;background:transparent!important;border:0!important;color:#8493a1!important;font-size:12px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;width:100%!important;text-align:left!important;font-weight:500!important;box-shadow:none!important;min-height:auto!important}
.card-book-link:hover{color:#173a56!important;transform:none!important;background:transparent!important}
.card-book-link span{font-size:14px;color:#d8ab00}

/* Floating music control */
.music-toggle{position:fixed;right:18px;bottom:18px;z-index:1200;display:flex;align-items:center;gap:9px;border:1px solid rgba(255,255,255,.2);background:#102a43;color:#fff;border-radius:999px;padding:10px 14px 10px 11px;box-shadow:0 12px 35px rgba(10,28,44,.22);font:700 12px/1 var(--font-sans);cursor:pointer;transition:transform .25s ease,background .25s ease}
.music-toggle:hover{transform:translateY(-2px);background:#153a59}.music-toggle.is-playing{background:#d8ab00;color:#102a43}
.music-bars{display:flex;align-items:flex-end;gap:2px;width:15px;height:14px}.music-bars i{display:block;width:3px;height:6px;background:currentColor;border-radius:3px;transform-origin:bottom}
.music-toggle.is-playing .music-bars i:nth-child(1){animation:musicBar .75s ease-in-out infinite alternate}.music-toggle.is-playing .music-bars i:nth-child(2){animation:musicBar .55s .12s ease-in-out infinite alternate}.music-toggle.is-playing .music-bars i:nth-child(3){animation:musicBar .68s .22s ease-in-out infinite alternate}
@keyframes musicBar{to{height:14px}}

@media(max-width:1100px){.cheese-photographer-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.cheese-photographer-card .card-image{aspect-ratio:4/4.7!important}}
@media(max-width:720px){
  .cheese-hero-v3{padding-top:98px!important}
  .cheese-hero-v3 .hero-copy{width:min(100% - 28px,680px)!important;margin-bottom:25px!important}
  .cheese-hero-v3 h1{font-size:clamp(39px,13vw,60px)!important}
  .hero-pills{gap:6px}.hero-pills span{font-size:10px;padding:7px 9px}
  .cheese-hero-v3 .hero-actions{display:grid!important;grid-template-columns:1fr!important;width:min(100%,330px)!important;margin-left:auto!important;margin-right:auto!important}
  .cheese-hero-v3 .reel-card{height:142px!important;flex-basis:150px!important;width:150px!important;border-radius:8px!important}
  .cheese-hero-v3 .reel-card:nth-child(3n+1){flex-basis:205px!important;width:205px!important}
  .cheese-hero-v3 .reel-card:nth-child(4n+2){flex-basis:118px!important;width:118px!important}
  .cheese-hero-v3 .hero-reel-2 .reel-card{height:152px!important}
  .cheese-photographer-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important}
  .cheese-photographer-card{border-radius:14px!important}.cheese-photographer-card .card-image{border-radius:13px 13px 0 0!important;aspect-ratio:3/4!important}
  .cheese-photographer-card .card-body{padding:11px 10px 10px!important}.cheese-photographer-card h3{font-size:20px!important;margin-bottom:8px!important}
  .photographer-tags{gap:4px;margin-bottom:7px}.photographer-tags span{font-size:9px;padding:5px 6px}
  .shoot-stats{font-size:10px!important;margin-bottom:8px}.price-block{padding-top:8px}.price-block small{font-size:10px}.price-block strong{font-size:19px!important}
  .card-book-link{font-size:10px!important}.cheese-photographer-card .badge{font-size:9px!important;top:8px!important;left:8px!important;padding:5px 7px!important}
  .cheese-photographer-card .heart{opacity:1!important;top:7px!important;right:7px!important;width:30px!important;height:30px!important}
  .music-toggle{right:12px;bottom:12px;padding:9px 11px}.music-label{display:none}
}
@media(max-width:390px){.cheese-photographer-grid{grid-template-columns:1fr!important}.cheese-photographer-card .card-image{aspect-ratio:4/4.8!important}.price-block strong{font-size:27px!important}}
@media(prefers-reduced-motion:reduce){.cheese-hero-v3 .hero-reel-track{animation-duration:1ms!important;animation-iteration-count:1!important}.music-bars i{animation:none!important}}

/* =========================================================
   REAL WORK — infinite long strip carousel
   ========================================================= */
.real-work-section{overflow:hidden}.real-work-header{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;max-width:1180px;margin-left:auto;margin-right:auto}.real-work-copy{max-width:760px}.real-work-copy p{max-width:650px;margin:15px 0 0;color:#6f7468;font-size:14px;line-height:1.65}.real-work-toolbar{display:flex;align-items:center;gap:12px;flex:0 0 auto}.real-work-status{display:grid;justify-items:center;gap:5px;min-width:82px}.real-work-counter{color:#6f7468;font-size:11px;font-weight:900;letter-spacing:.16em;white-space:nowrap}.real-work-auto{display:inline-flex;align-items:center;gap:5px;color:#8b8f86;font-size:8px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.real-work-auto i{width:6px;height:6px;border-radius:50%;background:#8cab43;box-shadow:0 0 0 4px rgba(140,171,67,.12);animation:realWorkPulse 1.5s ease-in-out infinite}@keyframes realWorkPulse{0%,100%{transform:scale(.8);opacity:.55}50%{transform:scale(1);opacity:1}}.real-work-nav{width:50px;height:50px;border-radius:999px;border:1px solid rgba(22,23,19,.12);background:#fff;color:#161713;font-size:20px;line-height:1.3;cursor:pointer;transition:.25s ease}.real-work-nav:hover{transform:translateY(-2px);background:#161713;color:#fff;border-color:#161713;box-shadow:0 16px 30px rgba(22,23,19,.12)}.real-work-slider-shell{position:relative;width:100vw;margin-left:calc(50% - 50vw);margin-top:26px}.real-work-slider-shell::before,.real-work-slider-shell::after{content:"";position:absolute;top:0;bottom:0;z-index:3;width:clamp(18px,5vw,90px);pointer-events:none}.real-work-slider-shell::before{left:0;background:linear-gradient(90deg,#f5f2ea 8%,rgba(245,242,234,.62) 35%,transparent)}.real-work-slider-shell::after{right:0;background:linear-gradient(270deg,#f5f2ea 8%,rgba(245,242,234,.62) 35%,transparent)}
.real-work-grid{--real-card-w:min(43vw,500px);--real-card-h:min(57vw,650px);display:flex;align-items:center;gap:12px;overflow-x:auto;overflow-y:hidden;padding:34px calc(50vw - var(--real-card-w)/2) 40px;scroll-padding-inline:calc(50vw - var(--real-card-w)/2);scroll-snap-type:x proximity;scroll-behavior:smooth;scrollbar-width:none;overscroll-behavior-x:contain;touch-action:pan-y;cursor:grab;-webkit-overflow-scrolling:touch}.real-work-grid.is-dragging{cursor:grabbing;scroll-snap-type:none;scroll-behavior:auto}.real-work-grid::-webkit-scrollbar{display:none}.real-work-grid .real-card{flex:0 0 var(--real-card-w);width:var(--real-card-w);height:var(--real-card-h);position:relative;overflow:hidden;margin:0;border-radius:28px;background:#ddd;scroll-snap-align:center;transform:scale(.76);opacity:.30;filter:blur(2.2px) saturate(.62) brightness(.76);box-shadow:0 14px 34px rgba(15,20,10,.05);transition:transform .48s cubic-bezier(.2,.8,.2,1),opacity .38s ease,filter .38s ease,box-shadow .48s ease}.real-work-grid .real-card.is-near{transform:scale(.86);opacity:.58;filter:blur(.8px) saturate(.82) brightness(.9)}.real-work-grid .real-card.is-active{transform:scale(1);opacity:1;filter:none;z-index:2;box-shadow:0 34px 90px rgba(15,20,10,.20)}.real-work-grid .real-card img{display:block;width:100%;height:100%;object-fit:cover;transform:scale(1.035);transition:transform .65s cubic-bezier(.2,.75,.2,1)}.real-work-grid .real-card.is-active img{transform:scale(1)}.real-work-grid .real-card::after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(180deg,rgba(10,10,10,0) 50%,rgba(10,10,10,.58) 100%);opacity:.52;transition:opacity .3s ease}.real-work-grid .real-card.is-active::after{opacity:1}.real-work-grid .real-card figcaption{position:absolute;left:16px;right:16px;bottom:16px;z-index:2;width:max-content;max-width:calc(100% - 32px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:10px 14px;border:1px solid rgba(255,255,255,.38);border-radius:999px;background:rgba(255,255,255,.86);backdrop-filter:blur(12px);color:#161713;font-size:9px;font-weight:900;letter-spacing:.07em;text-transform:uppercase;opacity:.25;transform:translateY(7px);transition:.3s ease}.real-work-grid .real-card.is-active figcaption{opacity:1;transform:translateY(0)}.real-work-mobile-meta{display:flex;align-items:center;justify-content:space-between;gap:14px;max-width:1180px;margin:6px auto 0}.real-work-dots{display:flex;align-items:center;gap:6px;flex-wrap:wrap;justify-content:flex-end}.real-work-dots i{display:block;width:6px;height:6px;border-radius:999px;background:rgba(22,23,19,.18);transition:.25s ease;cursor:pointer}.real-work-dots i.active{width:24px;background:#161713}
@media(max-width:1000px){.real-work-header{align-items:flex-start;flex-direction:column}.real-work-toolbar{align-self:flex-start}.real-work-grid{--real-card-w:min(58vw,480px);--real-card-h:min(76vw,620px)}}
@media(max-width:720px){.gallery.section-pad{padding-left:0!important;padding-right:0!important}.real-work-header{padding-left:20px;padding-right:20px;gap:16px}.real-work-copy p{font-size:13px;line-height:1.55}.real-work-toolbar{width:100%;justify-content:space-between}.real-work-status{min-width:72px}.real-work-slider-shell{margin-top:12px}.real-work-slider-shell::before,.real-work-slider-shell::after{width:16px}.real-work-grid{--real-card-w:min(74vw,320px);--real-card-h:min(103vw,465px);gap:6px;padding-top:22px;padding-bottom:26px}.real-work-grid .real-card{transform:scale(.78);opacity:.25;border-radius:21px;filter:blur(2px) saturate(.58) brightness(.76)}.real-work-grid .real-card.is-near{transform:scale(.87);opacity:.48;filter:blur(1px) saturate(.78) brightness(.88)}.real-work-grid .real-card.is-active{transform:scale(1);opacity:1;filter:none}.real-work-grid .real-card figcaption{left:11px;right:11px;bottom:11px;max-width:calc(100% - 22px);padding:9px 11px;font-size:8px}.real-work-mobile-meta{padding-left:20px;padding-right:20px}.desktop-counter{display:none}.real-work-nav{width:44px;height:44px}}
@media(max-width:390px){.real-work-header,.real-work-mobile-meta{padding-left:14px;padding-right:14px}.real-work-grid{--real-card-w:76vw;--real-card-h:108vw}}
@media(prefers-reduced-motion:reduce){.real-work-grid{scroll-behavior:auto!important}.real-work-auto i{animation:none!important}.real-work-grid .real-card,.real-work-grid .real-card img{transition:none!important}}

