/* ============================================================
   Southern Venue — v3
   Editorial · Premium · Playfair Display + DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */

:root {
  --white:      #ffffff;
  --off-white:  #f7f7f5;
  --surface:    #f2f2ef;
  --text:       #0f0f0f;
  --text-2:     #6b6b6b;
  --text-3:     #a0a0a0;
  --accent:     #1f5c3a;
  --accent-2:   #2d7a52;
  --accent-bg:  #eaf3ee;
  --gold:       #b8922a;
  --dark:       #0f0f0f;
  --dark-2:     #1a1a1a;
  --footer:     #080808;
  --border:     rgba(15,15,15,0.08);
  --border-dark:rgba(255,255,255,0.07);

  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);

  --max: 1200px;
  --nav-h: 56px;
}

/* ============================================================
   RESET
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--f-body); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--f-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5.2rem); font-weight: 400; line-height: 1.04; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-weight: 500; }

.display { font-family: var(--f-display); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

.eyebrow-green { color: var(--accent); }
.eyebrow-light { color: rgba(255,255,255,0.4); }

p {
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 80px;
}

.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.section-intro { max-width: 560px; margin: 0 auto 72px; text-align: center; }
.section-intro h2 { margin-bottom: 16px; }
.section-intro p { font-size: 15px; }

.section-intro-left { max-width: 560px; margin-bottom: 64px; }
.section-intro-left h2 { margin-bottom: 16px; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { opacity: 0.88; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-green { background: var(--accent); color: var(--white); }
.btn-green:hover { background: var(--accent-2); box-shadow: 0 8px 24px rgba(31,92,58,0.25); }

.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.btn-outline { background: transparent; color: var(--dark); border: 1px solid var(--border); }
.btn-outline:hover { border-color: rgba(15,15,15,0.25); background: rgba(15,15,15,0.02); }

.btn-outline-light { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); }
.btn-outline-light:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.35); }

.btn-outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); }

.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 9999;
  display: flex;
  align-items: center;
  padding: 0 48px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.dark {
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom-color: rgba(255,255,255,0.06);
}

.nav.light {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

.nav-logo { display: flex; align-items: center; transition: opacity 0.2s; }
.nav-logo:hover { opacity: 0.7; }
.nav-logo img { height: 32px; width: auto; }
.nav-logo-text {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav.dark .nav-logo-text { color: var(--white); }
.nav.light .nav-logo-text { color: var(--text); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 400;
  opacity: 0.7;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active { opacity: 1; }
.nav.dark .nav-link { color: var(--white); }
.nav.light .nav-link { color: var(--text); }

.nav-cta {
  height: 32px;
  padding: 0 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--f-body);
  transition: all 0.22s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.nav.dark .nav-cta { background: var(--white); color: var(--dark); }
.nav.dark .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.nav.light .nav-cta { background: var(--accent); color: var(--white); }
.nav.light .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
}
.burger-line {
  height: 1px;
  border-radius: 1px;
  transition: all 0.28s var(--ease);
  transform-origin: center;
}
.nav.dark .burger-line { background: var(--white); }
.nav.light .burger-line { background: var(--text); }
.burger.open .burger-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open .burger-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--footer);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link {
  font-family: var(--f-display);
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  opacity: 0.8;
  letter-spacing: -0.02em;
  padding: 8px 0;
  transition: opacity 0.2s;
}
.mobile-link:hover { opacity: 1; }
.mobile-cta { margin-top: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--footer);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 36px;
}

.footer-brand-logo { display: block; margin-bottom: 16px; }
.footer-brand-logo img { height: 34px; width: auto; }
.footer-brand-logo-text {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.65; max-width: 240px; }

.footer-col h5 {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.18s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.18); }
.footer-tag { font-size: 12px; color: rgba(255,255,255,0.12); font-style: italic; }

/* ============================================================
   HERO — VIDEO (dark pages)
   ============================================================ */

.hero-video-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  z-index: 1;
}

.hero-video-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ============================================================
   HERO — LIGHT (beige pages)
   ============================================================ */

.hero-light {
  background: var(--off-white);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  min-height: 48vh;
  display: flex;
  align-items: center;
}

.hero-light h1 { color: var(--text); }
.hero-light p { font-size: 16px; max-width: 520px; }

/* ============================================================
   HOME HERO
   ============================================================ */

.home-hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.home-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.4) 60%, rgba(31,92,58,0.08) 100%);
}

.home-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.home-hero-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}
.home-hero-tag span {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.home-hero h1 { color: var(--white); margin-bottom: 24px; }
.home-hero h1 em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.4); }

.home-hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 1.78;
  max-width: 440px;
  margin-bottom: 44px;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.25;
  z-index: 3;
  animation: hint 2.4s ease-in-out infinite;
}
.scroll-hint span { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); font-family: var(--f-body); }
.scroll-hint-line { width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent); }

@keyframes hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* Browser mockup */
.mockup {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.mockup-bar-url {
  flex: 1;
  margin-left: 12px;
  height: 20px;
  border-radius: 5px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.mockup-bar-url span { font-size: 10px; color: rgba(255,255,255,0.18); font-family: var(--f-body); }
.mockup-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.mock-strip { border-radius: 8px; overflow: hidden; }
.mock-hero-bg { height: 120px; background: linear-gradient(135deg, #0a1a0f 0%, rgba(31,92,58,0.4) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; gap: 6px; }
.mock-line { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.18); }
.mock-line.sm { height: 3px; background: rgba(255,255,255,0.1); }
.mock-line.btn { height: 22px; width: 90px; border-radius: 11px; background: rgba(31,92,58,0.5); margin-top: 6px; }
.mock-cards-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.mock-card { height: 50px; border-radius: 6px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; justify-content: center; padding: 0 8px; gap: 4px; }

/* ============================================================
   CARDS
   ============================================================ */

.card {
  border-radius: 16px;
  padding: 36px 28px;
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.07); }

.card-white {
  background: var(--white);
  border-color: var(--border);
}

.card-dark {
  background: var(--dark-2);
  border-color: rgba(255,255,255,0.05);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.card h3 { color: var(--text); margin-bottom: 10px; }
.card p { font-size: 13px; line-height: 1.65; }
.card ul { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.card ul li { font-size: 13px; color: var(--text-2); font-family: var(--f-body); font-weight: 300; padding-left: 14px; position: relative; }
.card ul li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-size: 10px; top: 3px; }

/* ============================================================
   STATS
   ============================================================ */

.stats-section { background: var(--dark); }
.stats-section h2 { color: var(--white); }
.stats-section p { color: rgba(255,255,255,0.42); }

.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.04); border-radius: 16px; overflow: hidden; margin: 64px 0 32px; }
.stat-cell { background: var(--dark); padding: 44px 36px; }
.stat-n { font-family: var(--f-display); font-size: clamp(2.6rem,4vw,4rem); font-weight: 400; color: var(--white); letter-spacing: -0.04em; line-height: 1; margin-bottom: 10px; }
.stat-n em { font-style: normal; color: var(--accent); font-size: 0.55em; vertical-align: super; }
.stat-l { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.4; }
.stats-note { font-size: 11px; color: rgba(255,255,255,0.14); text-align: center; font-family: var(--f-body); }

/* ============================================================
   PRICING
   ============================================================ */

.pricing-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 64px; align-items: stretch; }

.price-card {
  border-radius: 20px;
  padding: 40px 32px;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.07); }

.price-card.featured {
  background: var(--dark);
  border-color: transparent;
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-plan { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; font-family: var(--f-body); }
.price-card.featured .price-plan { color: rgba(255,255,255,0.35); }

.price-amount { font-family: var(--f-display); font-size: clamp(2.2rem,3.5vw,3rem); font-weight: 400; color: var(--text); letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; }
.price-card.featured .price-amount { color: var(--white); }

.price-timing { font-size: 12px; color: var(--text-3); margin-bottom: 28px; font-family: var(--f-body); }
.price-card.featured .price-timing { color: rgba(255,255,255,0.3); }

.price-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.price-card.featured .price-divider { background: rgba(255,255,255,0.07); }

.price-features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-feature { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-2); font-family: var(--f-body); font-weight: 300; }
.price-card.featured .price-feature { color: rgba(255,255,255,0.48); }
.price-check { width: 16px; height: 16px; border-radius: 50%; background: var(--accent-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.price-check svg { width: 8px; height: 8px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.price-card.featured .price-check { background: rgba(31,92,58,0.3); }
.price-card.featured .price-check svg { stroke: #52c487; }

/* ============================================================
   PROCESS
   ============================================================ */

.process-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 48px; margin-top: 72px; }
.process-step { display: flex; flex-direction: column; gap: 16px; }
.process-num { font-family: var(--f-display); font-size: clamp(3.5rem,5.5vw,5.5rem); font-weight: 400; color: rgba(15,15,15,0.06); line-height: 1; letter-spacing: -0.04em; }
.process-step h3 { font-size: 1.1rem; color: var(--text); font-weight: 500; font-family: var(--f-body); }
.process-step p { font-size: 13px; line-height: 1.65; }

/* ============================================================
   PORTFOLIO — IFRAME VIGNETTES
   ============================================================ */

.portfolio-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }

.filter-pill {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--f-body);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--off-white);
  color: var(--text-2);
  border: 1px solid var(--border);
}
.filter-pill.active, .filter-pill:hover { background: var(--dark); color: var(--white); border-color: transparent; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.portfolio-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.portfolio-item:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(0,0,0,0.12); }

.portfolio-frame-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--surface);
}

.portfolio-iframe {
  width: 200%;
  height: 200%;
  border: none;
  transform: scale(0.5);
  transform-origin: top left;
  pointer-events: none;
  transition: transform 8s linear;
}

.portfolio-item:hover .portfolio-iframe {
  transform: scale(0.5) translateY(-40%);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio-tags { display: flex; gap: 6px; }
.portfolio-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 3px 10px;
  border-radius: 100px;
}

.portfolio-info { padding: 20px 22px 22px; }
.portfolio-info h3 { font-size: 1rem; color: var(--text); margin-bottom: 5px; font-family: var(--f-display); font-weight: 500; }
.portfolio-info p { font-size: 12px; line-height: 1.55; }

/* ============================================================
   FAQ
   ============================================================ */

.faq-list { max-width: 700px; margin: 64px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; gap: 20px; }
.faq-q h3 { font-size: 1rem; font-weight: 500; color: var(--text); font-family: var(--f-body); letter-spacing: -0.01em; }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--off-white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; color: var(--text-2); transition: transform 0.28s var(--ease), background 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--dark); color: var(--white); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.38s var(--ease); }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a p { padding-bottom: 22px; font-size: 14px; line-height: 1.72; }

/* ============================================================
   FORMS
   ============================================================ */

.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.form-box-dark {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 44px 40px;
  backdrop-filter: blur(16px);
}

.form-box-light {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}

.form-2col-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-field label { font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--f-body); }
.form-box-dark .form-field label { color: rgba(255,255,255,0.35); }
.form-box-light .form-field label { color: var(--text-3); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-box-dark .form-field input,
.form-box-dark .form-field select,
.form-box-dark .form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.form-box-dark .form-field input:focus,
.form-box-dark .form-field select:focus,
.form-box-dark .form-field textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.07);
}
.form-box-dark .form-field select option { background: var(--dark); color: var(--white); }

.form-box-light .form-field input,
.form-box-light .form-field select,
.form-box-light .form-field textarea {
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text);
}
.form-box-light .form-field input:focus,
.form-box-light .form-field select:focus,
.form-box-light .form-field textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}

.form-field textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   CONTACT INFO
   ============================================================ */

.contact-details { display: flex; flex-direction: column; gap: 32px; }
.contact-detail .detail-label { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); font-family: var(--f-body); margin-bottom: 6px; }
.contact-detail a, .contact-detail span { font-size: 15px; color: var(--text); font-family: var(--f-body); font-weight: 300; transition: color 0.18s; }
.contact-detail a:hover { color: var(--accent); }

.social-row { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 9px; background: var(--off-white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.social-btn svg { width: 16px; height: 16px; stroke: var(--text-2); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.social-btn:hover { background: var(--accent); border-color: transparent; transform: translateY(-2px); }
.social-btn:hover svg { stroke: var(--white); }

/* ============================================================
   REASSURANCE
   ============================================================ */

.reassurance-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 80px; }
.reassurance-cell { padding: 32px 24px; border-radius: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); text-align: center; }
.reassurance-cell h3 { font-size: 1rem; color: var(--white); margin-bottom: 10px; font-family: var(--f-body); font-weight: 500; }
.reassurance-cell p { font-size: 13px; color: rgba(255,255,255,0.36); line-height: 1.6; }

/* ============================================================
   ABOUT
   ============================================================ */

.about-stats { display: flex; flex-direction: column; gap: 14px; }
.about-stat { padding: 26px 30px; border-radius: 14px; background: var(--off-white); border: 1px solid var(--border); }
.about-stat .n { font-family: var(--f-display); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 400; color: var(--accent); letter-spacing: -0.04em; line-height: 1; margin-bottom: 5px; }
.about-stat .l { font-size: 13px; color: var(--text-3); font-family: var(--f-body); }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 64px; }
.value-cell { padding: 34px 26px; border-radius: 16px; background: var(--white); border: 1px solid var(--border); transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease); }
.value-cell:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.06); }
.value-cell h3 { font-size: 1.05rem; color: var(--text); margin-bottom: 10px; font-family: var(--f-body); font-weight: 500; }
.value-cell p { font-size: 13px; line-height: 1.65; }
.value-num { font-family: var(--f-display); font-size: 2.2rem; font-weight: 400; color: var(--accent-bg); letter-spacing: -0.04em; margin-bottom: 16px; line-height: 1; }

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section { background: var(--dark); text-align: center; }
.cta-section h2 { color: var(--white); max-width: 580px; margin: 0 auto 18px; }
.cta-section p { color: rgba(255,255,255,0.4); font-size: 15px; max-width: 440px; margin: 0 auto 44px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0ms; }
.d2 { transition-delay: 100ms; }
.d3 { transition-delay: 200ms; }
.d4 { transition-delay: 300ms; }
.d5 { transition-delay: 400ms; }
.d6 { transition-delay: 500ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1100px) {
  .wrap { padding: 0 48px; }
  .section { padding: 100px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 56px; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-row { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .process-row { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .form-2col { grid-template-columns: 1fr; gap: 56px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav { padding: 0 24px; }
  .home-hero-content { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 767px) {
  .wrap { padding: 0 20px; }
  .section { padding: 80px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 28px 18px; }
  .process-row { grid-template-columns: 1fr; gap: 28px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .form-2col-fields { grid-template-columns: 1fr; }
  .form-box-dark, .form-box-light { padding: 28px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .reassurance-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 60px 0 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .burger { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .home-hero-content { grid-template-columns: 1fr; }
  .home-hero .mockup { display: none; }
  .hero-light { padding: calc(var(--nav-h) + 48px) 0 48px; }
  .hero-video-section { min-height: 60vh; }
}
