/* =========================================================
   Rinor Ademi — Elite High-Ticket Closer
   Luxury dark theme · champagne gold accents
   ========================================================= */

:root {
  --bg: #0a0a0c;
  --bg-soft: #101015;
  --bg-card: #14141a;
  --ink: #f4f1ea;
  --ink-soft: #b7b3aa;
  --ink-mute: #6f6c66;
  --line: rgba(201, 168, 106, 0.16);
  --gold: #c9a86a;
  --gold-bright: #e7cd9a;
  --gold-deep: #9c7c46;
  --champagne: #e9dcc2;
  --radius: 18px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 900px) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

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

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

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), opacity .3s;
}
.cursor { width: 34px; height: 34px; border: 1px solid var(--gold); }
.cursor-dot { width: 5px; height: 5px; background: var(--gold); }
.cursor.is-hover { width: 58px; height: 58px; background: rgba(201,168,106,0.08); }
@media (max-width: 900px) { .cursor, .cursor-dot { display: none; } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  z-index: 9997;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 64px);
  transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s;
}
.nav.scrolled {
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(10,10,12,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-spark {
  display: grid; place-items: center; line-height: 0;
  filter: drop-shadow(0 0 6px rgba(201,168,106,0.45));
  transition: transform .5s var(--ease);
}
.brand-spark svg { animation: twinkle 4.5s ease-in-out infinite; }
.brand:hover .brand-spark { transform: rotate(90deg) scale(1.1); }
@keyframes twinkle { 0%,100% { opacity: .8; transform: scale(.94); } 50% { opacity: 1; transform: scale(1.06); } }
.brand-name {
  font-family: var(--serif); font-weight: 600; font-size: 1.32rem; letter-spacing: .3px;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; transition: color .3s;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  padding: 10px 22px; border: 1px solid var(--gold);
  border-radius: 100px; color: var(--gold-bright) !important;
  transition: background .3s, color .3s;
}
.nav-cta:hover { background: var(--gold); color: #0a0a0c !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: rgba(8,8,10,0.97);
  backdrop-filter: blur(10px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; color: var(--ink-soft); transition: color .3s; }
.mobile-menu a:hover { color: var(--gold-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 100px; font-size: .9rem; font-weight: 500;
  letter-spacing: .03em; cursor: none; border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .4s, background .4s, color .3s;
  position: relative; overflow: hidden;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  color: #1a1408;
  box-shadow: 0 12px 40px -12px rgba(201,168,106,0.6);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px -12px rgba(201,168,106,0.75); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }
.btn.full { width: 100%; justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px clamp(20px, 5vw, 64px) 80px;
}
.hero-glow {
  position: absolute; top: -10%; right: -5%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(201,168,106,0.16), transparent 62%);
  filter: blur(20px); pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px, 5vw, 80px); align-items: center;
}
.eyebrow {
  display: flex; align-items: center; gap: 12px; color: var(--gold-bright);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 26px;
}
.eyebrow-line { width: 44px; height: 1px; background: var(--gold); display: inline-block; }
.hero-title {
  font-family: var(--serif); font-weight: 600; font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  line-height: 1.02; letter-spacing: -0.5px; margin-bottom: 26px;
}
.gradient-text {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-bright) 30%, var(--champagne) 50%, var(--gold-bright) 70%, var(--gold-deep));
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { background-position: 0% center; } 50% { background-position: 120% center; } }
.hero-sub { font-size: clamp(1rem, 1.3vw, 1.18rem); color: var(--ink-soft); max-width: 540px; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }
.hero-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust > span { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
.trust-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-tags em {
  font-style: normal; font-size: .76rem; letter-spacing: .08em; color: var(--ink-soft);
  padding: 6px 14px; border: 1px solid var(--line); border-radius: 100px;
}

/* Portrait */
.hero-portrait { position: relative; display: grid; place-items: center; }
.portrait-frame { position: relative; width: min(380px, 80vw); aspect-ratio: 4/5; z-index: 2; }
.portrait-img {
  width: 100%; height: 100%; border-radius: 220px 220px 24px 24px; overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(201,168,106,0.22), transparent 60%),
    linear-gradient(160deg, #1b1b22, #0d0d11);
  border: 1px solid var(--line);
  display: grid; place-items: center; position: relative;
  background-size: cover; background-position: center;
}
.portrait-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%; z-index: 1;
}
.portrait-monogram {
  font-family: var(--serif); font-size: 5rem; font-weight: 600; color: var(--gold);
  opacity: .5; letter-spacing: 2px;
}
.portrait-badge {
  position: absolute; bottom: 24px; right: -26px; z-index: 3;
  background: rgba(16,16,21,0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 14px; padding: 14px 20px;
  display: flex; flex-direction: column; box-shadow: 0 20px 50px -20px rgba(0,0,0,.8);
}
.badge-num { font-family: var(--serif); font-size: 1.6rem; color: var(--gold-bright); line-height: 1; }
.badge-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }
.portrait-ring {
  position: absolute; width: 115%; aspect-ratio: 1; border: 1px solid var(--line);
  border-radius: 50%; animation: spin 26s linear infinite; pointer-events: none;
}
.portrait-ring::before {
  content: ""; position: absolute; top: -4px; left: 50%; width: 7px; height: 7px;
  background: var(--gold-bright); border-radius: 50%; box-shadow: 0 0 14px var(--gold);
}
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1px solid var(--line); border-radius: 20px;
  display: grid; justify-items: center; padding-top: 8px; z-index: 2;
}
.scroll-cue span { width: 3px; height: 8px; background: var(--gold); border-radius: 4px; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{ transform: translateY(0); opacity:1 } 70%{ transform: translateY(14px); opacity:0 } 100%{opacity:0} }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 22px 0; background: var(--bg-soft); }
.marquee-track { display: flex; align-items: center; gap: 34px; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 2rem); color: var(--ink-soft); white-space: nowrap; }
.marquee-track i { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section scaffolding ---------- */
section { padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 64px); max-width: var(--maxw); margin: 0 auto; }
.section-head { margin-bottom: 64px; max-width: 720px; }
.section-eyebrow { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-eyebrow.center { text-align: center; }
.section-title { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.08; letter-spacing: -0.5px; }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  padding-top: clamp(60px, 8vw, 100px); padding-bottom: clamp(60px, 8vw, 100px);
}
.stat { text-align: center; padding: 28px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(160deg, var(--bg-card), transparent); }
.stat-num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--gold-bright); display: block; line-height: 1; }
.stat-label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 12px; display: block; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.about-lead p { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 22px; }
.about-lead strong { color: var(--ink); font-weight: 600; }
.link-underline { color: var(--gold-bright); font-weight: 500; border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: border-color .3s; }
.link-underline:hover { border-color: var(--gold); }
.about-pillars { display: flex; flex-direction: column; gap: 18px; }
.about-pillars li { padding: 26px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card); position: relative; transition: transform .4s var(--ease), border-color .4s; }
.about-pillars li:hover { transform: translateX(8px); border-color: var(--gold); }
.pillar-no { font-family: var(--serif); font-size: .95rem; color: var(--gold); }
.about-pillars h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin: 6px 0 8px; }
.about-pillars p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  padding: 36px 30px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(170deg, var(--bg-card), var(--bg-soft));
  transition: transform .5s var(--ease), border-color .4s, box-shadow .5s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .5s;
  background: radial-gradient(circle at var(--mx,50%) var(--my,0%), rgba(201,168,106,0.14), transparent 55%);
}
.service-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 30px 60px -30px rgba(0,0,0,.9); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px;
  border: 1px solid var(--line); color: var(--gold-bright); margin-bottom: 22px; position: relative; z-index: 1;
  background: radial-gradient(circle at 30% 25%, rgba(201,168,106,0.16), transparent 70%);
  transition: transform .5s var(--ease), border-color .45s, box-shadow .5s, background .5s;
}
.service-icon svg { transition: transform .5s var(--ease); }
.service-card:hover .service-icon {
  transform: translateY(-3px); border-color: var(--gold);
  background: radial-gradient(circle at 30% 25%, rgba(201,168,106,0.3), transparent 72%);
  box-shadow: 0 14px 34px -16px rgba(201,168,106,0.7);
}
.service-card:hover .service-icon svg { transform: scale(1.08); }
.service-card h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; margin-bottom: 12px; }
.service-card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 20px; }
.service-tag { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

/* ---------- Process timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 26px; left: 6%; right: 6%; height: 1px; background: var(--line); }
.timeline li { position: relative; }
.t-step {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  font-family: var(--serif); font-size: 1.2rem; color: var(--gold-bright);
  background: var(--bg); border: 1px solid var(--gold); margin-bottom: 24px; position: relative; z-index: 2;
}
.t-body h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; }
.t-body p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Results / quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { padding: 34px 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card); transition: transform .4s var(--ease), border-color .4s; }
.quote:hover { transform: translateY(-6px); border-color: var(--gold); }
.quote-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 18px; }
.quote blockquote { font-family: var(--serif); font-size: 1.32rem; line-height: 1.45; color: var(--ink); margin-bottom: 22px; }
.quote figcaption { display: flex; flex-direction: column; gap: 3px; }
.quote figcaption strong { color: var(--gold-bright); font-weight: 600; }
.quote figcaption span { font-size: .82rem; color: var(--ink-mute); letter-spacing: .04em; }
.results-note { text-align: center; margin-top: 34px; font-size: .8rem; color: var(--ink-mute); letter-spacing: .04em; }

/* ---------- Work With Me ---------- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.work-card {
  display: flex; flex-direction: column; padding: 44px 40px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(170deg, var(--bg-card), var(--bg-soft));
  transition: transform .5s var(--ease), border-color .4s, box-shadow .5s;
  position: relative; overflow: hidden;
}
.work-card::before {
  content: ""; position: absolute; top: -40%; right: -20%; width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(201,168,106,0.12), transparent 65%);
  opacity: 0; transition: opacity .5s; pointer-events: none;
}
.work-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 30px 60px -30px rgba(0,0,0,.9); }
.work-card:hover::before { opacity: 1; }
.work-kicker { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.work-card h3 { font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.1rem); font-weight: 600; margin-bottom: 14px; }
.work-card > p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 24px; }
.work-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.work-list li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: .96rem; }
.work-list li::before { content: "✦"; position: absolute; left: 0; top: 1px; color: var(--gold); font-size: .8rem; }
.work-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Track record ---------- */
.track-card {
  padding: 34px 32px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-card); transition: transform .4s var(--ease), border-color .4s;
}
.track-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.track-tag { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.track-card h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; margin: 10px 0 12px; }
.track-card > p { color: var(--ink-soft); font-size: .97rem; margin-bottom: 18px; }
.track-meta { font-size: .82rem; letter-spacing: .03em; color: var(--gold-bright); font-weight: 500; }

/* ---------- Contact ---------- */
.contact { padding-bottom: clamp(90px, 12vw, 160px); }
.contact-card {
  position: relative; max-width: 760px; margin: 0 auto; text-align: center;
  padding: clamp(40px, 6vw, 72px); border: 1px solid var(--line); border-radius: 28px;
  background: linear-gradient(170deg, var(--bg-card), var(--bg-soft)); overflow: hidden;
}
.contact-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 80%; height: 80%; background: radial-gradient(circle, rgba(201,168,106,0.16), transparent 60%); pointer-events: none; }
.contact-title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; margin: 14px 0 16px; position: relative; }
.contact-sub { color: var(--ink-soft); max-width: 520px; margin: 0 auto 40px; position: relative; }
.contact-booking { position: relative; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
@media (max-width: 480px) { .contact-booking .btn { width: 100%; justify-content: center; } }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; text-align: left; position: relative; }
.field { position: relative; }
.field.full { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  width: 100%; padding: 18px 18px 8px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--line); border-radius: 12px; color: var(--ink);
  font-family: inherit; font-size: .98rem; transition: border-color .3s, background .3s; cursor: none;
}
.field textarea { resize: vertical; min-height: 90px; }
.field select { appearance: none; cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(201,168,106,0.04); }
.field label {
  position: absolute; left: 18px; top: 16px; color: var(--ink-mute); font-size: .98rem;
  pointer-events: none; transition: .25s var(--ease);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select:valid + label,
.field .select-label { top: 7px; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.field select:invalid + .select-label { top: 16px; font-size: .98rem; text-transform: none; letter-spacing: 0; color: var(--ink-mute); }
.field select:focus + .select-label, .field select:valid + .select-label { top: 7px; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.form-status { grid-column: 1/-1; font-size: .9rem; color: var(--gold-bright); min-height: 20px; text-align: center; }
.contact-alt { margin-top: 28px; display: flex; align-items: center; justify-content: center; gap: 14px; position: relative; color: var(--ink-mute); }
.contact-alt a { color: var(--ink-soft); transition: color .3s; }
.contact-alt a:hover { color: var(--gold-bright); }

/* ---------- Footer ---------- */
.footer { max-width: var(--maxw); margin: 0 auto; padding: 60px clamp(20px, 5vw, 64px); border-top: 1px solid var(--line); display: grid; gap: 26px; text-align: center; justify-items: center; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-tag { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); transition: color .3s; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom {
  width: 100%; max-width: 720px; margin-top: 6px; padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 18px;
}
.footer-copy { font-size: .8rem; color: var(--ink-mute); }
.footer-made { font-size: .82rem; color: var(--ink-mute); letter-spacing: .04em; }
.footer-made a { color: var(--gold-bright); font-weight: 600; transition: color .3s; }
.footer-made a:hover { color: var(--champagne); }
.footer-made .heart { color: #e0736d; display: inline-block; animation: heartbeat 1.6s ease-in-out infinite; }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.25); } 30% { transform: scale(1); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(40px); filter: blur(8px); transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }

/* ---------- Hero word stagger ---------- */
.hero-title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero-title .word > span {
  display: inline-block;
  transform: translateY(115%) rotate(6deg);
  opacity: 0;
  transition: transform 1.05s var(--ease), opacity 1.05s var(--ease);
  transition-delay: calc(var(--wi, 0) * 75ms + 350ms);
}
.hero-loaded .hero-title .word > span { transform: none; opacity: 1; }

/* ---------- Intro curtain ---------- */
.intro {
  position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center;
  background: var(--bg); transition: opacity .8s var(--ease), visibility .8s;
}
.intro.done { opacity: 0; visibility: hidden; }
.intro-mark {
  font-family: var(--serif); font-weight: 600; font-size: clamp(2.4rem, 7vw, 4.6rem);
  letter-spacing: 2px; color: var(--gold-bright);
  background: linear-gradient(120deg, var(--gold-deep), var(--champagne), var(--gold-deep));
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: introMark 1.6s var(--ease) forwards, shimmer 2.4s ease-in-out infinite;
}
.intro-line {
  position: absolute; bottom: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  animation: introLine 1.6s var(--ease) forwards;
}
@keyframes introMark { 0% { opacity: 0; transform: translateY(18px); letter-spacing: 12px; } 100% { opacity: 1; transform: none; letter-spacing: 2px; } }
@keyframes introLine { to { width: 100%; } }

/* ---------- Cinematic portrait reveal ---------- */
.portrait-img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s var(--ease), transform .6s var(--ease);
  transition-delay: .55s;
}
.hero-loaded .portrait-img { clip-path: inset(0 0 0 0); }
.portrait-photo { transition: transform .6s var(--ease); }
.portrait-frame:hover .portrait-photo { transform: scale(1.04); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 1; }
  .hero-portrait { order: 2; margin-top: 36px; }
  .eyebrow, .hero-actions, .hero-trust { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .quotes { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .brand-name { font-size: 1.16rem; }
  .services-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .portrait-badge { right: 0; }

  /* Tighter hero on phones */
  .hero { padding-top: 116px; min-height: auto; }
  .scroll-cue { display: none; }
  .section-head { margin-bottom: 44px; }

  /* Buttons go full-width so they line up cleanly */
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-booking { flex-direction: column; align-items: stretch; }
  .contact-booking .btn { width: 100%; justify-content: center; }
  .work-card { padding: 34px 26px; }
  .work-card .btn { align-self: stretch; justify-content: center; }

  /* Footer */
  .footer { padding: 48px 24px; gap: 22px; }
  .footer-links { gap: 12px 18px; }
  .footer-links a { font-size: .78rem; }
  .footer-bottom { justify-content: center; text-align: center; padding-top: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero-title .word > span { transform: none; opacity: 1; }
  .portrait-img { clip-path: none; }
  .intro { display: none; }
}
