/*
Theme Name: Flair Dee Solutions
Theme URI: https://flairdeesolutions.co.zw
Author: QwantuTech (Private) Limited
Author URI: https://quantutech.co.zw
Description: Custom WordPress theme for Flair Dee Solutions, photography, videography and advertising studio in Mutare, Zimbabwe.
Version: 1.0.0
License: Proprietary
Text Domain: flairdee
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Italianno&family=Inter:wght@300;400;500;600;700&display=swap');

/* CUSTOM PROPERTIES */
:root {
  --bg-primary: #0A1929;
  --bg-secondary: #1B4D7A;
  --bg-card: #FAFBFC;
  --accent-primary: #2B6BAA;
  --accent-secondary: #4FA3D1;
  --text-primary: #0A1929;
  --text-secondary: #2C3E50;
  --text-muted: #5A6F82;
  --border-subtle: rgba(43, 107, 170, 0.12);

  --brand-deep: #1B4D7A;
  --brand-primary: #2B6BAA;
  --brand-mid: #4FA3D1;
  --brand-light: #B8DCEF;
  --brand-wash: #E8F2F9;
  --ink: #0A1929;
  --ink-soft: #2C3E50;
  --ink-mute: #5A6F82;
  --paper: #FAFBFC;
  --paper-warm: #F4F6F8;
  --whatsapp: #25D366;
  --error: #E53E3E;
  --success: #38A169;
  --display: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --font-primary: 'Fraunces', Georgia, serif;
  --font-mono: 'Courier New', Courier, monospace;
  --maxw: 1280px;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--ink); background: var(--paper); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
ul { list-style: none; }

/* UTILITY */
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-primary); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* KEYFRAMES */
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes blink { 50% { opacity: 0.3; } }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2.2); opacity: 0; } }

/* BUTTONS */
.btn { display: inline-block; padding: 14px 32px; border-radius: 10px; border: 2px solid var(--brand-deep); position: relative; overflow: hidden; transition: color 0.3s ease-in; z-index: 1; text-align: center; font-size: 14px; font-weight: 600; letter-spacing: 0.02em; text-decoration: none; cursor: pointer; white-space: nowrap; font-family: var(--sans); background: transparent; color: var(--brand-deep); vertical-align: middle; }
.btn svg { width: 16px; height: 16px; vertical-align: middle; margin-right: 6px; }
.btn::before, .btn::after { content: ''; position: absolute; top: 0; width: 0; height: 100%; transform: skew(15deg); transition: width 0.5s ease-in; z-index: -1; }
.btn::before { left: -10px; background: var(--brand-deep); }
.btn::after { right: -10px; background: var(--brand-primary); }
.btn:hover::before, .btn:hover::after { width: 58%; }
.btn:hover { color: white !important; }
.btn-primary { border-color: var(--brand-mid); color: var(--brand-mid); }
.btn-primary::before { background: var(--brand-mid); }
.btn-primary::after { background: var(--brand-primary); }
.btn-dark, .btn-brand { border-color: var(--brand-deep); color: var(--brand-deep); }
.btn-ghost { border-color: rgba(255,255,255,0.6); color: white; }
.btn-ghost::before { background: rgba(255,255,255,0.15); }
.btn-ghost::after { background: rgba(255,255,255,0.25); }
.btn-ghost:hover { color: white !important; }
.btn-outline { border-color: var(--brand-deep); color: var(--brand-deep); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; background: rgba(250, 251, 252, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s, padding 0.3s; }
.nav.scrolled { border-bottom-color: var(--border-subtle); padding: 12px 32px; }
.nav-brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--brand-deep); text-decoration: none; }
.nav-logo { width: 40px; height: 40px; border-radius: 50%; background: var(--brand-primary); display: grid; place-items: center; color: white; font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: 0.02em; overflow: hidden; }
.nav-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.02em; position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--brand-primary); transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.current::after { width: 100%; }
.nav-links a.current { color: var(--brand-deep); }
.nav-cta { display: inline-block; width: 140px; height: 44px; border-radius: 10px; border: 2px solid var(--brand-deep); position: relative; overflow: hidden; transition: color 0.3s ease-in; z-index: 1; text-align: center; line-height: 40px; font-size: 14px; font-weight: 600; letter-spacing: 0.01em; color: var(--brand-deep) !important; text-decoration: none; white-space: nowrap; }
.nav-cta::before, .nav-cta::after { content: ''; position: absolute; top: 0; width: 0; height: 100%; transform: skew(15deg); transition: width 0.5s ease-in; z-index: -1; }
.nav-cta::before { left: -10px; background: var(--brand-deep); }
.nav-cta::after { right: -10px; background: var(--brand-primary); }
.nav-cta:hover::before, .nav-cta:hover::after { width: 58%; }
.nav-cta:hover { color: white !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: var(--paper); flex-direction: column; gap: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; border-bottom: 1px solid var(--border-subtle); }
  .nav-links.open { max-height: 500px; }
  .nav-links a { padding: 18px 32px; border-bottom: 1px solid var(--border-subtle); width: 100%; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 12px 24px 20px; width: calc(100% - 48px); justify-content: center; text-align: center; }
}

/* HOME HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--ink); }
.hero-video-wrap { position: absolute; inset: 0; z-index: 1; }
.hero-video-wrap video, .hero-video-wrap .hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-poster { background: linear-gradient(135deg, rgba(27,77,122,0.4), rgba(10,25,41,0.6)), url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&q=80') center/cover; }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(10,25,41,0.3) 0%, rgba(10,25,41,0.2) 40%, rgba(10,25,41,0.85) 100%); }
.hero-content { position: relative; z-index: 3; max-width: 1100px; padding: 0 32px; text-align: left; color: white; width: 100%; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--brand-light); margin-bottom: 28px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0; transform: translateY(20px); animation: rise 0.8s 0.2s forwards; }
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--brand-light); }
.hero h1 { font-family: var(--display); font-size: clamp(48px, 9vw, 128px); font-weight: 300; letter-spacing: -0.03em; line-height: 0.95; margin-bottom: 28px; }
.hero h1 .line { display: block; opacity: 0; transform: translateY(40px); animation: rise 1s forwards; }
.hero h1 .line:nth-child(1) { animation-delay: 0.3s; }
.hero h1 .line:nth-child(2) { animation-delay: 0.5s; }
.hero h1 .accent { font-style: italic; font-weight: 400; color: var(--brand-light); }
.hero p { font-size: clamp(15px, 1.5vw, 18px); max-width: 540px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 40px; opacity: 0; transform: translateY(20px); animation: rise 0.8s 0.8s forwards; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; transform: translateY(20px); animation: rise 0.8s 1s forwards; }

/* SERVICES SECTION */
.services { padding: 120px 32px; background: var(--paper); }
.section-head { max-width: var(--maxw); margin: 0 auto 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.section-head h2 { font-family: var(--display); font-weight: 300; font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); }
.section-head h2 em { font-style: italic; color: var(--brand-primary); font-weight: 400; }
.section-head .lede { font-size: 16px; line-height: 1.7; color: var(--ink-mute); max-width: 440px; }
.services-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.service { padding: 48px 32px; border-right: 1px solid var(--border-subtle); position: relative; transition: background 0.3s; cursor: pointer; }
.service:last-child { border-right: none; }
.service:hover { background: var(--brand-wash); }
.service-num { font-family: var(--display); font-size: 14px; color: var(--brand-primary); margin-bottom: 24px; font-variant-numeric: tabular-nums; }
.service h3 { font-family: var(--display); font-weight: 400; font-size: 26px; margin-bottom: 16px; line-height: 1.2; }
.service p { font-size: 14px; color: var(--ink-mute); line-height: 1.6; }
.service-arrow { position: absolute; bottom: 32px; right: 32px; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-deep); color: white; opacity: 0; transform: translateX(-8px); transition: all 0.3s; font-size: 16px; text-decoration: none; }
.service:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* WORK SECTION */
.work { padding: 120px 32px; background: var(--ink); color: white; }
.work .section-head h2 { color: white; }
.work .section-head h2 em { color: var(--brand-light); }
.work .section-head .lede { color: rgba(255,255,255,0.7); }
.work .eyebrow { color: var(--brand-light); }
.work-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.work-item { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; background: var(--brand-deep); }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.work-item:hover img { transform: scale(1.05); }
.work-item .meta { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(to top, rgba(10,25,41,0.95), transparent); color: white; transform: translateY(20px); opacity: 0; transition: all 0.4s ease; }
.work-item:hover .meta { transform: translateY(0); opacity: 1; }
.meta .tag { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.8; }
.meta h4 { font-family: var(--display); font-size: 22px; font-weight: 400; margin-top: 6px; }
.work-item:nth-child(1) { grid-column: span 7; aspect-ratio: 4/3; }
.work-item:nth-child(2) { grid-column: span 5; aspect-ratio: 4/5; }
.work-item:nth-child(3), .work-item:nth-child(4), .work-item:nth-child(5) { grid-column: span 4; aspect-ratio: 1/1; }
.work-cta { text-align: center; margin-top: 64px; }

/* INVITATIONS SECTION */
.invitations { padding: 140px 32px; background: radial-gradient(ellipse at top right, var(--brand-wash), transparent 60%), var(--paper-warm); position: relative; overflow: hidden; }
.inv-wrap { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.inv-visual { position: relative; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--brand-deep), var(--brand-primary)); border-radius: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.inv-visual::before { content: ''; position: absolute; inset: 20px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; }
.inv-card { position: relative; z-index: 1; width: 85%; aspect-ratio: 3/4; background: #FAF7F0; border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 32px 24px; box-shadow: 0 24px 64px rgba(10,25,41,0.4); }
.inv-card-top { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: #A88947; font-weight: 500; }
.inv-card-mid { text-align: center; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.names { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: clamp(28px, 4vw, 48px); font-weight: 300; color: #1A1814; line-height: 1; }
.amp { font-family: 'Italianno', cursive; font-size: clamp(40px, 5vw, 64px); color: #C9A961; line-height: 0.8; }
.date { font-size: 11px; letter-spacing: 0.2em; color: #6B6660; margin-top: 12px; }
.inv-card-bot { display: flex; align-items: center; gap: 12px; }
.inv-card-bot span { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: #6B6660; }
.qr-box { width: 32px; height: 32px; background: #1A1814; border-radius: 3px; }
.inv-text h2 { font-family: var(--display); font-weight: 300; font-size: clamp(32px, 4.5vw, 56px); letter-spacing: -0.02em; line-height: 1.1; margin-top: 16px; }
.inv-text h2 em { font-style: italic; color: var(--brand-primary); }
.inv-text p { font-size: 16px; line-height: 1.7; color: var(--ink-mute); margin: 24px 0; }
.inv-features { margin: 0 0 32px; }
.inv-features li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: 14px; color: var(--ink-soft); }
.inv-features li::before { content: ''; flex-shrink: 0; margin-top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-primary); }

/* CTA STRIP */
.cta-strip { padding: 120px 32px; background: var(--ink); text-align: center; }
.cta-inner { max-width: 800px; margin: 0 auto; }
.cta-strip h2 { font-family: var(--display); font-weight: 300; font-size: clamp(40px, 6vw, 80px); letter-spacing: -0.02em; line-height: 1; color: white; margin-bottom: 24px; }
.cta-strip h2 em { font-style: italic; color: var(--brand-light); }
.cta-strip p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 40px; }

/* FOOTER */
.footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 80px 32px 0; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { font-family: var(--display); font-size: 28px; font-weight: 400; color: white; margin-bottom: 16px; }
.footer-tag { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer h5 { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: white; margin-bottom: 20px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer ul li a:hover { color: white; }
.footer ul li { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 12px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 12px; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-social { display: flex; gap: 16px; margin-top: 24px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: white; text-decoration: none; font-size: 12px; transition: background 0.2s; }
.footer-social a:hover { background: var(--brand-primary); }

/* PAGE HERO */
.page-hero { padding: 200px 32px 100px; background: radial-gradient(ellipse at top right, var(--brand-wash), transparent 60%), var(--paper); position: relative; overflow: hidden; }
.page-hero-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.page-hero-inner.center { grid-template-columns: 1fr; text-align: center; max-width: 900px; }
.page-hero h1 { font-family: var(--display); font-weight: 300; font-size: clamp(48px, 7vw, 96px); letter-spacing: -0.03em; line-height: 0.95; color: var(--ink); }
.page-hero h1 em { font-style: italic; color: var(--brand-primary); font-weight: 400; }
.page-hero .lede { font-size: 18px; line-height: 1.7; color: var(--ink-mute); max-width: 480px; }
.page-hero .breadcrumb { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 20px; }

/* ABOUT PAGE */
.story { padding: 120px 32px; background: var(--paper); }
.story-wrap { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.story-label { font-family: var(--display); font-style: italic; font-size: 22px; color: var(--brand-primary); position: sticky; top: 120px; }
.story-body p { font-size: 18px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 24px; }
.values { padding: 120px 32px; background: var(--paper-warm); }
.values-grid { max-width: var(--maxw); margin: 40px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-subtle); }
.value-card { background: white; padding: 48px 32px; }
.value-num { font-family: var(--display); font-size: 48px; font-weight: 300; color: var(--brand-light); line-height: 1; margin-bottom: 16px; }
.value-card h3 { font-family: var(--display); font-weight: 400; font-size: 22px; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--ink-mute); line-height: 1.7; }
.team { padding: 120px 32px; background: var(--paper); }
.team-grid { max-width: var(--maxw); margin: 64px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-card { text-align: center; }
.team-photo { width: 160px; height: 160px; border-radius: 50%; margin: 0 auto 24px; background: var(--brand-wash); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-family: var(--display); font-size: 22px; font-weight: 400; }
.team-card .role { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-primary); margin: 6px 0 12px; }
.team-card p { font-size: 14px; color: var(--ink-mute); line-height: 1.6; max-width: 280px; margin: 0 auto; }
.stats-bar { background: var(--ink); color: white; padding: 80px 32px; }
.stats-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-num { font-family: var(--display); font-size: clamp(48px, 6vw, 80px); font-weight: 300; color: var(--brand-light); line-height: 1; }
.stat-label { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 8px; }

/* SERVICES PAGE */
.svc-section { padding: 100px 32px; }
.svc-section:nth-child(odd) { background: var(--paper); }
.svc-section:nth-child(even) { background: var(--paper-warm); }
.svc-wrap { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.svc-wrap.reverse { direction: rtl; }
.svc-wrap.reverse > * { direction: ltr; }
.svc-content .num { font-family: var(--display); font-style: italic; font-size: 64px; font-weight: 300; color: var(--brand-light); line-height: 1; margin-bottom: 16px; }
.svc-content h2 { font-family: var(--display); font-weight: 300; font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 20px; }
.svc-content h2 em { font-style: italic; color: var(--brand-primary); }
.svc-content > p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 28px; max-width: 480px; }
.svc-list { list-style: none; margin: 24px 0 32px; }
.svc-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(43,107,170,0.1); font-size: 14px; color: var(--ink-soft); }
.svc-list li::before { content: ''; flex-shrink: 0; margin-top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-primary); }
.svc-meta { display: flex; gap: 32px; margin-top: 24px; flex-wrap: wrap; }
.svc-meta-item .label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.svc-meta-item .value { font-family: var(--display); font-size: 18px; font-weight: 400; color: var(--ink); }
.svc-img { aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; background: var(--brand-wash); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-cta { padding: 100px 32px; background: var(--brand-deep); text-align: center; }
.svc-cta h2 { font-family: var(--display); font-weight: 300; font-size: clamp(36px, 5vw, 64px); color: white; letter-spacing: -0.02em; margin-bottom: 16px; }
.svc-cta p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 40px; }

/* GALLERY PAGE */
.filter-bar { position: sticky; top: 72px; z-index: 50; background: rgba(250,251,252,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-subtle); padding: 20px 32px; }
.filter-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.filter-tab { padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; background: transparent; color: var(--ink-mute); border: 1px solid transparent; }
.filter-tab:hover { background: var(--brand-wash); color: var(--brand-deep); }
.filter-tab.active { background: var(--brand-deep); color: white; border-color: var(--brand-deep); }
.gallery-grid { max-width: 1400px; margin: 0 auto; padding: 40px 32px; columns: 4 240px; gap: 12px; }
.gallery-item { break-inside: avoid; margin-bottom: 12px; position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,25,41,0.85), transparent 50%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 20px; }
.gallery-item:hover .overlay { opacity: 1; }
.overlay-text .tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.overlay-text h4 { font-family: var(--display); font-size: 18px; font-weight: 400; color: white; margin-top: 4px; }
.lightbox { position: fixed; inset: 0; background: rgba(10,25,41,0.95); z-index: 999; display: none; align-items: center; justify-content: center; padding: 32px; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 4px; object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 24px; width: 48px; height: 48px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: white; font-size: 20px; cursor: pointer; display: grid; place-items: center; }

/* CONTACT PAGE */
.wa-hero { padding: 60px 32px 100px; background: var(--paper); text-align: center; }
.wa-hero-card { max-width: 720px; margin: 0 auto; background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); border-radius: 24px; padding: 56px 40px; position: relative; overflow: hidden; box-shadow: 0 24px 60px rgba(37,211,102,0.3); }
.wa-hero-card::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: rgba(255,255,255,0.08); border-radius: 50%; pointer-events: none; }
.wa-hero-card .wa-label { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(255,255,255,0.2); border-radius: 999px; color: white; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; position: relative; z-index: 1; }
.wa-hero-card h2 { font-family: var(--display); font-weight: 300; font-style: italic; font-size: clamp(28px, 4vw, 40px); color: white; line-height: 1.15; margin-bottom: 16px; position: relative; z-index: 1; }
.wa-hero-card p { color: rgba(255,255,255,0.9); font-size: 15px; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.wa-hero-btn { display: inline-flex; align-items: center; gap: 12px; padding: 18px 36px; background: white; color: #128C7E; border-radius: 999px; text-decoration: none; font-size: 15px; font-weight: 700; transition: transform 0.3s; position: relative; z-index: 1; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.wa-hero-btn:hover { transform: translateY(-3px); }
.wa-hero-btn svg { width: 22px; height: 22px; fill: #25D366; }
.wa-hero-card .reply-time { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.85); position: relative; z-index: 1; }
.wa-hero-card .reply-time::before { content: ''; color: #B6F4D1; margin-right: 6px; animation: blink 2s infinite; }

/* CONTACT FORM */
.contact-form-section { padding: 80px 32px 120px; background: var(--paper-warm); }
.contact-layout { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.contact-info h3 { font-family: var(--display); font-size: 28px; font-weight: 400; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-detail .icon { width: 40px; height: 40px; border-radius: 50%; background: var(--brand-wash); display: grid; place-items: center; flex-shrink: 0; color: var(--brand-deep); font-size: 16px; }
.contact-detail .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-mute); margin-bottom: 4px; }
.contact-detail .value { font-size: 15px; color: var(--ink); font-weight: 500; }
.contact-detail .value a { color: var(--brand-primary); text-decoration: none; }
.contact-detail .value a:hover { text-decoration: underline; }

/* SMART FORM */
.smart-form { background: white; border-radius: 16px; border: 1px solid var(--border-subtle); box-shadow: 0 8px 24px rgba(10,25,41,0.04); overflow: hidden; }
.form-progress { padding: 24px 32px; background: var(--paper-warm); border-bottom: 1px solid var(--border-subtle); display: flex; align-items: center; gap: 0; }
.progress-step { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--ink-mute); }
.progress-step .num { width: 24px; height: 24px; border-radius: 50%; background: var(--border-subtle); display: grid; place-items: center; font-size: 11px; font-weight: 600; color: var(--ink-mute); transition: all 0.3s; }
.progress-step.active .num { background: var(--brand-deep); color: white; }
.progress-step.done .num { background: var(--success); color: white; }
.progress-step.active { color: var(--brand-deep); }
.progress-connector { flex: 1; height: 1px; background: var(--border-subtle); margin: 0 8px; }
.form-body { padding: 40px 32px; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 { font-family: var(--display); font-size: 24px; font-weight: 400; margin-bottom: 8px; }
.form-step .sub { font-size: 14px; color: var(--ink-mute); margin-bottom: 32px; }
.service-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.svc-card { border: 2px solid var(--border-subtle); border-radius: 12px; padding: 24px; cursor: pointer; transition: all 0.2s; text-align: center; }
.svc-card:hover { border-color: var(--brand-mid); background: var(--brand-wash); }
.svc-card.selected { border-color: var(--brand-deep); background: var(--brand-wash); }
.svc-card .icon { font-size: 32px; margin-bottom: 12px; }
.svc-card h4 { font-family: var(--display); font-size: 18px; font-weight: 400; margin-bottom: 6px; }
.svc-card p { font-size: 13px; color: var(--ink-mute); }
.branch-q { margin-bottom: 24px; }
.branch-q label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 10px; color: var(--ink); }
.branch-q select, .branch-q input, .branch-q textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border-subtle); border-radius: 8px; font-family: var(--sans); font-size: 14px; color: var(--ink); background: var(--paper); transition: border-color 0.2s; }
.branch-q select:focus, .branch-q input:focus, .branch-q textarea:focus { outline: none; border-color: var(--brand-primary); }
.branch-q textarea { min-height: 100px; resize: vertical; }
.price-options { display: grid; gap: 12px; }
.price-option { border: 2px solid var(--border-subtle); border-radius: 10px; padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.2s; }
.price-option:hover { border-color: var(--brand-mid); }
.price-option.selected { border-color: var(--brand-deep); background: var(--brand-wash); }
.price-option .name { font-weight: 600; font-size: 15px; color: var(--ink); }
.price-option .desc { font-size: 13px; color: var(--ink-mute); margin-top: 2px; }
.price-option .price { font-family: var(--display); font-size: 22px; font-weight: 400; color: var(--brand-deep); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border-subtle); border-radius: 8px; font-family: var(--sans); font-size: 14px; color: var(--ink); background: var(--paper); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--brand-primary); }
.form-field textarea { min-height: 100px; resize: vertical; }
.form-nav { display: flex; justify-content: space-between; margin-top: 32px; }
.btn-next, .btn-prev, .btn-submit { padding: 14px 28px; border-radius: 999px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.3s; font-family: var(--sans); }
.btn-next, .btn-submit { background: var(--brand-deep); color: white; }
.btn-next:hover, .btn-submit:hover { background: var(--brand-primary); transform: translateY(-1px); }
.btn-prev { background: var(--paper-warm); color: var(--ink); border: 1px solid var(--border-subtle); }
.btn-prev:hover { background: var(--brand-wash); }
.result-screen { display: none; padding: 40px 32px; text-align: center; }
.result-screen.show { display: block; }
.score-circle { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 24px; display: grid; place-items: center; font-family: var(--display); font-size: 32px; font-weight: 300; }
.score-circle.hot { background: #FFF0F0; color: #E53E3E; }
.score-circle.warm { background: #FFF5E5; color: #E67E22; }
.score-circle.standard { background: var(--brand-wash); color: var(--brand-deep); }
.result-badge { display: inline-block; padding: 6px 16px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.badge-hot { background: #FFF0F0; color: #E53E3E; }
.badge-warm { background: #FFF5E5; color: #E67E22; }
.badge-standard { background: var(--brand-wash); color: var(--brand-deep); }
.result-screen h3 { font-family: var(--display); font-size: 28px; font-weight: 400; margin-bottom: 12px; }
.result-screen p { font-size: 15px; color: var(--ink-mute); max-width: 400px; margin: 0 auto 32px; }

/* INVITATIONS PAGE */
.inv-page-hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 100px 32px 60px; background: #F5F1E8; overflow: hidden; }
.inv-page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top, rgba(201,169,97,0.08), transparent 60%), radial-gradient(ellipse at bottom, rgba(216,123,110,0.05), transparent 50%); pointer-events: none; }
.studio-mark { position: fixed; top: 24px; left: 24px; z-index: 100; display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; background: rgba(245,241,232,0.85); backdrop-filter: blur(10px); border-radius: 999px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #1A1814; text-decoration: none; border: 1px solid rgba(26,24,20,0.08); }
.studio-mark .dot { width: 8px; height: 8px; border-radius: 50%; background: #C9A961; }
.hero-frame { position: relative; max-width: 720px; margin: 0 auto; padding: 80px 60px; }
.hero-frame::before, .hero-frame::after { content: ''; position: absolute; width: 60px; height: 60px; border: 1px solid #C9A961; }
.hero-frame::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.hero-frame::after { bottom: 0; right: 0; border-left: none; border-top: none; }
.hero-eyebrow-inv { font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: #A88947; margin-bottom: 32px; font-weight: 500; display: inline-flex; align-items: center; gap: 16px; }
.hero-eyebrow-inv::before, .hero-eyebrow-inv::after { content: ''; width: 32px; height: 1px; background: #C9A961; }
.hero-names { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; color: #1A1814; line-height: 0.95; }
.hero-names .name { display: block; font-size: clamp(56px, 12vw, 120px); font-style: italic; letter-spacing: -0.01em; }
.hero-names .amp { display: block; font-family: 'Italianno', cursive; font-size: clamp(64px, 14vw, 140px); color: #C9A961; line-height: 0.7; margin: 8px 0; }
.hero-tagline { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: clamp(18px, 2.5vw, 24px); color: #6B6660; margin-top: 32px; font-weight: 300; }
.hero-date-block { margin-top: 48px; display: inline-flex; align-items: center; gap: 28px; padding: 20px 32px; background: rgba(255,255,255,0.6); border: 1px solid #E5D5A8; border-radius: 4px; }
.date-cell { text-align: center; }
.date-cell .num { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; font-size: 32px; line-height: 1; color: #1A1814; }
.date-cell .lbl { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: #A88947; margin-top: 6px; font-weight: 500; }
.date-divider { width: 1px; height: 36px; background: #E5D5A8; }
.countdown { padding: 80px 32px; background: #1A1814; color: #F5F1E8; text-align: center; }
.countdown h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(24px, 3vw, 36px); color: #C9A961; margin-bottom: 48px; letter-spacing: 0.1em; text-transform: uppercase; }
.count-grid { display: flex; justify-content: center; gap: 60px; }
.count-cell .count-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(64px, 10vw, 100px); font-weight: 300; line-height: 1; color: #F5F1E8; }
.count-cell .count-lbl { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: #C9A961; margin-top: 8px; }
.rsvp-section { padding: 80px 32px; background: #FAF7F0; }
.rsvp-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.rsvp-inner h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(36px, 5vw, 56px); color: #1A1814; margin-bottom: 16px; }
.rsvp-inner p { color: #6B6660; font-size: 16px; margin-bottom: 40px; }
.rsvp-form { text-align: left; }
.rsvp-field { margin-bottom: 20px; }
.rsvp-field label { display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #6B6660; margin-bottom: 8px; }
.rsvp-field input, .rsvp-field select, .rsvp-field textarea { width: 100%; padding: 14px 18px; border: 1px solid #E5D5A8; border-radius: 4px; font-family: var(--sans); font-size: 14px; background: white; color: #1A1814; }
.rsvp-field input:focus, .rsvp-field select:focus, .rsvp-field textarea:focus { outline: none; border-color: #C9A961; }
.btn-rsvp { width: 100%; padding: 18px; background: #1A1814; color: #F5F1E8; border: none; border-radius: 4px; font-family: var(--display); font-size: 16px; font-weight: 400; font-style: italic; cursor: pointer; transition: background 0.2s; }
.btn-rsvp:hover { background: #C9A961; }
.details-section { padding: 80px 32px; background: #1A1814; color: #F5F1E8; }
.details-grid { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.detail-item { text-align: center; }
.detail-item .icon { font-size: 28px; margin-bottom: 16px; color: #C9A961; }
.detail-item h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; font-weight: 400; margin-bottom: 8px; color: #F5F1E8; }
.detail-item p { font-size: 14px; color: rgba(245,241,232,0.7); line-height: 1.6; }

/* INVITATION CREATE TOOL */
.topbar { background: var(--ink); color: white; padding: 14px 32px; display: flex; align-items: center; justify-content: space-between; }
.topbar-brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 18px; }
.topbar-brand .dot { width: 28px; height: 28px; background: var(--brand-primary); border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 11px; color: white; }
.topbar-tag { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.topbar a { color: var(--brand-light); font-size: 13px; text-decoration: none; }
.tool-wrap { max-width: 1100px; margin: 0 auto 80px; padding: 0 32px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.form-card { background: white; border-radius: 16px; border: 1px solid var(--border-subtle); box-shadow: 0 8px 24px rgba(10,25,41,0.04); overflow: hidden; }
.form-section { padding: 32px; border-bottom: 1px solid rgba(43,107,170,0.08); }
.form-section:last-of-type { border-bottom: none; }
.form-section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.form-section-num { width: 28px; height: 28px; border-radius: 50%; background: var(--brand-wash); color: var(--brand-deep); display: grid; place-items: center; font-size: 12px; font-weight: 600; flex-shrink: 0; }
.form-section-head h3 { font-size: 15px; font-weight: 600; }
.tool-field { margin-bottom: 16px; }
.tool-field label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.05em; color: var(--ink-mute); margin-bottom: 6px; }
.tool-field input, .tool-field textarea, .tool-field select { width: 100%; padding: 10px 14px; border: 1px solid var(--border-subtle); border-radius: 8px; font-family: var(--sans); font-size: 14px; color: var(--ink); background: var(--paper-warm); }
.tool-field input:focus, .tool-field textarea:focus, .tool-field select:focus { outline: none; border-color: var(--brand-primary); background: white; }
.tool-field textarea { min-height: 80px; resize: vertical; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.preview-card { background: white; border-radius: 12px; border: 1px solid var(--border-subtle); overflow: hidden; position: sticky; top: 24px; }
.preview-head { padding: 16px 20px; border-bottom: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: space-between; }
.preview-head span { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.preview-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.preview-frame { width: 100%; aspect-ratio: 9/16; background: #F5F1E8; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', Georgia, serif; text-align: center; padding: 32px; overflow: hidden; position: relative; }
.preview-names { font-size: 28px; font-style: italic; font-weight: 300; color: #1A1814; line-height: 1; }
.preview-amp { font-family: 'Italianno', cursive; font-size: 48px; color: #C9A961; line-height: 0.8; }
.preview-date { font-size: 11px; letter-spacing: 0.2em; color: #6B6660; margin-top: 12px; }
.preview-footer { padding: 16px 20px; }
.btn-generate { width: 100%; padding: 16px; background: var(--brand-deep); color: white; border: none; border-radius: 10px; font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.btn-generate:hover { background: var(--brand-primary); }

/* LEGAL PAGE */
.legal-layout { max-width: 1100px; margin: 0 auto; padding: 0 32px 120px; display: grid; grid-template-columns: 240px 1fr; gap: 64px; align-items: start; }
.legal-nav { position: sticky; top: 120px; }
.legal-nav h4 { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 16px; }
.legal-nav a { display: block; padding: 8px 0; font-size: 14px; color: var(--ink-mute); text-decoration: none; border-left: 2px solid transparent; padding-left: 12px; transition: all 0.2s; }
.legal-nav a:hover, .legal-nav a.active { color: var(--brand-deep); border-left-color: var(--brand-deep); }
.legal-content h2 { font-family: var(--display); font-size: 32px; font-weight: 300; margin: 60px 0 20px; padding-top: 40px; border-top: 1px solid var(--border-subtle); }
.legal-content h2:first-child { border-top: none; margin-top: 0; }
.legal-content h3 { font-size: 18px; font-weight: 600; margin: 32px 0 12px; color: var(--ink); }
.legal-content p { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { margin: 12px 0 20px 20px; }
.legal-content ul li { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 8px; list-style: disc; }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 32px; right: 32px; z-index: 200; display: flex; align-items: center; gap: 10px; padding: 14px 22px; background: var(--whatsapp); color: white; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 600; box-shadow: 0 8px 24px rgba(37,211,102,0.4); transition: transform 0.3s, box-shadow 0.3s; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,0.5); }
.wa-float svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }
.wa-float .pulse { position: absolute; top: -4px; right: -4px; width: 14px; height: 14px; border-radius: 50%; background: var(--error); border: 2px solid white; }
.wa-float .pulse::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: var(--error); animation: pulse-ring 2s infinite; opacity: 0.6; }

/* COOKIE CONSENT */
.cookie-bar { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 9998; width: calc(100% - 48px); max-width: 560px; background: var(--ink); color: white; border-radius: 16px; padding: 24px 28px; box-shadow: 0 8px 40px rgba(10,25,41,0.4); display: none; }
.cookie-bar.show { display: block; }
.cookie-bar h4 { font-family: var(--display); font-size: 18px; font-weight: 400; margin-bottom: 8px; }
.cookie-bar p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 20px; line-height: 1.6; }
.cookie-bar .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie { padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; font-family: var(--sans); }
.btn-accept { background: var(--brand-mid); color: white; }
.btn-accept:hover { background: var(--brand-primary); }
.btn-reject { background: rgba(255,255,255,0.1); color: white; }
.btn-reject:hover { background: rgba(255,255,255,0.2); }
.btn-customize { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); }
.btn-customize:hover { border-color: rgba(255,255,255,0.5); color: white; }
.cookie-toggles { margin-top: 20px; display: none; }
.cookie-toggles.open { display: block; }
.toggle-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.toggle-row:last-child { border-bottom: none; }
.toggle-label { font-size: 13px; font-weight: 500; }
.toggle-desc { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.toggle-switch { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: rgba(255,255,255,0.2); border-radius: 999px; transition: background 0.2s; cursor: pointer; }
.toggle-slider::before { content: ''; position: absolute; width: 16px; height: 16px; background: white; border-radius: 50%; top: 3px; left: 3px; transition: transform 0.2s; }
.toggle-switch input:checked + .toggle-slider { background: var(--brand-mid); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }
.cookie-reopen { position: fixed; bottom: 24px; left: 24px; z-index: 9997; display: none; width: 40px; height: 40px; background: var(--ink); border-radius: 50%; border: none; color: white; cursor: pointer; font-size: 16px; box-shadow: 0 4px 16px rgba(10,25,41,0.3); align-items: center; justify-content: center; }
.cookie-reopen.show { display: flex; }

/* MAINTENANCE MODE */
.maintenance-page { min-height: 100vh; background: var(--ink); display: flex; align-items: center; justify-content: center; text-align: center; padding: 32px; }
.maintenance-inner { color: white; max-width: 600px; }
.maintenance-inner h1 { font-family: var(--display); font-size: clamp(40px, 8vw, 80px); font-weight: 300; margin-bottom: 24px; }
.maintenance-inner p { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(6, 1fr); }
  .work-item:nth-child(1) { grid-column: span 6; }
  .work-item:nth-child(2) { grid-column: span 6; }
  .work-item:nth-child(3), .work-item:nth-child(4), .work-item:nth-child(5) { grid-column: span 2; }
  .inv-wrap { grid-template-columns: 1fr; gap: 48px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .story-wrap { grid-template-columns: 1fr; gap: 32px; }
  .story-label { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-wrap { grid-template-columns: 1fr; gap: 48px; }
  .svc-wrap.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .tool-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .work-item:nth-child(3), .work-item:nth-child(4), .work-item:nth-child(5) { grid-column: span 3; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 160px; }
  .details-grid { grid-template-columns: 1fr; }
  .count-grid { gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .form-progress { gap: 4px; }
  .progress-step span { display: none; }
  .filter-inner { flex-direction: column; gap: 12px; }
}
@media (max-width: 480px) {
  .nav { padding: 14px 20px; }
  .container { padding: 0 20px; }
  .services, .work, .invitations, .cta-strip { padding: 80px 20px; }
  .footer { padding: 60px 20px 0; }
  .gallery-grid { columns: 1; }
}
