/* ============================================
   tbrska — stylesheet
   Editorial minimalism with artistic soul
   ============================================ */

:root{
  /* Brand palette */
  --wine:         #301728;
  --wine-soft:    #4A2538;
  --wine-deep:    #1E0E18;
  --cream:        #F4EFEA;
  --cream-warm:   #EDE6DD;
  --cream-soft:   #F9F5F0;
  --sky:          #B7D4EA;
  --sky-deep:     #8FB8D4;

  /* Utility */
  --text:         #2A1620;
  --text-muted:   #7A6A73;
  --line:         #E5DDD3;
  --line-soft:    rgba(48,23,40,0.08);

  /* Typography */
  --f-display:    'Fraunces', Georgia, 'Times New Roman', serif;
  --f-body:       'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing rhythm */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-xxl: 11rem;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.25s;
  --dur: 0.5s;
  --dur-slow: 0.9s;

  /* Max-width */
  --wrap: 1400px;
  --wrap-narrow: 1100px;
  --wrap-text: 780px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 88px; overflow-x: hidden; }
a, button, [role="button"], input[type="submit"] { touch-action: manipulation; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--wine); color: var(--cream); }

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

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.55rem 0.55rem 0.55rem 1.5rem;
  background: rgba(244, 239, 234, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: 0 10px 40px -10px rgba(48, 23, 40, 0.15);
  transition: transform var(--dur) var(--ease), top var(--dur) var(--ease);
  max-width: calc(100vw - 2rem);
}
.nav.scrolled {
  top: 1rem;
  box-shadow: 0 14px 50px -14px rgba(48, 23, 40, 0.22);
}
.nav-brand {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--wine);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--dur-fast);
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--wine); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--wine);
}
.nav-lang {
  display: flex;
  background: var(--cream-warm);
  border-radius: 100px;
  padding: 3px;
}
.lang-btn {
  border: none;
  background: transparent;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all var(--dur-fast);
}
.lang-btn.active {
  background: var(--wine);
  color: var(--cream);
}
.lang-btn:disabled { opacity: 0.4; cursor: not-allowed; }

@media (max-width: 860px) {
  .nav { padding: 0.45rem 0.45rem 0.45rem 1rem; gap: 0.7rem; top: 0.85rem; max-width: calc(100vw - 1.5rem); }
  .nav-links { display: none; }
  .nav-brand { font-size: 1.1rem; }
  .lang-btn { padding: 0.28rem 0.5rem; font-size: 0.67rem; }
}
@media (max-width: 480px) {
  .nav { top: 0.6rem; padding: 0.4rem 0.4rem 0.4rem 0.9rem; max-width: calc(100vw - 1.2rem); }
  .nav-brand { font-size: 1rem; }
  .lang-btn { padding: 0.25rem 0.45rem; font-size: 0.64rem; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.9rem;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--wine);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(48, 23, 40, 0.5);
}
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn-ghost:hover {
  background: var(--wine);
  color: var(--cream);
}
.btn-ghost:hover .btn-arrow { transform: translateX(4px); }
.btn-full { width: 100%; justify-content: center; }
.btn-small { padding: 0.65rem 1.2rem; font-size: 0.78rem; }
.btn-arrow {
  display: inline-block;
  transition: transform var(--dur) var(--ease);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 9rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--sky);
  top: -10%; right: -15%;
  animation: float 20s ease-in-out infinite;
}
.blob-2 {
  width: 500px; height: 500px;
  background: var(--wine);
  opacity: 0.18;
  bottom: -20%; left: -10%;
  animation: float 25s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(40px, -30px) rotate(5deg); }
  66% { transform: translate(-30px, 20px) rotate(-3deg); }
}
.hero-portrait {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  max-width: 640px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.58;
  mix-blend-mode: multiply;
  filter: grayscale(0.4) contrast(1.05);
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
  pointer-events: none;
}

.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--wrap);
  margin: 0 auto 3rem;
  width: 100%;
  opacity: 0;
  animation: slideIn 1s var(--ease) 0.2s forwards;
}
.meta-line {
  width: 60px; height: 1px;
  background: var(--wine);
}
.meta-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  margin: 0 auto;
  width: 100%;
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(3.5rem, 11vw, 10rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--wine);
  margin-bottom: 2.5rem;
  max-inline-size: 14ch;
  text-wrap: balance;
}
.hero-word {
  display: inline-block;
  padding: 0.05em 0.08em 0.18em 0.02em;
  opacity: 0;
  transform: translateY(40px);
  animation: wordReveal 1s var(--ease) calc(0.3s + var(--d) * 0.18s) forwards;
}
.hero-word--accent {
  font-style: italic;
  font-weight: 400;
  padding-right: 0.18em;
  background: linear-gradient(100deg, var(--wine) 0%, var(--sky-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--text);
  max-inline-size: 42ch;
  text-wrap: pretty;
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0;
  animation: slideIn 1s var(--ease) 1s forwards;
  transform: translateY(20px);
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideIn 1s var(--ease) 1.2s forwards;
  transform: translateY(20px);
}
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--wine);
  opacity: 0;
  animation: slideIn 1s var(--ease) 1.5s forwards;
  z-index: 2;
}
.scroll-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: var(--wine);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--cream));
  animation: scrollDown 2.5s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

@media (max-width: 680px) {
  .hero { padding: 7rem 1.25rem 6.5rem; }
  .hero-portrait { width: 92%; right: -6%; opacity: 0.42; aspect-ratio: 4 / 3; }
  .hero-sub { font-size: 1rem; }
  .hero-scroll { bottom: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-title { font-size: clamp(2.8rem, 14vw, 4.5rem); }
}

/* ============ STRIP ============ */
.strip {
  background: var(--wine);
  color: var(--cream);
  padding: var(--space-lg) 2rem;
  position: relative;
  overflow: hidden;
}
.strip::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky) 50%, transparent);
}
.strip-inner {
  max-width: var(--wrap-text);
  margin: 0 auto;
  text-align: center;
}
.strip-text {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.4;
  font-weight: 300;
  color: var(--cream);
}
.strip-text em {
  font-style: italic;
  color: var(--sky);
  font-weight: 400;
}

/* ============ SECTION BASICS ============ */
.section {
  padding: var(--space-xxl) 2rem;
  max-width: var(--wrap);
  margin: 0 auto;
  position: relative;
}
.section-header {
  max-width: var(--wrap-text);
  margin-bottom: var(--space-lg);
}
.section-header--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header--centered .section-title,
.section-header--centered .section-lead {
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
}
.section-label--centered {
  justify-content: center;
  display: flex;
}
.label-num {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--wine);
  border-radius: 4px;
}
.section-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--wine);
  margin-bottom: 1.5rem;
  text-wrap: balance;
  max-inline-size: 20ch;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--sky-deep);
}
.section-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  max-inline-size: 55ch;
  text-wrap: pretty;
  font-weight: 300;
}

@media (max-width: 768px) {
  .section { padding: var(--space-xl) 1.25rem; }
}
@media (max-width: 480px) {
  .section { padding: var(--space-lg) 1rem; }
}

/* ============ WORK / PORTFOLIO ============ */
.work-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2rem;
}
.filter-btn {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  background: transparent;
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: var(--f-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 100px;
  transition: all var(--dur) var(--ease);
  font-weight: 500;
  position: relative;
}
.filter-btn:hover { color: var(--wine); background: var(--cream-warm); }
.filter-btn.active {
  background: var(--wine);
  color: var(--cream);
}
.filter-count {
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.7;
}
.filter-btn.active .filter-count { opacity: 0.9; }

.work-desc {
  margin-bottom: 3rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  min-height: 1.75rem;
}
.work-desc-text { line-height: 1.6; }

.work-grid[hidden] { display: none !important; }
.work-grid {
  column-count: 3;
  column-gap: 1.25rem;
}
@media (max-width: 960px) {
  .work-grid { column-count: 2; column-gap: 1rem; }
}
@media (max-width: 640px) {
  .work-grid { column-count: 1; }
}

/* ============ CATEGORY COVERS ============ */
.work-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .work-categories { grid-template-columns: 1fr; gap: 1.25rem; }
}
.cat-card {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-warm);
  border: 1px solid var(--line-soft);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.cat-card:hover,
.cat-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(48, 23, 40, 0.25);
  border-color: var(--wine);
}
.cat-card:focus-visible { outline: 2px solid var(--sky-deep); outline-offset: 3px; }
.cat-card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
}
.cat-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease);
}
.cat-card:hover .cat-card-media img { transform: scale(1.04); }
.cat-card-info {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cat-card-label {
  font-family: var(--f-display);
  font-size: 1.45rem;
  color: var(--wine);
  line-height: 1.2;
}
.cat-card-count {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 500;
}
.cat-card-cta {
  font-size: 0.88rem;
  color: var(--sky-deep);
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}
.cat-card:hover .cat-card-cta .btn-arrow { transform: translateX(4px); }
.cat-card-cta .btn-arrow { transition: transform var(--dur) var(--ease); }

/* ============ GALLERY MODAL ============ */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--cream);
  overflow-y: auto;
  animation: galleryIn 0.3s var(--ease) both;
}
.gallery-modal[hidden] { display: none !important; }
@keyframes galleryIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.gallery-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(244, 239, 234, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 640px) {
  .gallery-header { padding: 1rem 1.25rem; }
}
.gallery-header-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.gallery-header-eyebrow {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}
.gallery-header-label {
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--wine);
}
.gallery-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: var(--wine);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease);
}
.gallery-close:hover { background: var(--cream-warm); }
.gallery-grid {
  column-count: 3;
  column-gap: 1.25rem;
  padding: 2rem;
}
@media (max-width: 900px) {
  .gallery-grid { column-count: 2; padding: 1.25rem; }
}
@media (max-width: 560px) {
  .gallery-grid { column-count: 1; }
}
.gallery-item {
  all: unset;
  box-sizing: border-box;
  display: block;
  break-inside: avoid;
  margin: 0 0 1.25rem;
  border-radius: 4px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--cream-warm);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--dur-slow) var(--ease);
}
.gallery-item:hover img { transform: scale(1.02); }
.gallery-item:focus-visible { outline: 2px solid var(--sky-deep); outline-offset: 3px; }
.gallery-item-caption {
  display: block;
  padding: 0.75rem 1rem 0.9rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--wine);
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
}

.work-tile {
  break-inside: avoid;
  margin: 0 0 1.25rem;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
  transition: all var(--dur-slow) var(--ease);
  animation: tileEntry 0.8s var(--ease) calc(var(--delay) * 0.07s) both;
}
.work-tile.hidden { display: none; }
@keyframes tileEntry {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.tile-media {
  inline-size: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease);
  background: var(--cream-warm);
}
.tile-media img {
  inline-size: 100%;
  block-size: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--dur-slow) var(--ease);
}
.work-tile:hover .tile-media { transform: scale(1.02); }

.tile-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--dur) var(--ease);
}
.work-tile:hover .tile-overlay,
.work-tile:focus-within .tile-overlay { opacity: 1; transform: translateY(0); }
.tile-cat {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.tile-title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--wine);
  font-weight: 400;
}

.work-empty {
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.25rem;
}

.work-more {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* ============ STUDIO ============ */
.studio {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  border-radius: 2px;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 900px) {
  .studio-grid { grid-template-columns: 1fr; gap: var(--space-md); }
}
.studio-meta {
  position: sticky;
  top: 7rem;
}
@media (max-width: 900px) {
  .studio-meta { position: static; }
}
@media (max-width: 640px) {
  .studio-facts li { grid-template-columns: 1fr; gap: 0.25rem; padding-bottom: 1.1rem; }
  .studio-facts li > * { text-align: left; }
  .studio-photo { max-width: 100%; aspect-ratio: 3 / 2; }
  .studio-working { max-width: 100%; }
}
.studio-photo {
  margin: 0 0 1.75rem;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream-soft);
  max-width: 320px;
}
.studio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}
.studio-location {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--wine);
  margin: 1rem 0 0.5rem;
}
.studio-working {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 28ch;
}
.studio-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.studio-facts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line-soft);
}
.studio-facts span {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--wine);
  font-weight: 400;
}
.studio-facts small {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.studio-copy .section-title { margin-bottom: 2.5rem; }
.studio-text {
  max-inline-size: 56ch;
  text-wrap: pretty;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  font-weight: 300;
}
.studio-lead {
  font-size: 1.3rem;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  color: var(--wine);
  margin-bottom: 2rem;
  line-height: 1.45;
}
.studio-text p + p { margin-top: 1.5rem; }
.studio-closer {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--wine);
  margin-top: 2.5rem !important;
}
.studio-signature {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--sky-deep);
  margin-top: 2rem !important;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service {
  padding: 3rem 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.service:last-child { border-right: none; }
@media (max-width: 900px) {
  .service { border-right: none; padding: 2.5rem 1rem; }
}
.service:hover { background: var(--cream-soft); }
.service-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.service-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--sky-deep);
  font-weight: 400;
}
.service-dot {
  width: 6px; height: 6px;
  background: var(--wine);
  border-radius: 50%;
}
.service-name {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  color: var(--wine);
  margin-bottom: 1rem;
  line-height: 1.05;
}
.service-short {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-family: var(--f-display);
  font-style: italic;
}
.service-detail {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 2rem;
}
.service-detail p + p { margin-top: 1rem; }
.service-meta {
  margin-top: 1.5rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.service-meta strong { color: var(--wine); font-weight: 600; }
.service-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wine);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--wine);
  transition: gap var(--dur) var(--ease);
}
.service-cta:hover { gap: 0.9rem; }
.service-cta .btn-arrow { transition: transform var(--dur) var(--ease); }
.service-cta:hover .btn-arrow { transform: translateX(3px); }

/* ============ PROCESS ============ */
.process {
  background: var(--wine);
  color: var(--cream);
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sky) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
}
.process-header {
  max-width: var(--wrap);
  margin: 0 auto 2.25rem;
  position: relative;
  z-index: 2;
}
.process-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.process-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--cream);
  max-inline-size: 22ch;
  text-wrap: balance;
}
.process-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--sky);
}
.process-steps {
  max-width: var(--wrap);
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
@media (max-width: 520px) {
  .process-steps { grid-template-columns: 1fr; }
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(244, 239, 234, 0.2);
}
.step-num {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sky);
  font-style: italic;
}
.step-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
}
.step-text {
  font-size: 0.82rem;
  color: rgba(244, 239, 234, 0.75);
  line-height: 1.5;
  font-weight: 300;
}

/* ============ IN-SITU VIDEO ============ */
.section.insitu {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-md);
}
.insitu + .testimonials {
  padding-top: var(--space-xl);
}
.insitu .section-header { margin-bottom: 3rem; }
.insitu-video {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  background: #1E0E18;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(48, 23, 40, 0.45);
  position: relative;
}
.insitu-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 680px) {
  .insitu-video { max-width: 300px; border-radius: 12px; }
}

/* ============ TESTIMONIALS ============ */
.reviews {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 52rem;
  margin: 0 auto 3.5rem;
}
.review {
  background: var(--cream-warm);
  border-left: 3px solid var(--wine);
  border-radius: 4px;
  padding: 2rem 2.25rem;
  margin: 0;
}
.review-quote {
  margin: 0 0 1.1rem;
  font-family: var(--f-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  font-weight: 300;
}
.review-quote p { margin: 0; }
.review-quote p + p { margin-top: 0.9rem; }
.review-attr {
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--wine);
  font-style: italic;
  text-align: center;
  margin-top: 0.75rem;
}

.reactions {
  max-width: 52rem;
  margin: 0 auto;
}
.reactions-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
  text-align: center;
}
.reactions-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}
@media (max-width: 900px) {
  .reactions-list { grid-template-columns: 1fr; max-width: 28rem; margin: 0 auto; }
}
@media (max-width: 480px) {
  .reactions-list { max-width: 100%; }
  .reaction { border-radius: 10px; }
  .reaction-bubble { font-size: 0.88rem; }
}

/* Chat-preview card — mimics Instagram DM dark mode */
.reaction {
  background: #18181b;
  color: #e7e7ea;
  border-radius: 14px;
  padding: 1rem 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 8px 24px -12px rgba(20, 10, 16, 0.35),
              0 1px 0 rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}
.reaction-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.reaction-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #2a2a2e;
}
.reaction-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reaction-identity {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  flex-wrap: wrap;
}
.reaction-handle {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: #fafafa;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.005em;
}
.reaction-verified {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.reaction-platform {
  margin-left: auto;
  color: rgba(231, 231, 234, 0.45);
  display: inline-flex;
  align-items: center;
}
.reaction-bubbles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.reaction-bubble {
  margin: 0;
  padding: 0.65rem 0.95rem;
  background: #262629;
  color: #f2f2f4;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  font-size: 0.93rem;
  line-height: 1.4;
  max-width: 95%;
  font-weight: 400;
}
.reaction-ref {
  margin: 0.15rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--f-body);
  font-size: 0.75rem;
  color: rgba(231, 231, 234, 0.55);
  letter-spacing: 0.01em;
}
.reaction-ref strong {
  font-weight: 500;
  color: rgba(231, 231, 234, 0.85);
  font-style: italic;
}

/* ============ CONTACT ============ */
.contact {
  padding-bottom: var(--space-xl);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-inline-size: 42ch;
  text-wrap: pretty;
}
.contact-direct {
  list-style: none;
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.contact-direct li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.25rem;
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 480px) {
  .contact-direct li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding-bottom: 0.9rem;
  }
}
.contact-meta {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.contact-direct a,
.contact-direct span {
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--wine);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.contact-direct a:hover { color: var(--sky-deep); }

.contact-form {
  background: var(--cream-soft);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--line);
}
@media (max-width: 520px) {
  .contact-form { padding: 1.75rem; }
}
.form-field {
  margin-bottom: 1.5rem;
  position: relative;
}
.form-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  transition: all var(--dur) var(--ease);
  font-weight: 400;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--wine);
  background: var(--cream-soft);
  box-shadow: 0 0 0 4px rgba(48, 23, 40, 0.06);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--f-body);
  line-height: 1.55;
}
.form-field input.error,
.form-field textarea.error {
  border-color: #B24F42;
}
.form-gdpr { margin-top: 0.5rem; }
.gdpr-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 0.8rem !important;
  color: var(--text) !important;
  line-height: 1.5;
  font-weight: 400 !important;
  cursor: pointer;
}
.gdpr-label input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--wine);
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}
.form-feedback {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.form-feedback.success {
  background: #E7F0E0;
  color: #3A5528;
  border-left: 3px solid #5A7A3E;
}
.form-feedback.error {
  background: #F8E4E2;
  color: #8A3A30;
  border-left: 3px solid #B24F42;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--wine);
  color: var(--cream);
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
}
.footer-top {
  max-width: var(--wrap);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--cream);
  line-height: 1;
}
.footer-slogan {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sky);
  margin-top: 0.5rem;
}
.footer-links,
.footer-social {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a,
.footer-social a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity var(--dur) var(--ease);
}
.footer-links a:hover,
.footer-social a:hover { opacity: 1; color: var(--sky); }

.footer-bottom {
  max-width: var(--wrap);
  margin: 0 auto;
  border-top: 1px solid rgba(244, 239, 234, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(244, 239, 234, 0.6);
  letter-spacing: 0.02em;
}
.footer-top-btn {
  background: transparent;
  border: 1px solid rgba(244, 239, 234, 0.25);
  color: var(--cream);
  padding: 0.6rem 1.2rem;
  font-family: var(--f-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.footer-top-btn:hover {
  background: var(--cream);
  color: var(--wine);
  border-color: var(--cream);
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 560px;
  margin: 0 auto;
  background: var(--wine);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 20px 60px -10px rgba(48, 23, 40, 0.4);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  animation: cookieIn 0.6s var(--ease) 1s both;
}
.cookie-banner[hidden] { display: none !important; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: rgba(20, 10, 16, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: zoom-out;
  animation: lightboxIn 0.25s var(--ease) both;
}
.lightbox[hidden] { display: none !important; }
@keyframes lightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-img {
  max-width: min(95vw, 1400px);
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
  cursor: default;
}
.lightbox-caption {
  color: var(--cream);
  margin: 1.25rem 0 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 40ch;
  opacity: 0.9;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244, 239, 234, 0.35);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.lightbox-close:hover {
  background: rgba(244, 239, 234, 0.14);
  transform: scale(1.05);
}
body.lightbox-open { overflow: hidden; }
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-text {
  flex: 1;
  font-size: 0.82rem;
  color: var(--cream);
  line-height: 1.5;
  min-width: 200px;
}
.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cookie-banner .btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 239, 234, 0.3);
}
.cookie-banner .btn-ghost:hover {
  background: var(--cream);
  color: var(--wine);
  border-color: var(--cream);
}
.cookie-banner .btn-primary {
  background: var(--cream);
  color: var(--wine);
}
.cookie-banner .btn-primary:hover {
  background: var(--sky);
  box-shadow: none;
}

/* ============ SMOOTH ENTRY ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .blob-1, .blob-2, .scroll-line::after { animation: none; }
}
