/* =============================================================================
   Perfecto's Ink — Master Stylesheet (v2 · BRAND-MATCHED)
   Gothic blackletter · Distressed brass · BE SOMEONE bridge · Houston skyline
   Glassmorphism + cinematic motion · Mobile-first
   ============================================================================= */

/* ---------- 1. Design tokens (brand-true) -----------------------------------*/
:root{
  /* Backgrounds — deeper, more cinematic */
  --bg-0:       #050505;
  --bg-1:       #0a0a0d;
  --bg-2:       #11110f;     /* warm undertone, matches the flyer */
  --bg-3:       #16140e;
  --line:       #221d12;

  /* Brass / distressed gold (true to the logo) */
  --brass-50:   #f3e4b6;
  --brass-100:  #e7cf85;
  --brass:      #c9a352;     /* warm aged brass — matches "Perfecto's" */
  --brass-2:    #a07f33;
  --brass-deep: #6a5119;
  --brass-glow: rgba(201,163,82,.40);

  /* Bright accent for INK / glow (closer to the brush stroke gold) */
  --gold:       #d4af37;
  --gold-2:     #b0871d;
  --gold-glow:  rgba(212,175,55,.45);

  /* Cream — like the lettering on the flyer */
  --cream:      #efe4c8;

  --fg:         #f1ead4;     /* warm white instead of pure */
  --fg-soft:    #d4cbb1;
  --muted:      #8a8470;
  --muted-2:    #524e40;

  /* Glass */
  --glass-bg:   rgba(255,250,235,.035);
  --glass-bg-2: rgba(255,250,235,.06);
  --glass-bd:   rgba(255,250,235,.10);
  --glass-bd-2: rgba(255,250,235,.18);

  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-sm:  0 4px 14px rgba(0,0,0,.45);
  --shadow-md:  0 14px 40px rgba(0,0,0,.6);
  --shadow-lg:  0 30px 80px rgba(0,0,0,.7);
  --shadow-glow:0 0 60px var(--brass-glow);

  /* Fonts */
  --font-blackletter: "UnifrakturCook", "Cinzel", "Times New Roman", serif;
  --font-tattoo:      "Pirata One", "UnifrakturCook", "Cinzel Decorative", serif;
  --font-display:     "Cinzel", "Times New Roman", serif;
  --font-body:        "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-stencil:     "Bungee Inline", "Inter", sans-serif;

  --container:    1240px;
  --gutter:       clamp(18px, 4vw, 32px);

  --ease-out:     cubic-bezier(.16,1,.3,1);
  --ease-spring:  cubic-bezier(.34,1.56,.64,1);
  --ease-smooth:  cubic-bezier(.4,0,.2,1);
}

/* ---------- 2. Reset & base --------------------------------------------------*/
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
html,body{ margin:0; padding:0; }
body{
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

img,svg,video{ max-width:100%; display:block; }
img{ height:auto; }
a{ color: inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:0; background:none; color:inherit; }
input,textarea,select{ font-family:inherit; color:inherit; }

:focus-visible{
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link{
  position: absolute; left: -9999px; top: 0;
  background: var(--brass); color: #14100a; padding: 10px 16px;
  font-weight: 700; z-index: 1000; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }
::selection{ background: var(--brass); color: #14100a; }

/* ---------- 3. Background ambiance ------------------------------------------*/
body::before{
  content:"";
  position: fixed; inset: 0;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(201,163,82,.10), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(201,163,82,.06), transparent 60%),
    radial-gradient(700px 600px at 50% 110%, rgba(201,163,82,.08), transparent 60%),
    linear-gradient(180deg, #050505 0%, #0a0805 60%, #050505 100%);
  z-index: -2;
  pointer-events: none;
}
body::after{
  content:"";
  position: fixed; inset: 0;
  /* film grain */
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.15  0 0 0 0 0.05  0 0 0 .35 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='.55'/></svg>");
  background-size: 200px 200px;
  opacity: .35;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ---------- 4. Typography ----------------------------------------------------*/
h1,h2,h3,h4,h5{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--fg);
}
h1{ font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing:.04em; }
h2{ font-size: clamp(1.9rem, 4vw, 3rem); }
h3{ font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

p{ margin: 0 0 1em; color: var(--fg-soft); }
.muted{ color: var(--muted); }

.eyebrow{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: 11px;
  color: var(--brass);
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after{
  content:""; width: 30px; height: 1px; background: var(--brass);
  box-shadow: 0 0 10px var(--brass-glow);
}
.eyebrow--solo::after{ display:none; }

.text-gold{
  background: linear-gradient(180deg, var(--brass-50) 0%, var(--brass) 45%, var(--brass-2) 80%, var(--brass-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 0 18px rgba(201,163,82,.25));
}

/* The "INK" brush-stroke treatment — graffiti / tattoo style */
.ink-brush{
  font-family: var(--font-tattoo);
  font-weight: 400;
  display: inline-block;
  background: linear-gradient(180deg, var(--brass-50), var(--brass) 50%, var(--brass-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  transform: skewX(-6deg) translateY(.05em);
  letter-spacing: .04em;
  filter:
    drop-shadow(0 2px 0 rgba(0,0,0,.55))
    drop-shadow(0 0 24px rgba(212,175,55,.35));
  position: relative;
}
.ink-brush::after{
  /* Brush stroke underline — distressed */
  content:""; position: absolute; left: -4%; right: -4%; bottom: 4%;
  height: 16%; transform: skewX(6deg);
  background:
    linear-gradient(90deg, transparent 0%, var(--brass) 20%, var(--brass-2) 80%, transparent 100%);
  filter: blur(2px); opacity: .35; z-index: -1;
}

/* The gothic blackletter treatment */
.blackletter{
  font-family: var(--font-blackletter);
  font-weight: 700;
  letter-spacing: .005em;
  line-height: .95;
}

/* ---------- 5. Layout helpers ------------------------------------------------*/
.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section{
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0;
  isolation: isolate;
}
.section--tight{ padding: clamp(48px, 7vw, 96px) 0; }
.section__head{
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: center;
}
.grid{ display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4{ grid-template-columns: repeat(4, minmax(0,1fr)); }

@media (max-width: 900px){
  .grid--3,.grid--4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .grid--2,.grid--3,.grid--4{ grid-template-columns: 1fr; }
}

/* ---------- 6. Buttons -------------------------------------------------------*/
.btn{
  --b-bg: transparent;
  --b-fg: var(--fg);
  --b-bd: var(--glass-bd-2);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--b-bg);
  color: var(--b-fg);
  border: 1px solid var(--b-bd);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .35s var(--ease-spring), border-color .25s, box-shadow .35s, color .25s, background .25s;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}
.btn::before{
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,250,235,.20) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .9s var(--ease-out);
  z-index: 0;
}
.btn:hover::before{ transform: translateX(110%); }
.btn > *{ position: relative; z-index: 1; }
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.btn--gold{
  --b-bg: linear-gradient(180deg, var(--brass-50) 0%, var(--brass) 45%, var(--brass-2) 100%);
  --b-fg: #14100a;
  --b-bd: rgba(255,250,235,.45);
  box-shadow:
    0 8px 24px rgba(201,163,82,.28),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -10px 22px rgba(0,0,0,.18);
}
.btn--gold:hover{
  box-shadow:
    0 14px 40px rgba(201,163,82,.45),
    inset 0 1px 0 rgba(255,255,255,.6),
    inset 0 -10px 22px rgba(0,0,0,.22),
    0 0 60px rgba(212,175,55,.35);
}
.btn--ghost{
  --b-bg: rgba(255,250,235,.04);
  --b-fg: var(--fg);
  --b-bd: rgba(255,250,235,.18);
}
.btn--ghost:hover{
  --b-fg: var(--brass-50);
  --b-bd: rgba(201,163,82,.5);
  box-shadow: 0 0 24px rgba(201,163,82,.22);
}
.btn--sm{ padding: 10px 18px; font-size: 11px; }
.btn--lg{ padding: 18px 34px; font-size: 13px; }
.btn__glow{
  position: absolute; inset: -2px; border-radius: 999px;
  background: radial-gradient(circle, rgba(212,175,55,.55) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity .4s var(--ease-out);
  z-index: -1;
}
.btn:hover .btn__glow{ opacity: 1; }

/* ---------- 7. Glass card ----------------------------------------------------*/
.glass{
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255,250,235,.08),
    inset 0 -1px 0 rgba(0,0,0,.4),
    var(--shadow-md);
  overflow: hidden;
}
.glass::after{
  content:"";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 200px at 50% -20%, rgba(201,163,82,.12), transparent 60%);
  pointer-events: none;
}
.glass--padded{ padding: clamp(24px, 3vw, 38px); }
.glass--tilt{
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .35s;
  transform-style: preserve-3d;
  will-change: transform;
}
.glass--tilt:hover{
  border-color: rgba(201,163,82,.35);
  box-shadow:
    inset 0 1px 0 rgba(255,250,235,.12),
    var(--shadow-lg),
    0 0 50px rgba(201,163,82,.20);
}

/* Gold corner ornaments — adds the editorial gothic frame */
.glass--ornament::before, .glass--ornament > .corner{
  content:""; position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--brass);
  opacity: .55;
}
.glass--ornament::before{ top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.glass--ornament > .corner-tr{ top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.glass--ornament > .corner-bl{ bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.glass--ornament > .corner-br{ bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

/* ---------- 8. Brand mark (CSS-built logo) ---------------------------------*/
.brand{
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-blackletter);
  font-size: 18px;
  letter-spacing: .01em;
  color: var(--fg);
}
.brand__mark{
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 25%, var(--brass-50) 0%, var(--brass) 40%, var(--brass-2) 75%, var(--brass-deep) 100%);
  color: #1a130a;
  font-family: var(--font-blackletter);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.55),
    inset 0 -6px 12px rgba(0,0,0,.35),
    0 6px 22px rgba(201,163,82,.35),
    0 0 0 1px rgba(255,250,235,.25);
}
.brand__mark::before{
  /* crown notch on top */
  content:"";
  position: absolute; left: 50%; top: -6px; transform: translateX(-50%);
  width: 16px; height: 8px;
  background:
    conic-gradient(from 180deg at 50% 100%, transparent 0deg, var(--brass) 60deg, transparent 120deg, var(--brass) 180deg, transparent 240deg, var(--brass) 300deg, transparent 360deg);
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.5));
}
.brand__mark::after{
  /* tiny dot crown jewel */
  content:""; position: absolute; left: 50%; top: -4px; transform: translateX(-50%);
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--brass-50);
  box-shadow: 0 0 6px var(--brass-50);
}
.brand__dot{ display: none; }
.brand__text{
  display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1;
}
.brand__name{
  font-family: var(--font-blackletter);
  font-weight: 700;
  font-size: 1.15em;
  color: var(--cream);
  letter-spacing: 0;
}
.brand__apos{ color: var(--brass); }
.brand__ink{
  font-family: var(--font-tattoo);
  font-size: 1em;
  color: var(--brass);
  transform: skewX(-8deg);
  margin-top: 2px;
  letter-spacing: .04em;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.6));
}
.brand--lg{ font-size: 22px; }
.brand--lg .brand__mark{ width: 56px; height: 56px; font-size: 28px; }

/* ---------- 9. Navbar --------------------------------------------------------*/
.nav-shell{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: padding .35s var(--ease-out), background .35s var(--ease-out), backdrop-filter .35s;
}
.nav-shell.is-scrolled{
  padding: 8px 0;
  background: rgba(5,5,5,.78);
  border-bottom: 1px solid rgba(201,163,82,.12);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.nav{ display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.nav__menu{ display: flex; align-items: center; gap: 28px; }
.nav__list{
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 26px;
}
.nav__link{
  position: relative;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-soft);
  padding: 8px 2px;
  transition: color .25s;
}
.nav__link::after{
  content:"";
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s var(--ease-out);
}
.nav__link:hover, .nav__link.is-active{ color: var(--brass-50); }
.nav__link:hover::after, .nav__link.is-active::after{ transform: scaleX(1); }

.nav__toggle{
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--glass-bd);
  background: rgba(255,250,235,.04);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 102;
}
.nav__toggle span{
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--brass);
  border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .25s, top .25s;
}
.nav__toggle span:nth-child(1){ top: 15px; }
.nav__toggle span:nth-child(2){ top: 22px; }
.nav__toggle span:nth-child(3){ top: 29px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1){ top: 22px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ top: 22px; transform: rotate(-45deg); }

@media (max-width: 880px){
  .nav__toggle{ display: inline-flex; align-items: center; justify-content: center; }
  .nav__menu{
    position: fixed; inset: 0;
    background: rgba(5,5,5,.94);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0,-18px,0);
    transition: opacity .35s var(--ease-out), visibility .35s var(--ease-out), transform .45s var(--ease-out);
    z-index: 101;
  }
  .nav__menu.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0,0,0);
  }
  .nav__list{ flex-direction: column; gap: 28px; }
  .nav__link{ font-size: 22px; letter-spacing: .2em; font-family: var(--font-blackletter); text-transform: none; }
}

/* ---------- 10. HERO — cinematographic with video bg + brand mark ----------*/
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 118px 0 86px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media{
  position: absolute; inset: 0; z-index: -2;
  overflow: hidden;
}
.hero__media video,
.hero__media img.hero__poster{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .55;
  filter: contrast(1.05) saturate(.9);
}

/* ---------- HERO SLIDESHOW + Ken Burns -------------------------------------*/
.hero__slides{
  position: absolute; inset: 0;
}
.hero__slide{
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  filter: contrast(1.08) saturate(.85) brightness(.7);
  transition: opacity 1.6s var(--ease-smooth);
  will-change: opacity, transform;
}
.hero__slide.is-active{
  opacity: .85;
  animation-duration: 9s;
  animation-timing-function: var(--ease-smooth);
  animation-fill-mode: forwards;
}
.hero__slide.kb-zoom-in.is-active   { animation-name: kb-zoom-in; }
.hero__slide.kb-pan-right.is-active { animation-name: kb-pan-right; }
.hero__slide.kb-pan-left.is-active  { animation-name: kb-pan-left; }

@keyframes kb-zoom-in{
  0%   { transform: scale(1)    translate(0,0); }
  100% { transform: scale(1.12) translate(-1%, -1.5%); }
}
@keyframes kb-pan-right{
  0%   { transform: scale(1.08) translate(-1.5%, 0); }
  100% { transform: scale(1.16) translate( 1.5%, -1%); }
}
@keyframes kb-pan-left{
  0%   { transform: scale(1.08) translate( 1.5%, 0); }
  100% { transform: scale(1.16) translate(-1.5%, -1%); }
}

/* Slide indicators */
.hero__dots{
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 4;
}
.hero__dot{
  width: 28px; height: 3px;
  border-radius: 2px;
  background: rgba(255,250,235,.18);
  border: 0; padding: 0;
  cursor: pointer;
  transition: background .35s, width .35s;
}
.hero__dot.is-active{
  background: linear-gradient(90deg, var(--brass), var(--brass-50));
  width: 44px;
  box-shadow: 0 0 12px rgba(201,163,82,.5);
}
.hero__dot:hover{ background: rgba(201,163,82,.6); }

/* Gold particles canvas */
.hero__particles{
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .75;
}

.hero__veil{
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 700px at 50% 30%, rgba(0,0,0,.0) 0%, rgba(0,0,0,.6) 80%),
    linear-gradient(180deg, rgba(5,5,5,.55) 0%, rgba(5,5,5,.4) 40%, rgba(5,5,5,.92) 100%);
}

/* Branded skyline + bridge SVG fallback (lives behind everything) */
.hero__skyline{
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-repeat: no-repeat; background-size: cover; background-position: center bottom;
  opacity: .55;
}
.hero__skyline::after{
  content:""; position: absolute; left: 0; right: 0; bottom: 0; height: 65%;
  background:
    /* BE SOMEONE bridge silhouette */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 600' preserveAspectRatio='xMidYMax slice'>\
<defs><linearGradient id='g1' x1='0' x2='0' y1='0' y2='1'><stop offset='0' stop-color='%23000'/><stop offset='1' stop-color='%23000' stop-opacity='.7'/></linearGradient></defs>\
<!-- skyline blocks -->\
<g fill='url(%23g1)'>\
<rect x='30' y='280' width='60' height='320'/><rect x='100' y='220' width='44' height='380'/><rect x='150' y='300' width='80' height='300'/>\
<rect x='240' y='180' width='52' height='420'/><rect x='300' y='140' width='92' height='460'/><rect x='400' y='100' width='66' height='500'/>\
<rect x='470' y='200' width='72' height='400'/><rect x='550' y='60'  width='86' height='540'/><rect x='640' y='120' width='52' height='480'/>\
<rect x='700' y='30'  width='118' height='570'/><rect x='820' y='100' width='66' height='500'/><rect x='890' y='180' width='96' height='420'/>\
<rect x='990' y='80'  width='72' height='520'/><rect x='1070' y='150' width='84' height='450'/><rect x='1160' y='70'  width='108' height='530'/>\
<rect x='1270' y='180' width='72' height='420'/><rect x='1350' y='240' width='84' height='360'/><rect x='1440' y='200' width='52' height='400'/>\
<rect x='1500' y='260' width='84' height='340'/>\
</g>\
<!-- window lights -->\
<g fill='%23c9a352' opacity='.65'>\
<rect x='322' y='180' width='3' height='4'/><rect x='342' y='240' width='3' height='4'/><rect x='372' y='300' width='3' height='4'/>\
<rect x='582' y='140' width='3' height='4'/><rect x='602' y='200' width='3' height='4'/><rect x='722' y='110' width='3' height='4'/>\
<rect x='762' y='180' width='3' height='4'/><rect x='782' y='260' width='3' height='4'/><rect x='1182' y='140' width='3' height='4'/>\
<rect x='1212' y='210' width='3' height='4'/><rect x='1232' y='280' width='3' height='4'/><rect x='1006' y='160' width='3' height='4'/>\
<rect x='1030' y='240' width='3' height='4'/></g>\
<!-- BE SOMEONE bridge -->\
<g transform='translate(950,360)'>\
<rect x='0' y='0' width='600' height='60' fill='%23110d05'/>\
<rect x='0' y='60' width='600' height='6' fill='%23c9a352' opacity='.55'/>\
<text x='300' y='42' text-anchor='middle' font-family='Bungee Inline, Impact, sans-serif' font-size='32' fill='%23c9a352' letter-spacing='6'>BE SOMEONE</text>\
<rect x='10' y='66' width='8' height='220' fill='%23110d05'/><rect x='580' y='66' width='8' height='220' fill='%23110d05'/>\
</g>\
</svg>");
  background-size: 130% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  filter: drop-shadow(0 -30px 60px rgba(201,163,82,.05));
}

.hero__bg-text{
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.hero__bg-text span{
  font-family: var(--font-blackletter);
  font-size: clamp(120px, 22vw, 320px);
  color: rgba(255,250,235,.025);
  -webkit-text-stroke: 1px rgba(201,163,82,.10);
  letter-spacing: .04em;
  user-select: none;
  white-space: nowrap;
  transform: rotate(-3deg);
  filter: blur(.5px);
}

/* Texas state outline corner mark */
.hero__texas{
  position: absolute; top: 110px; right: clamp(20px, 4vw, 64px);
  width: clamp(60px, 8vw, 92px); height: auto; z-index: 1;
  opacity: .55;
  filter: drop-shadow(0 0 16px rgba(201,163,82,.4));
}

.hero__content{
  position: relative; z-index: 2;
  max-width: 1080px;
  text-align: center;
  margin: 0 auto;
}

.hero__pre{
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(201,163,82,.4);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--brass-50);
  font-weight: 700;
}
.hero__pre::before{
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 10px var(--brass);
  animation: pulse 2.4s infinite;
}

.hero__title{
  font-family: var(--font-blackletter);
  font-weight: 700;
  font-size: clamp(2.75rem, 8vw, 6.25rem);
  line-height: .92;
  margin-bottom: .18em;
  letter-spacing: .005em;
  color: var(--cream);
  text-shadow:
    0 4px 0 rgba(0,0,0,.6),
    0 10px 40px rgba(0,0,0,.7);
}
.hero__title .ink-brush{
  font-size: 1.05em;
  margin-left: -.02em;
}
.hero__title .light{
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .22em;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 18px 0 4px;
  text-shadow: none;
}

.hero__sub{
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--fg-soft);
  margin: 18px auto 30px;
  max-width: 620px;
  letter-spacing: .02em;
  line-height: 1.6;
}
.hero__cta{
  display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-top: 6px;
}

.hero__proof{
  width: min(760px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(201,163,82,.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,250,235,.08), rgba(255,250,235,.025)),
    rgba(0,0,0,.36);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 18px 54px rgba(0,0,0,.44);
  overflow: hidden;
}
.hero__proof span{
  min-width: 0;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-left: 1px solid rgba(201,163,82,.18);
}
.hero__proof span:first-child{ border-left: 0; }
.hero__proof em{
  font-style: normal;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 800;
}
.hero__proof strong{
  color: var(--cream);
  font-size: .9rem;
  line-height: 1.2;
  font-weight: 700;
}

@keyframes pulse{
  0%,100%{ transform: scale(1); opacity: 1; }
  50%   { transform: scale(1.4); opacity: .55; }
}

.hero__scroll{
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--muted); z-index: 3;
  font-weight: 700;
}
.hero__scroll::after{
  content:""; display: block; width: 1px; height: 36px; margin: 10px auto 0;
  background: linear-gradient(180deg, var(--brass), transparent);
  animation: scroll-line 1.8s var(--ease-out) infinite;
}

.hero .reveal,
.site.js-ready .hero .reveal{
  opacity: 1;
  transform: none;
}
@keyframes scroll-line{
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 700px){
  .hero{
    align-items: flex-start;
    padding: 90px 0 74px;
  }
  .hero__content{ padding-top: 8px; }
  .hero__pre{
    max-width: 318px;
    justify-content: center;
    line-height: 1.6;
    letter-spacing: .20em;
    font-size: 10px;
    margin-bottom: 16px;
    padding: 7px 15px;
    white-space: normal;
  }
  .hero__title{
    font-size: 3.18rem;
    line-height: .94;
  }
  .hero__title .light{
    letter-spacing: .28em;
    margin-top: 12px;
  }
  .hero__sub{
    max-width: 330px;
    margin-top: 14px;
    margin-bottom: 22px;
    font-size: 1rem;
  }
  .hero__sub br{ display: none; }
  .hero__cta{
    width: min(300px, 100%);
    display: grid;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__cta .btn{ width: 100%; }
  .hero__proof{
    width: min(310px, 100%);
    grid-template-columns: 1fr;
    border-radius: 24px;
    margin-top: 28px;
  }
  .hero__proof span{
    padding: 12px 16px;
    border-left: 0;
    border-top: 1px solid rgba(201,163,82,.16);
  }
  .hero__proof span:first-child{ border-top: 0; }
  .hero__proof em{ letter-spacing: .20em; }
  .hero__dots{ bottom: 24px; }
  .hero__scroll{ display: none; }
}

@media (max-width: 430px){
  .hero__title{ font-size: 2.85rem; }
  .hero__proof{ display: none; }
}

/* ---------- 11. Feature cards ----------------------------------------------*/
.feature{
  padding: 36px 30px;
  text-align: left;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.feature__icon{
  width: 60px; height: 60px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #1a130a;
  background:
    radial-gradient(circle at 30% 25%, var(--brass-50) 0%, var(--brass) 50%, var(--brass-2) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 -6px 14px rgba(0,0,0,.25),
    0 10px 30px rgba(201,163,82,.25);
  margin-bottom: 6px;
}
.feature__icon svg{ width: 28px; height: 28px; }
.feature__title{
  font-family: var(--font-display);
  font-size: 1.32rem;
  margin: 0;
  letter-spacing: .02em;
  color: var(--cream);
}
.feature__text{ color: var(--fg-soft); margin: 0; font-size: .96rem; line-height: 1.75; }

/* ---------- 11b. Process rail ----------------------------------------------*/
.process{
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(201,163,82,.08), transparent 34%, rgba(255,250,235,.035)),
    rgba(0,0,0,.18);
}
.process::before{
  content:"";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(201,163,82,.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201,163,82,.08) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  opacity: .20;
  pointer-events: none;
}
.process__grid{
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.process__intro{ max-width: 500px; }
.process__intro h2{ margin-bottom: 20px; }
.process__intro p{
  color: var(--fg-soft);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 28px;
}
.process__rail{
  position: relative;
  display: grid;
  gap: 14px;
}
.process__rail::before{
  content:"";
  position: absolute;
  left: 30px; top: 28px; bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,163,82,.55), transparent);
}
.process__card{
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0,1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(255,250,235,.10);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255,250,235,.07), rgba(255,250,235,.02)),
    rgba(0,0,0,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .45s var(--ease-out), border-color .35s, box-shadow .45s;
}
.process__card:hover{
  transform: translateX(6px);
  border-color: rgba(201,163,82,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 22px 62px rgba(0,0,0,.48), 0 0 42px rgba(201,163,82,.12);
}
.process__step{
  width: 58px; height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 25%, var(--brass-50), var(--brass) 48%, var(--brass-2));
  color: #171008;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 10px 28px rgba(201,163,82,.25);
  z-index: 1;
}
.process__card h3{
  margin: 0 0 6px;
  color: var(--cream);
  font-size: 1.18rem;
}
.process__card p{
  margin: 0;
  color: var(--fg-soft);
  line-height: 1.7;
  font-size: .96rem;
}

@media (max-width: 880px){
  .process__grid{ grid-template-columns: 1fr; }
  .process__intro{ max-width: none; text-align: center; }
}
@media (max-width: 560px){
  .process__card{
    grid-template-columns: 54px minmax(0,1fr);
    gap: 14px;
    padding: 18px;
  }
  .process__step{
    width: 48px;
    height: 48px;
    font-size: .82rem;
  }
  .process__rail::before{ left: 25px; }
}

/* ---------- 12. Portfolio tiles --------------------------------------------*/
.tile{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-bd);
  background: linear-gradient(135deg, #1a1610, #08070c);
  isolation: isolate;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .35s;
  display: block;
}
.tile::before{
  content:"";
  position: absolute; inset: 14px;
  border: 1px solid rgba(201,163,82,.28);
  border-radius: 6px;
  pointer-events: none;
  z-index: 3;
  opacity: .75;
}
.tile::after{
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,250,235,.14) 46%, transparent 66%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-out);
  pointer-events: none;
  z-index: 4;
}
.tile__img{
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .9s var(--ease-out), filter .6s;
  filter: saturate(.85) contrast(1.05);
}
.tile__placeholder{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  background:
    radial-gradient(400px 300px at 50% 30%, rgba(201,163,82,.14), transparent 70%),
    linear-gradient(135deg, #1c1810, #08070c);
}
.tile__placeholder svg{ width: 70px; height: 70px; color: var(--brass); opacity: .55; }
.tile__placeholder span{ font-family: var(--font-tattoo); font-size: 14px; letter-spacing: .25em; text-transform: uppercase; color: var(--brass-50); }
.tile__overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0) 50%, rgba(5,5,5,.88) 100%),
    linear-gradient(135deg, rgba(201,163,82,0) 60%, rgba(201,163,82,.18) 100%);
  opacity: .85;
  transition: opacity .5s;
}
.tile__caption{
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  z-index: 5;
}
.tile__caption strong{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 1.05rem;
  color: var(--cream);
}
.tile__caption em{
  font-family: var(--font-body);
  font-style: normal;
  color: var(--brass);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
}
.tile:hover{
  transform: translateY(-6px);
  border-color: rgba(201,163,82,.48);
  box-shadow: var(--shadow-lg), 0 0 70px rgba(201,163,82,.22);
}
.tile:hover::after{ transform: translateX(120%); }
.tile:hover .tile__img{ transform: scale(1.08); filter: saturate(1) contrast(1.1); }
.tile:hover .tile__overlay{ opacity: .65; }
.tile__badge{
  position: absolute; top: 14px; left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-bd);
  color: var(--brass-50);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 5;
}
@media (max-width: 560px){
  .tile__caption{
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .tile__caption strong{ font-size: 1rem; }
}

/* ---------- 13. Artist preview ----------------------------------------------*/
.artist{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px){ .artist{ grid-template-columns: 1fr; } }
.artist__photo{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(500px 400px at 30% 20%, rgba(201,163,82,.18), transparent 60%),
    linear-gradient(135deg, #1c180e, #07070c);
  border: 1px solid var(--glass-bd);
  box-shadow: var(--shadow-lg);
}
.artist__photo::before{
  /* Gold corner frame */
  content:""; position: absolute; inset: 18px;
  border: 1px solid rgba(201,163,82,.4);
  border-radius: 6px;
  pointer-events: none; z-index: 2;
}
.artist__photo::after{
  content:""; position: absolute;
  width: 60%; height: 60%; left: 20%; top: 20%;
  border: 1px solid rgba(201,163,82,.18);
  border-radius: 4px;
  pointer-events: none;
}
.artist__photo .ph-icon{
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  color: var(--brass); opacity: .45; width: 80px; height: 80px;
}
.artist__photo img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.artist__copy h2{ margin-bottom: .35em; }
.artist__copy p{ font-size: 1.06rem; line-height: 1.85; color: var(--fg-soft); }
.artist__quote{
  margin: 28px 0 32px;
  padding: 26px 28px 22px;
  border-radius: var(--radius-md);
  background: var(--glass-bg-2);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(14px);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--cream);
  position: relative;
}
.artist__quote::before{
  content:"\201C"; position: absolute; top: -10px; left: 16px;
  font-family: var(--font-blackletter);
  font-style: normal;
  font-size: 72px; line-height: 1;
  color: var(--brass); opacity: .6;
}

/* ---------- 14. Aftercare bilingual flyer-style ----------------------------*/
.flyer{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  position: relative;
}
@media (max-width: 760px){ .flyer{ grid-template-columns: 1fr; } }
.flyer__col h3{
  font-family: var(--font-blackletter);
  color: var(--brass);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,163,82,.25);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.flyer__col h3 .es{
  display: block; font-family: var(--font-body); font-style: italic;
  font-size: 12px; letter-spacing: .2em; color: var(--muted); margin-top: 4px;
  font-weight: 400; text-transform: uppercase;
}

.flyer__list{ list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.flyer__step{
  display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: flex-start;
}
.flyer__num{
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 25%, var(--brass-50) 0%, var(--brass) 50%, var(--brass-2) 100%);
  color: #1a130a; font-weight: 800; font-family: var(--font-display);
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 4px 12px rgba(201,163,82,.22);
}
.flyer__step strong{
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 1.02rem; color: var(--cream); margin-bottom: 6px;
  letter-spacing: .02em;
}
.flyer__step p{ margin: 0; color: var(--fg-soft); font-size: .92rem; line-height: 1.65; }
.flyer__step ul{ margin: 6px 0 0; padding-left: 18px; color: var(--fg-soft); font-size: .9rem; }

/* Center divider on the flyer (vertical brass line) */
@media (min-width: 760px){
  .flyer::before{
    content:""; position: absolute;
    top: 0; bottom: 0; left: 50%; width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201,163,82,.4) 20%, rgba(201,163,82,.4) 80%, transparent);
  }
}

/* ---------- 15. Compact steps (homepage preview) ----------------------------*/
.steps{ list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.step{
  display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-bd);
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  transition: border-color .25s, transform .35s var(--ease-out);
}
.step:hover{ border-color: rgba(201,163,82,.4); transform: translateX(4px); }
.step__n{
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 25%, var(--brass-50), var(--brass) 50%, var(--brass-2));
  color: #1a130a; font-weight: 800; font-family: var(--font-display);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 6px 18px rgba(201,163,82,.25);
}
.step strong{ display: block; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; color: var(--cream); }
.step span.es{ display: block; color: var(--muted); font-size: .9rem; font-style: italic; margin-top: 6px; }

/* ---------- 16. Reviews ------------------------------------------------------*/
.review{
  padding: 30px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.review__stars{ color: var(--brass); letter-spacing: 4px; font-size: 1.15rem; filter: drop-shadow(0 0 8px rgba(201,163,82,.4)); }
.review__text{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--cream);
}
.review__author{
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--glass-bd);
}
.review__avatar{
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-blackletter); font-weight: 700; font-size: 18px;
  background: radial-gradient(circle at 30% 25%, var(--brass-50), var(--brass) 50%, var(--brass-2));
  color: #1a130a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.review__meta{ display: flex; flex-direction: column; }
.review__name{ font-weight: 700; font-size: .95rem; color: var(--cream); }
.review__where{ font-size: 11px; color: var(--muted); letter-spacing: .2em; text-transform: uppercase; font-weight: 600; }

/* ---------- 17. Final CTA ---------------------------------------------------*/
.cta-final{
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
  overflow: hidden;
}
.cta-final::before{
  content:"";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 50% 30%, rgba(201,163,82,.25), transparent 70%),
    radial-gradient(900px 500px at 50% 90%, rgba(201,163,82,.10), transparent 70%);
  z-index: -1;
}
.cta-final h2{
  font-family: var(--font-blackletter);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  margin-bottom: 30px;
  letter-spacing: .01em;
  line-height: 1;
}
.cta-final p{ max-width: 560px; margin: 0 auto 36px; color: var(--fg-soft); }

/* ---------- 18. Footer -------------------------------------------------------*/
.footer{
  position: relative;
  padding: 80px 0 24px;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer__glow{
  position: absolute; left: 50%; top: -1px; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  box-shadow: 0 0 40px var(--brass);
}
.footer__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 880px){ .footer__grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer__grid{ grid-template-columns: 1fr; } }
.footer__logo-link{ display: inline-block; }
.footer__logo{
  width: 220px; height: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.6));
  transition: transform .5s var(--ease-out);
}
.footer__logo-link:hover .footer__logo{ transform: scale(1.02); }
.footer__tag{ margin-top: 18px; max-width: 380px; color: var(--fg-soft); }
.footer__title{
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__col ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a{ color: var(--fg-soft); transition: color .25s; }
.footer__col a:hover{ color: var(--brass-50); }
.footer address{ font-style: normal; color: var(--fg-soft); line-height: 1.8; }
.footer__bottom{
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding-top: 30px; margin-top: 60px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer__legal a{ color: var(--muted); margin: 0 4px; }
.footer__legal a:hover{ color: var(--brass-50); }

/* ---------- 19. Forms -------------------------------------------------------*/
.form{ display: grid; gap: 18px; }
.form__row{ display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
@media (max-width: 720px){ .form__row{ grid-template-columns: 1fr; } }
.field{ display: flex; flex-direction: column; gap: 8px; }
.field label{
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.field input, .field textarea, .field select{
  background: rgba(255,250,235,.03);
  border: 1px solid var(--glass-bd);
  color: var(--fg);
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  transition: border-color .25s, background .25s, box-shadow .25s;
  backdrop-filter: blur(8px);
}
.field select option{ color: #171008; background: #f3ead5; }
.field textarea{ min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus{
  border-color: rgba(201,163,82,.6);
  background: rgba(201,163,82,.04);
  box-shadow: 0 0 0 3px rgba(201,163,82,.12);
  outline: none;
}
.field--file input{ padding: 10px 16px; }
.field input[type="file"]::file-selector-button{
  background: var(--brass); color: #1a130a; border: 0;
  padding: 8px 14px; margin-right: 12px; border-radius: 8px; font-weight: 700;
  cursor: pointer;
}
.alert{
  padding: 14px 18px; border-radius: 12px;
  border: 1px solid var(--glass-bd);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  margin-bottom: 18px;
}
.alert--success{ border-color: rgba(76,222,128,.45); color: #b5f5cf; background: rgba(76,222,128,.06); }
.alert--error{ border-color: rgba(248,113,113,.45); color: #ffc9c9; background: rgba(248,113,113,.06); }

/* ---------- 20. Page hero ----------------------------------------------------*/
.page-hero{
  position: relative;
  padding: 200px 0 90px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before{
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 50% -20%, rgba(201,163,82,.18), transparent 70%),
    radial-gradient(600px 400px at 50% 120%, rgba(201,163,82,.10), transparent 70%);
  z-index: -1;
}
.page-hero h1{
  font-family: var(--font-blackletter);
  font-size: clamp(2.6rem, 7vw, 5rem);
  margin-bottom: 16px;
  line-height: .98;
}
.page-hero p{ max-width: 620px; margin: 0 auto; color: var(--fg-soft); }

/* ---------- 21. Filters -----------------------------------------------------*/
.filters{ display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn{
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--glass-bd);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--fg-soft);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all .3s var(--ease-out);
}
.filter-btn:hover, .filter-btn.is-active{
  border-color: rgba(201,163,82,.55);
  color: var(--brass-50);
  box-shadow: 0 0 24px rgba(201,163,82,.22);
}

/* ---------- 22. FAQ accordion -----------------------------------------------*/
.faq{ max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item{
  border: 1px solid var(--glass-bd);
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .25s;
}
.faq__item[open]{ border-color: rgba(201,163,82,.4); }
.faq__item summary{
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--cream);
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  list-style: none;
}
.faq__item summary::-webkit-details-marker{ display: none; }
.faq__item summary::after{
  content:"+"; color: var(--brass); font-size: 24px; font-family: var(--font-body); font-weight: 300;
  transition: transform .3s var(--ease-out);
}
.faq__item[open] summary::after{ transform: rotate(45deg); }
.faq__answer{ padding: 0 24px 22px; color: var(--fg-soft); line-height: 1.8; }

/* ---------- 23. Legal text --------------------------------------------------*/
.prose{ max-width: 820px; margin: 0 auto; }
.prose h2{ margin-top: 1.8em; font-size: clamp(1.4rem, 2.5vw, 1.8rem); color: var(--cream); font-family: var(--font-display); }
.prose p, .prose li{ color: var(--fg-soft); line-height: 1.85; }
.prose ul{ padding-left: 1.2em; }
.prose li{ margin-bottom: .4em; }

/* ---------- 24. 404 ---------------------------------------------------------*/
.error-page{
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 0;
}
.error-code{
  font-family: var(--font-blackletter);
  font-size: clamp(8rem, 24vw, 18rem);
  line-height: .9;
  background: linear-gradient(180deg, var(--brass-50), var(--brass-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 0 60px rgba(201,163,82,.3));
  margin-bottom: 24px;
}

/* ---------- 25. Brand strip (between sections) -----------------------------*/
.brand-strip{
  position: relative;
  padding: 24px 0;
  border-top: 1px solid rgba(201,163,82,.15);
  border-bottom: 1px solid rgba(201,163,82,.15);
  background: rgba(0,0,0,.35);
  overflow: hidden;
}
.brand-strip__track{
  display: flex; gap: 80px; align-items: center;
  white-space: nowrap;
  font-family: var(--font-blackletter);
  font-size: 18px;
  letter-spacing: .12em;
  color: rgba(201,163,82,.55);
  animation: ticker 40s linear infinite;
}
.brand-strip__track span{ display: inline-flex; align-items: center; gap: 80px; }
.brand-strip__track .dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass); display: inline-block;
}
@keyframes ticker{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 26. Animations on scroll ----------------------------------------*/
.reveal{
  opacity: 1;
  transform: none;
}
.site.js-ready .reveal{
  opacity: 1;
  transform: none;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.site.js-ready .reveal.is-visible{ opacity: 1; transform: translateY(0); }
.site.js-ready .reveal[data-delay="1"]{ transition-delay: .08s; }
.site.js-ready .reveal[data-delay="2"]{ transition-delay: .16s; }
.site.js-ready .reveal[data-delay="3"]{ transition-delay: .24s; }
.site.js-ready .reveal[data-delay="4"]{ transition-delay: .32s; }
.site.js-ready .reveal[data-delay="5"]{ transition-delay: .40s; }
.site.js-ready .reveal[data-delay="6"]{ transition-delay: .48s; }
.site.js-ready .reveal--left{ transform: none; }
.site.js-ready .reveal--left.is-visible{ transform: translateX(0); }
.site.js-ready .reveal--right{ transform: none; }
.site.js-ready .reveal--right.is-visible{ transform: translateX(0); }
.site.js-ready .reveal--scale{ transform: none; }
.site.js-ready .reveal--scale.is-visible{ transform: scale(1); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal,
  .site.js-ready .reveal{ opacity: 1; transform: none; }
}

/* ---------- 27. Utility -----------------------------------------------------*/
main#main{ display: block; }
.center{ text-align: center; }
.mb-0{ margin-bottom: 0; }
.mt-2{ margin-top: 24px; }
.mt-4{ margin-top: 48px; }
.text-balance{ text-wrap: balance; }

/* Bilingual two-column block — used in old places, kept compatible */
.bilingual{ display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 760px){ .bilingual{ grid-template-columns: 1fr; } }
.bilingual > div{ padding: 24px; }
.bilingual h3{ color: var(--brass); font-size: 1.2rem; margin-bottom: 14px; font-family: var(--font-display); }

/* ============================================================================
   LEGACY section
   ============================================================================ */
.legacy{
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
  isolation: isolate;
}
.legacy__bg{
  position: absolute; inset: -10%; z-index: -2;
  background:
    radial-gradient(800px 600px at 80% 30%, rgba(201,163,82,.14), transparent 60%),
    radial-gradient(700px 500px at 10% 80%, rgba(201,163,82,.08), transparent 70%);
}
.legacy__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px){ .legacy__grid{ grid-template-columns: 1fr; } }
.legacy__copy h2{ margin-bottom: .35em; }
.legacy__copy p{ font-size: 1.06rem; line-height: 1.85; color: var(--fg-soft); max-width: 480px; }

.legacy__stats{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 8px;
  padding: 24px 0;
  border-top: 1px solid var(--glass-bd);
  border-bottom: 1px solid var(--glass-bd);
}
.legacy__stats > div{ display: flex; flex-direction: column; gap: 6px; }
.legacy__stats strong{
  font-family: var(--font-blackletter);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}
.legacy__stats span{
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.legacy__visual{ position: relative; }
.legacy__frame{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,163,82,.3);
  box-shadow:
    0 30px 80px rgba(0,0,0,.7),
    0 0 80px rgba(201,163,82,.18),
    inset 0 0 0 1px rgba(255,250,235,.06);
  transition: transform .6s var(--ease-out);
}
.legacy__frame:hover{ transform: scale(1.015); }
.legacy__frame::before, .legacy__frame::after{
  content:""; position: absolute; z-index: 3;
  border: 1px solid rgba(201,163,82,.5);
  border-radius: 4px;
  pointer-events: none;
}
.legacy__frame::before{ inset: 16px; }
.legacy__frame::after{
  width: 80%; height: 80%; left: 10%; top: 10%;
  border-color: rgba(201,163,82,.18);
}
.legacy__frame img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  animation: kb-zoom-in 18s ease-in-out infinite alternate;
}
.legacy__overlay{
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(5,5,5,0) 30%, rgba(5,5,5,.88) 100%),
    linear-gradient(135deg, rgba(201,163,82,0) 60%, rgba(201,163,82,.15) 100%);
}
.legacy__caption{
  position: absolute; left: 28px; bottom: 28px; right: 28px; z-index: 4;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px;
}
.legacy__caption .ink-brush{
  font-size: clamp(2rem, 4vw, 3rem);
}
.legacy__caption em{
  font-style: normal;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 700;
}

/* ============================================================================
   INSIDE THE STUDIO section
   ============================================================================ */
.inside-studio{ background: linear-gradient(180deg, transparent, rgba(0,0,0,.35), transparent); }
.studio-tile{
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-bd);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .35s;
  cursor: default;
  isolation: isolate;
}
.studio-tile:hover{
  transform: translateY(-6px);
  border-color: rgba(201,163,82,.5);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(201,163,82,.22);
}
.studio-tile__media{
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .9s var(--ease-out), filter .6s;
  filter: contrast(1.1) saturate(.9) brightness(.85);
}
.studio-tile:hover .studio-tile__media{
  transform: scale(1.1);
  filter: contrast(1.15) saturate(1) brightness(.95);
}
.studio-tile__overlay{
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,5,5,0) 35%, rgba(5,5,5,.92) 100%);
}
.studio-tile__copy{
  position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2;
  display: flex; flex-direction: column; gap: 6px;
}
.studio-tile__label{
  font-family: var(--font-blackletter);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--cream);
  letter-spacing: .01em;
  line-height: 1;
}
.studio-tile__sub{
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 700;
}
.studio-tile__corner{
  position: absolute; z-index: 3;
  width: 28px; height: 28px;
  border: 1px solid var(--brass);
  opacity: .65;
}
.studio-tile__corner.corner-tr{ top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.studio-tile__corner.corner-bl{ bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
