/* ==========================================================================
   SANDRA MOREIRA — FOTOGRAFIA | Design System
   ========================================================================== */

:root{
  --bg:            #0d0d12;
  --bg-alt:        #15151c;
  --bg-rgb:        13,13,18;
  --bg-alt-rgb:    21,21,28;
  --surface:       #1b1b24;
  --surface-2:     #22222c;
  --border:        rgba(255,255,255,.08);
  --text:          #f3f1ec;
  --text-muted:    #a3a1ab;
  --text-dim:      #6f6d78;

  --gold:          #cda86e;
  --gold-light:    #ecd9b0;
  --gold-dim:      rgba(205,168,110,.15);
  --violet:        #6c63ff;
  --violet-dim:    rgba(108,99,255,.18);

  --grad-gold:     linear-gradient(120deg,#e8cf9c,#cda86e 45%,#8a6a3a);
  --grad-hero:     radial-gradient(circle at 20% 20%, rgba(108,99,255,.16), transparent 45%),
                    radial-gradient(circle at 80% 30%, rgba(205,168,110,.14), transparent 40%),
                    radial-gradient(circle at 50% 90%, rgba(108,99,255,.10), transparent 50%);

  --font-serif:    'Playfair Display', 'Cormorant Garamond', serif;
  --font-sans:     'Inter', sans-serif;
  --font-script:   'Cormorant Garamond', serif;

  --container:     1220px;
  --radius:        14px;
  --ease:          cubic-bezier(.16,.84,.44,1);
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
/* scroll-behavior:smooth intentionally omitted — it conflicts with GSAP ScrollTrigger's scrub;
   anchor links get smooth scrolling from JS instead (see script.js) */
html,body{ background:var(--bg); }

body{
  font-family:var(--font-sans);
  color:var(--text);
  background-color:var(--bg);
  background-image:
    radial-gradient(circle at 12% 15%, rgba(108,99,255,.09), transparent 42%),
    radial-gradient(circle at 88% 25%, rgba(205,168,110,.08), transparent 40%),
    radial-gradient(circle at 30% 85%, rgba(108,99,255,.07), transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(205,168,110,.06), transparent 40%),
    radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:auto, auto, auto, auto, 34px 34px;
  background-attachment:fixed;
  overflow-x:hidden;
  line-height:1.6;
  cursor:none;
}

@media (max-width: 860px), (hover:none){
  body{ cursor:auto; }
  .cursor-dot,.cursor-ring{ display:none; }
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
ul{ list-style:none; }
input,textarea,select{ font-family:inherit; }

.container{
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:24px;
}

::selection{ background:var(--gold); color:#0a0a0a; }

/* scrollbar */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:var(--bg); }
::-webkit-scrollbar-thumb{ background:var(--surface-2); border-radius:10px; }
::-webkit-scrollbar-thumb:hover{ background:var(--gold-dim); }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader{
  position:fixed; inset:0; z-index:9999;
  background:var(--bg);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .8s var(--ease), visibility .8s var(--ease);
}
.preloader.hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-inner{ text-align:center; position:relative; z-index:1; }

.preloader-camera-wrap{ position:relative; display:inline-block; margin-bottom:22px; }
.preloader-camera{ animation:camera-shutter 1.6s ease-in-out infinite; transform-origin:center; }
@keyframes camera-shutter{
  0%, 82%   { transform:scale(1); }
  87%       { transform:scale(.93); }
  92%       { transform:scale(1); }
  100%      { transform:scale(1); }
}
.preloader-lens-glint{
  opacity:0; transform-origin:50px 60px;
  animation:lens-glint 1.6s ease-in-out infinite;
}
@keyframes lens-glint{
  0%, 84%  { opacity:0; }
  88%      { opacity:.9; }
  100%     { opacity:0; }
}
.preloader-flash-burst{
  position:absolute; left:50%; top:63%; width:14px; height:14px; border-radius:50%;
  background:radial-gradient(circle, #fff8ea 0%, rgba(255,248,234,.6) 40%, transparent 70%);
  transform:translate(-50%,-50%) scale(0); opacity:0; pointer-events:none;
  animation:flash-burst 1.6s ease-out infinite;
}
@keyframes flash-burst{
  0%, 84%  { transform:translate(-50%,-50%) scale(0); opacity:0; }
  88%      { transform:translate(-50%,-50%) scale(1); opacity:1; }
  100%     { transform:translate(-50%,-50%) scale(9); opacity:0; }
}
.preloader-screen-flash{
  position:absolute; inset:0; background:#fff; opacity:0; pointer-events:none;
  animation:screen-flash 1.6s ease-out infinite;
}
@keyframes screen-flash{
  0%, 86%  { opacity:0; }
  89%      { opacity:.55; }
  100%     { opacity:0; }
}
.preloader-text{
  font-family:var(--font-serif); letter-spacing:.35em; font-size:.8rem;
  color:var(--text-muted);
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot,.cursor-ring{
  position:fixed; top:0; left:0; z-index:9998; pointer-events:none;
  border-radius:50%;
  transform:translate(-50%,-50%);
}
.cursor-dot{ width:6px; height:6px; background:var(--gold); transition:opacity .2s; }
.cursor-ring{
  width:38px; height:38px; border:1px solid rgba(205,168,110,.5);
  transition:width .25s var(--ease), height .25s var(--ease), border-color .25s, background .25s;
}
.cursor-ring.hover{
  width:64px; height:64px; background:var(--gold-dim); border-color:var(--gold);
}

/* ==========================================================================
   SCROLL PROGRESS
   ========================================================================== */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:var(--grad-gold); z-index:9997;
  box-shadow:0 0 12px rgba(205,168,110,.6);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header{
  position:fixed; top:0; left:0; right:0; z-index:900;
  padding:26px 0;
  transition:padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  border-bottom:1px solid transparent;
}
.header.scrolled{
  padding:14px 0;
  background:rgba(8,8,11,.75);
  backdrop-filter:blur(16px) saturate(140%);
  border-bottom-color:var(--border);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; }

.logo{
  font-family:var(--font-serif); font-size:1.35rem; letter-spacing:.03em; font-weight:600;
}
.logo span{ color:var(--gold); font-style:italic; font-weight:500; }

.nav{ display:flex; align-items:center; gap:34px; }
.nav-link{
  position:relative; font-size:.86rem; font-weight:500; letter-spacing:.02em;
  color:var(--text-muted); transition:color .25s;
}
.nav-link::after{
  content:''; position:absolute; left:0; bottom:-6px; width:0; height:1px;
  background:var(--gold); transition:width .3s var(--ease);
}
.nav-link:hover,.nav-link.active{ color:var(--text); }
.nav-link:hover::after,.nav-link.active::after{ width:100%; }
.nav-cta{
  padding:9px 20px; border:1px solid var(--gold); border-radius:100px;
  color:var(--gold-light) !important;
}
.nav-cta::after{ display:none; }
.nav-cta:hover{ background:var(--gold); color:#0a0a0a !important; }

.menu-toggle{
  display:none; flex-direction:column; gap:5px; width:28px; z-index:901;
}
.menu-toggle span{
  height:1.5px; width:100%; background:var(--text); transition:transform .3s var(--ease), opacity .3s;
}
.menu-toggle.active span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2){ opacity:0; }
.menu-toggle.active span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative; min-height:100svh; display:flex; align-items:center;
  overflow:hidden;
}
.hero-bg{ position:absolute; inset:0; z-index:0; background:var(--bg); }
.hero-photo{
  position:absolute; top:0; right:0; bottom:0; width:64%;
  background-image:url('../assets/images/sandra-sobre.png');
  background-size:cover; background-position:center 14%;
  opacity:.9;
  -webkit-mask-image:radial-gradient(ellipse 68% 78% at 62% 42%, #000 42%, transparent 90%);
  mask-image:radial-gradient(ellipse 68% 78% at 62% 42%, #000 42%, transparent 90%);
}
.hero-gradient{
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(9,9,13,.98) 0%, rgba(9,9,13,.9) 38%, rgba(9,9,13,.45) 62%, rgba(9,9,13,.3) 78%, rgba(9,9,13,.65) 100%),
    var(--grad-hero);
}
@media (max-width:860px){
  .hero-photo{ width:100%; opacity:.5; }
  .hero-gradient{ background:linear-gradient(180deg, rgba(9,9,13,.85) 0%, rgba(9,9,13,.7) 50%, rgba(9,9,13,.92) 100%), var(--grad-hero); }
}
.hero-grain{
  position:absolute; inset:0; opacity:.35; mix-blend-mode:overlay; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}
#particles{ position:absolute; inset:0; }

.hero-content{
  position:relative; z-index:2; padding-top:80px;
  display:grid; grid-template-columns:1fr auto; align-items:center; gap:32px;
}
.hero-text{ min-width:0; }
.hero-eyebrow{
  font-size:.78rem; letter-spacing:.28em; color:var(--gold); margin-bottom:22px; font-weight:600;
}
.hero-title{
  font-family:var(--font-serif); font-weight:600;
  font-size:clamp(2.4rem, 6vw, 5rem); line-height:1.08; letter-spacing:-.01em;
  max-width:16ch; margin-bottom:26px;
}
.text-gradient{
  background:var(--grad-gold); -webkit-background-clip:text; background-clip:text; color:transparent;
  font-style:italic;
}
.hero-subtitle{
  font-size:clamp(1rem,1.6vw,1.15rem); color:var(--text-muted); max-width:46ch; margin-bottom:40px;
}
.hero-actions{ display:flex; gap:18px; flex-wrap:wrap; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:16px 34px; border-radius:100px; font-size:.86rem; font-weight:600;
  letter-spacing:.03em; transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, color .35s, border-color .35s;
  position:relative; overflow:hidden;
}
.btn-primary{ background:var(--grad-gold); color:#161005; }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 14px 30px -8px rgba(205,168,110,.55); }
.btn-ghost{ border:1px solid var(--border); color:var(--text); backdrop-filter:blur(6px); }
.btn-ghost:hover{ border-color:var(--gold); color:var(--gold-light); transform:translateY(-3px); }
.btn-block{ width:100%; }

.hero-video-card{
  width:min(27vw, 380px, calc(68svh * 9 / 16));
  aspect-ratio:9/16; justify-self:end;
  pointer-events:none;
}
.hero-video-inner{
  position:relative; width:100%; height:100%;
  transform:rotate(3deg);
  transform-origin:center;
  will-change:transform, opacity;
}
.hero-video{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  -webkit-mask-image:radial-gradient(ellipse 62% 60% at 50% 48%, #000 55%, transparent 88%);
  mask-image:radial-gradient(ellipse 62% 60% at 50% 48%, #000 55%, transparent 88%);
}
.hero-video-glow{
  position:absolute; inset:-20%; z-index:-1;
  background:radial-gradient(circle at center, rgba(205,168,110,.28), transparent 70%);
  filter:blur(30px); opacity:.8;
}
@media (max-width:860px){
  .hero-content{ grid-template-columns:1fr; padding-bottom:24px; }
  .hero-video-card{
    justify-self:center;
    width:min(64vw, 280px); margin:8px auto 0;
  }
}
@media (max-width:640px){
  .hero-video-card{ width:min(64vw, 190px); }
}

.scroll-indicator{
  position:absolute; bottom:38px; left:50%; transform:translateX(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.scroll-indicator span{ font-size:.68rem; letter-spacing:.2em; color:var(--text-dim); }
.mouse{
  width:22px; height:36px; border:1.5px solid var(--text-dim); border-radius:12px; position:relative;
}
.wheel{
  width:3px; height:7px; background:var(--gold); border-radius:2px; position:absolute; top:6px; left:50%;
  transform:translateX(-50%); animation:scrollwheel 1.8s ease-in-out infinite;
}
@keyframes scrollwheel{ 0%{ opacity:1; top:6px;} 70%{opacity:0; top:18px;} 100%{opacity:0; top:6px;} }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee{
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  overflow:hidden; padding:20px 0; background:rgba(var(--bg-alt-rgb),.92);
}
.marquee-track{
  display:flex; width:max-content; gap:26px; animation:marquee 32s linear infinite; white-space:nowrap;
}
.marquee-track span{
  font-family:var(--font-sans); font-size:1rem; text-transform:lowercase; color:var(--text-dim);
  font-weight:500; letter-spacing:.06em;
}
.marquee-track i{ color:var(--gold); font-style:normal; font-size:1rem; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ==========================================================================
   SECTION GENERIC
   ========================================================================== */
section{ padding:140px 0; position:relative; }
.section-head{ max-width:640px; margin-bottom:64px; }
.section-eyebrow{
  font-size:.76rem; letter-spacing:.28em; color:var(--gold); font-weight:600; margin-bottom:16px;
}
.section-title{
  font-family:var(--font-serif); font-size:clamp(2rem,4vw,2.9rem); font-weight:600; margin-bottom:18px;
}
.section-desc{ color:var(--text-muted); font-size:1.02rem; max-width:52ch; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about{ background:rgba(var(--bg-alt-rgb),.92); }
.about-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:80px; align-items:center; }
.about-frame{ position:relative; }
.ph-image{
  aspect-ratio:4/5; border-radius:var(--radius); position:relative; overflow:hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(108,99,255,.35), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(205,168,110,.4), transparent 55%),
    linear-gradient(160deg,#1c1c26,#0c0c10);
  border:1px solid var(--border);
  display:flex; align-items:flex-end; justify-content:center; padding-bottom:22px;
}
.ph-image::before{
  content:'✦'; position:absolute; top:50%; left:50%; transform:translate(-50%,-60%);
  font-size:2.2rem; color:rgba(255,255,255,.15);
}
.ph-image::after{
  content:attr(data-label); font-size:.72rem; letter-spacing:.14em; color:rgba(255,255,255,.35);
  text-transform:uppercase; position:relative; z-index:1;
}
.about-photo{
  width:100%; aspect-ratio:4/5; object-fit:cover; object-position:top center;
  border-radius:var(--radius); border:1px solid var(--border);
}
.about-badge{
  position:absolute; bottom:-24px; left:-24px; background:var(--surface);
  border:1px solid var(--border); border-radius:var(--radius); padding:20px 24px;
  display:flex; align-items:center; gap:14px; backdrop-filter:blur(10px);
  box-shadow:0 20px 40px -20px rgba(0,0,0,.6);
}
.about-badge strong{ font-family:var(--font-serif); font-size:1.9rem; color:var(--gold); }
.about-badge span{ font-size:.72rem; color:var(--text-muted); line-height:1.3; }

.about-paragraph{ color:var(--text-muted); margin-bottom:18px; max-width:56ch; }
.about-paragraph strong{ color:var(--gold-light); font-weight:600; }

.about-family{
  display:grid; grid-template-columns:1fr 1fr; gap:18px; max-width:400px; margin:10px 0 32px;
}
.about-family img{
  width:100%; aspect-ratio:4/5; object-fit:cover; border-radius:var(--radius); border:1px solid var(--border);
}
.about-family figcaption{
  margin-top:10px; font-size:.74rem; color:var(--text-muted); letter-spacing:.03em; text-align:center;
}

.about-signature{
  font-family:var(--font-script); font-style:italic; font-size:1.7rem; color:var(--gold-light);
  margin:26px 0 46px;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.service-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  position:relative; overflow:hidden;
  transition:transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.service-card::before{
  content:''; position:absolute; inset:0; opacity:0; transition:opacity .4s var(--ease); z-index:1;
  background:radial-gradient(circle at 30% 0%, rgba(205,168,110,.14), transparent 60%);
  pointer-events:none;
}
.service-card:hover{ transform:translateY(-8px); border-color:var(--gold-dim); }
.service-card:hover::before{ opacity:1; }
.service-card:hover .service-media img{ transform:scale(1.06); }

.service-media{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.service-media img{
  width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease);
}
.service-media::after{
  content:''; position:absolute; inset:0; background:linear-gradient(0deg, var(--surface), transparent 55%);
}
.service-number{
  position:absolute; top:16px; left:16px; z-index:2;
  font-family:var(--font-serif); font-size:.85rem; color:var(--text);
  background:rgba(0,0,0,.45); backdrop-filter:blur(4px); border:1px solid rgba(255,255,255,.15);
  width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center;
}

.service-body{ padding:30px 28px 38px; }
.service-icon{
  width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:var(--gold-dim); color:var(--gold); margin-bottom:24px; margin-top:-58px; position:relative; z-index:2;
  border:1px solid var(--border);
}
.service-icon svg{ width:24px; height:24px; }
.service-card h3{ font-family:var(--font-serif); font-size:1.35rem; margin-bottom:12px; }
.service-card p{ color:var(--text-muted); font-size:.9rem; }

/* ==========================================================================
   PORTFOLIO / GALLERY
   ========================================================================== */
.filters{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:44px; }
.filter-btn{
  padding:10px 22px; border:1px solid var(--border); border-radius:100px; font-size:.82rem;
  color:var(--text-muted); transition:all .3s var(--ease);
}
.filter-btn:hover{ color:var(--text); border-color:var(--gold-dim); }
.filter-btn.active{ background:var(--gold); border-color:var(--gold); color:#161005; font-weight:600; }

.gallery-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
  grid-auto-flow:dense;
}
.gallery-item{
  position:relative; border-radius:var(--radius); overflow:hidden; cursor:pointer;
  opacity:0; transform:scale(.94); transition:opacity .5s var(--ease), transform .5s var(--ease);
}
.gallery-item.show{ opacity:1; transform:scale(1); }
.gallery-item.hide{ display:none; }
.gallery-item.tall{ grid-row:span 2; }
.gallery-item .ph-image{ aspect-ratio:auto; height:100%; min-height:260px; padding-bottom:18px; border-radius:0; border:none; }
.gallery-item.tall .ph-image{ min-height:560px; }
.gallery-photo{
  width:100%; height:100%; min-height:260px; object-fit:cover; display:block; transition:filter .4s var(--ease);
}
.gallery-item.tall .gallery-photo{ min-height:560px; }
.gallery-overlay{
  position:absolute; inset:0; background:linear-gradient(0deg, rgba(0,0,0,.75), transparent 55%);
  display:flex; align-items:flex-end; padding:22px; opacity:0; transition:opacity .4s var(--ease);
}
.gallery-item:hover .gallery-overlay{ opacity:1; }
.gallery-item:hover .ph-image,.gallery-item:hover .gallery-photo{ filter:brightness(1.1); }
.gallery-overlay h4{ font-family:var(--font-serif); font-size:1.05rem; }
.gallery-overlay span{ font-size:.72rem; color:var(--gold-light); letter-spacing:.1em; }
.gallery-item .zoom-icon{
  position:absolute; top:16px; right:16px; width:36px; height:36px; border-radius:50%;
  background:rgba(0,0,0,.4); backdrop-filter:blur(4px); display:flex; align-items:center; justify-content:center;
  opacity:0; transform:scale(.7); transition:all .35s var(--ease); border:1px solid rgba(255,255,255,.2);
}
.gallery-item:hover .zoom-icon{ opacity:1; transform:scale(1); }
.zoom-icon svg{ width:16px; height:16px; color:var(--text); }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox{
  position:fixed; inset:0; z-index:9500; background:rgba(4,4,6,.95); backdrop-filter:blur(10px);
  display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden;
  transition:opacity .4s var(--ease), visibility .4s var(--ease);
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox-content{ max-width:640px; width:90%; text-align:center; }
.lightbox-image{ aspect-ratio:4/5; max-height:70vh; margin-inline:auto; border-radius:var(--radius); }
.lightbox-photo{
  max-width:100%; max-height:70vh; margin-inline:auto; border-radius:var(--radius); display:none;
  object-fit:cover;
}
.lightbox-caption{ margin-top:20px; color:var(--text-muted); font-size:.9rem; letter-spacing:.05em; }
.lightbox-close{
  position:absolute; top:28px; right:34px; font-size:2rem; color:var(--text); line-height:1;
  transition:transform .3s, color .3s;
}
.lightbox-close:hover{ color:var(--gold); transform:rotate(90deg); }
.lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%); font-size:1.2rem; color:var(--text);
  width:52px; height:52px; border-radius:50%; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; transition:all .3s var(--ease);
}
.lightbox-nav:hover{ border-color:var(--gold); color:var(--gold); background:var(--gold-dim); }
.lightbox-prev{ left:34px; } .lightbox-next{ right:34px; }
@media (max-width:640px){
  .lightbox-nav{ width:40px; height:40px; }
  .lightbox-prev{ left:10px; } .lightbox-next{ right:10px; }
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process{ background:rgba(var(--bg-alt-rgb),.92); }
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; }
.process-grid::before{
  content:''; position:absolute; top:22px; left:6%; right:6%; height:1px;
  background:linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
}
.process-item{ position:relative; }
.process-index{
  display:inline-flex; align-items:center; justify-content:center; width:46px; height:46px;
  border-radius:50%; background:var(--surface); border:1px solid var(--gold-dim); color:var(--gold);
  font-family:var(--font-serif); font-weight:600; margin-bottom:22px; position:relative; z-index:1;
}
.process-item h3{ font-family:var(--font-serif); font-size:1.2rem; margin-bottom:10px; }
.process-item p{ color:var(--text-muted); font-size:.9rem; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner{ position:relative; text-align:center; overflow:hidden; padding:120px 0; }
.cta-bg{
  position:absolute; inset:0;
  background:var(--grad-hero), linear-gradient(180deg,var(--bg-alt),var(--bg));
}
.cta-content{ position:relative; z-index:1; }
.cta-content h2{
  font-family:var(--font-serif); font-size:clamp(2rem,4.5vw,3.2rem); margin-bottom:18px; font-weight:600;
}
.cta-content p{ color:var(--text-muted); margin-bottom:36px; font-size:1.05rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; }
.contact-items{ margin-top:38px; display:flex; flex-direction:column; gap:18px; }
.contact-item{
  display:flex; align-items:center; gap:16px; padding:16px 20px; border:1px solid var(--border);
  border-radius:var(--radius); transition:all .3s var(--ease);
}
a.contact-item:hover{ border-color:var(--gold-dim); background:var(--surface); transform:translateX(6px); }
.contact-item svg{ width:22px; height:22px; color:var(--gold); flex-shrink:0; }
.contact-item strong{ display:block; font-size:.92rem; }
.contact-item span{ font-size:.8rem; color:var(--text-muted); }

.contact-form{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:40px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group{ margin-bottom:20px; }
.form-group label{ display:block; font-size:.78rem; color:var(--text-muted); margin-bottom:8px; letter-spacing:.03em; }
.form-group input,.form-group textarea,.form-group select{
  width:100%; background:var(--bg); border:1px solid var(--border); border-radius:8px;
  padding:13px 16px; color:var(--text); font-size:.92rem; transition:border-color .3s;
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{
  outline:none; border-color:var(--gold);
}
.form-group textarea{ resize:vertical; min-height:100px; }
.form-note{ margin-top:16px; font-size:.85rem; text-align:center; min-height:1.2em; color:var(--gold-light); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{ background:rgba(var(--bg-alt-rgb),.92); border-top:1px solid var(--border); padding-top:70px; }
.footer-inner{
  display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:40px;
  padding-bottom:50px;
}
.footer-brand p{ color:var(--text-dim); font-size:.86rem; margin-top:10px; max-width:26ch; }
.footer-nav{ display:flex; gap:26px; flex-wrap:wrap; }
.footer-nav a{ font-size:.86rem; color:var(--text-muted); transition:color .3s; }
.footer-nav a:hover{ color:var(--gold); }
.footer-social{ display:flex; gap:14px; }
.footer-social a{
  width:40px; height:40px; border-radius:50%; border:1px solid var(--border); display:flex;
  align-items:center; justify-content:center; transition:all .3s var(--ease);
}
.footer-social a:hover{ border-color:var(--gold); color:var(--gold); transform:translateY(-4px); }
.footer-social svg{ width:18px; height:18px; }
.footer-bottom{
  border-top:1px solid var(--border); padding:24px; text-align:center;
  color:var(--text-dim); font-size:.78rem;
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top{
  position:fixed; bottom:30px; right:30px; width:48px; height:48px; border-radius:50%;
  background:var(--surface); border:1px solid var(--border); display:flex; align-items:center; justify-content:center;
  z-index:600; opacity:0; visibility:hidden; transform:translateY(10px);
  transition:all .35s var(--ease);
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ border-color:var(--gold); color:var(--gold); }
.back-to-top svg{ width:18px; height:18px; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal{ opacity:0; transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal[data-reveal="fade-up"]{ transform:translateY(36px); }
.reveal[data-reveal="fade-right"]{ transform:translateX(-40px); }
.reveal[data-reveal="fade-left"]{ transform:translateX(40px); }
.reveal[data-reveal="fade-in"]{ transform:none; }
.reveal.in-view{ opacity:1; transform:none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1024px){
  .about-grid,.contact-grid{ grid-template-columns:1fr; gap:56px; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .process-grid{ grid-template-columns:repeat(2,1fr); row-gap:44px; }
  .process-grid::before{ display:none; }
}

@media (max-width:860px){
  .nav{
    position:fixed; top:0; right:0; height:100vh; width:min(320px,80vw);
    background:var(--bg-alt); border-left:1px solid var(--border);
    flex-direction:column; justify-content:center; align-items:flex-start; gap:28px;
    padding:40px; transform:translateX(100%); transition:transform .45s var(--ease); z-index:895;
  }
  .nav.open{ transform:translateX(0); }
  .menu-toggle{ display:flex; }
  .nav-cta{ margin-top:10px; }
  section{ padding:90px 0; }
  .form-row{ grid-template-columns:1fr; }
}

@media (max-width:640px){
  .services-grid,.process-grid{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); gap:10px; }
  .gallery-item .ph-image,.gallery-item .gallery-photo{ min-height:130px; }
  .gallery-item.tall{ grid-row:span 2; }
  .gallery-item.tall .ph-image,.gallery-item.tall .gallery-photo{ min-height:280px; }
  .gallery-overlay{ padding:10px; }
  .gallery-overlay h4{ font-size:.82rem; }
  .gallery-overlay span{ font-size:.6rem; }
  .gallery-item .zoom-icon{ width:26px; height:26px; top:8px; right:8px; }
  .zoom-icon svg{ width:13px; height:13px; }
  .filters{ gap:8px; margin-bottom:28px; }
  .filter-btn{ padding:8px 16px; font-size:.74rem; }
  .about-badge{ position:static; margin-top:20px; }
  .footer-inner{ flex-direction:column; }
}
