/*
Theme Name: NessLek Deluxe
Theme URI: https://nesslek.com.tn
Author: NessLek 360°
Author URI: https://nesslek.com.tn
Description: A bespoke luxury theme for NessLek 360° — the 360° venture acceleration agency. Fully editable via the WordPress Customizer and Custom Post Types. No page-builder plugins required. Navy, gold, and Cinzel brand system with premium typography, generous spacing, and refined motion.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nesslek-deluxe
Tags: business, portfolio, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/

/* ==========================================================================
   NessLek Deluxe — Luxury Design System
   All colors are also mirrored as Customizer defaults in inc/customizer.php
   ========================================================================== */

:root {
  /* Brand palette */
  --navy: #02133e;
  --navy-deep: #010c28;
  --navy-light: #0a2050;
  --gold: #e6a817;
  --gold-bright: #f0b832;
  --gold-deep: #c8901a;
  --red: #990a09;
  --white: #ffffff;
  --cream: #faf7f0;
  --grey-50: #f7f8fa;
  --grey-100: #eef0f4;
  --grey-200: #dde1e9;
  --grey-400: #9aa3b2;
  --grey-600: #5a6478;
  --grey-700: #404a5c;
  --grey-900: #1a2030;

  /* Luxe tokens */
  --gold-gradient: linear-gradient(135deg, #f0b832 0%, #e6a817 45%, #c8901a 100%);
  --navy-gradient: linear-gradient(160deg, #0a2050 0%, #02133e 55%, #010c28 100%);
  --gold-line: linear-gradient(90deg, transparent, var(--gold), transparent);

  --shadow-sm: 0 2px 12px rgba(2, 19, 62, 0.06);
  --shadow-md: 0 12px 40px rgba(2, 19, 62, 0.10);
  --shadow-lg: 0 30px 80px rgba(2, 19, 62, 0.16);
  --shadow-gold: 0 12px 40px rgba(230, 168, 23, 0.30);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1240px;
  --container-narrow: 820px;
  --radius: 4px;
  --radius-lg: 8px;

  /* Fonts (loaded via Google Fonts in functions.php) */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-head: 'Poppins', -apple-system, sans-serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ==========================================================================
   Typography — Luxury editorial system
   Headings use Cormorant Garamond (high-contrast serif) for an haute,
   editorial feel; Poppins is reserved for eyebrows, nav, and UI labels.
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.display-font { font-family: var(--font-display); letter-spacing: 0; font-weight: 600; }
.ui-font { font-family: var(--font-head); }

h1 { font-size: clamp(3rem, 6.5vw, 5.75rem); font-weight: 500; letter-spacing: -0.01em; }
h2 { font-size: clamp(2.25rem, 4.5vw, 3.6rem); font-weight: 500; }
h3 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }

/* Italic accent for select display words */
.in-italic { font-style: italic; font-weight: 500; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-block;
  position: relative;
  padding-left: 3.75rem;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2.75rem; height: 1px;
  background: var(--gold);
}
.eyebrow.centered { padding-left: 0; }
.eyebrow.centered::before { display: none; }
.eyebrow.centered::after {
  content: '';
  display: block;
  width: 2.75rem; height: 1px;
  background: var(--gold);
  margin: 0.75rem auto 0;
}

.text-gold { color: var(--gold-deep); }
.text-white { color: var(--white); }

/* ==========================================================================
   Layout
   ========================================================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 2rem; }
.section { padding: 8rem 0; position: relative; }
.section-sm { padding: 5rem 0; }
.section-navy { background: var(--navy-gradient); color: rgba(255,255,255,0.85); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4, .section-navy h5 { color: var(--white); }
.section-cream { background: var(--cream); position: relative; }
/* Subtle paper-grain texture on cream sections for material richness */
.section-cream::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
}
.section-cream > * { position: relative; z-index: 1; }
.section-grey { background: var(--grey-50); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 4.5rem; }
.section-head p { color: var(--grey-600); font-size: 1.15rem; margin-top: 1.25rem; line-height: 1.8; }
.section-navy .section-head p { color: rgba(255,255,255,0.75); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.5s var(--ease-luxe);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-gradient);
  color: var(--navy) !important;
  box-shadow: 0 8px 24px rgba(230, 168, 23, 0.25);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); color: var(--navy) !important; }
.btn-outline {
  background: transparent;
  color: var(--navy) !important;
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy) !important; transform: translateY(-3px); }
.btn-outline-white {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy) !important; border-color: var(--white); }
.btn-lg { padding: 1.35rem 3.25rem; font-size: 0.85rem; }

/* Gold shimmer sweep on hover */
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.btn-gold:hover::after { left: 130%; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.site-header.scrolled {
  padding: 0.85rem 0;
  background: rgba(2, 19, 62, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.site-logo img { height: 52px; width: auto; transition: height 0.4s var(--ease); }
.site-header.scrolled .site-logo img { height: 42px; }

.main-nav { display: flex; align-items: center; }
.main-nav ul.menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav ul.menu > li { position: relative; list-style: none; }
/* margin fallback for browsers without flex-gap support */
.main-nav ul.menu > li + li { margin-left: 2.25rem; }
.main-nav ul.menu { gap: 0; }
.main-nav a {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.3rem 0;
  display: inline-block;
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-bright); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

/* dropdown submenu */
.main-nav .menu-item-has-children { position: relative; }
/* invisible bridge so the dropdown doesn't close when moving cursor down */
.main-nav .menu-item-has-children::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 16px;
}
.main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--navy);
  min-width: 230px;
  padding: 0.6rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 2px solid var(--gold);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 100;
}
.main-nav .menu-item-has-children:hover .sub-menu,
.main-nav .menu-item-has-children:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.main-nav .sub-menu li { display: block; list-style: none; }
.main-nav .sub-menu a { display: block; padding: 0.65rem 1.5rem; font-size: 0.88rem; white-space: nowrap; }
.main-nav .sub-menu a::after { display: none; }
.main-nav .sub-menu a:hover { background: rgba(230,168,23,0.12); color: var(--gold-bright); padding-left: 1.85rem; }

.header-cta { display: flex; align-items: center; gap: 1.25rem; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; z-index: 1100; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--white); transition: all 0.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); }

/* ==========================================================================
   Hero — The Signature
   Deep navy lacquer, an oversized ghosted "360°" serif watermark,
   fine gold "thread" lines echoing the logo's network motif, and a
   slow ambient gold wash. Restraint everywhere else keeps this the star.
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--navy-gradient);
  overflow: hidden;
  padding: 9rem 0 5rem;
}
/* Ambient gold wash — soft, singular, top-right */
.hero::before {
  content: '';
  position: absolute;
  top: -25%; right: -15%;
  width: 850px; height: 850px;
  background: radial-gradient(circle, rgba(230,168,23,0.16) 0%, transparent 62%);
  filter: blur(80px);
  animation: heroGlow 16s ease-in-out infinite;
}
/* Oversized ghosted serif watermark */
.hero::after {
  content: '360°';
  position: absolute;
  right: -2%; bottom: -8%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18rem, 38vw, 44rem);
  line-height: 0.7;
  color: rgba(230, 168, 23, 0.05);
  pointer-events: none;
  z-index: 1;
  letter-spacing: -0.04em;
}
@keyframes heroGlow { 0%,100% { transform: translate(0,0) scale(1); opacity: 0.9; } 50% { transform: translate(-40px,30px) scale(1.08); opacity: 1; } }

/* Fine gold thread lines — the network motif */
.hero-threads { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5; }
.hero-threads .thread {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230,168,23,0.5), transparent);
  transform-origin: left center;
  animation: threadPulse 8s ease-in-out infinite;
}
.hero-threads .thread:nth-child(1) { top: 28%; left: 5%; width: 38%; transform: rotate(-8deg); animation-delay: 0s; }
.hero-threads .thread:nth-child(2) { top: 64%; left: 8%; width: 30%; transform: rotate(6deg); animation-delay: 1.5s; }
.hero-threads .thread:nth-child(3) { top: 46%; left: 2%; width: 22%; transform: rotate(-3deg); animation-delay: 3s; }
.hero-threads .node {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(230,168,23,0.8);
  animation: nodePulse 4s ease-in-out infinite;
}
.hero-threads .node:nth-child(4) { top: calc(28% - 3px); left: 43%; animation-delay: 0.5s; }
.hero-threads .node:nth-child(5) { top: calc(64% - 3px); left: 38%; animation-delay: 2s; }
.hero-threads .node:nth-child(6) { top: calc(46% - 3px); left: 24%; animation-delay: 3.5s; }
@keyframes threadPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 0.8; } }
@keyframes nodePulse { 0%,100% { opacity: 0.4; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }

.hero-inner { position: relative; z-index: 3; max-width: 940px; }
.hero .eyebrow { color: var(--gold-bright); }
.hero h1 { color: var(--white); margin-bottom: 2rem; font-weight: 500; }
.hero h1 .accent {
  display: block;
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  font-weight: 500;
  margin-top: 0.25rem;
}
.hero-sub { font-family: var(--font-body); font-size: 1.2rem; color: rgba(255,255,255,0.78); max-width: 600px; margin-bottom: 2.75rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* decorative gold frame corners — thinner, more refined */
.hero-frame { position: absolute; z-index: 2; pointer-events: none; }
.hero-frame.tr { top: 7.5rem; right: 2.5rem; width: 90px; height: 90px; border-top: 1px solid rgba(230,168,23,0.45); border-right: 1px solid rgba(230,168,23,0.45); }
.hero-frame.bl { bottom: 3.5rem; left: 2.5rem; width: 90px; height: 90px; border-bottom: 1px solid rgba(230,168,23,0.45); border-left: 1px solid rgba(230,168,23,0.45); }

/* scroll cue */
.scroll-cue { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,0.45); font-family: var(--font-head); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.85rem; }
.scroll-cue .line { width: 1px; height: 56px; background: linear-gradient(180deg, var(--gold), transparent); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ==========================================================================
   Pillars (CPT grid)
   ========================================================================== */
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.pillar-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.6s var(--ease-luxe);
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-luxe);
}
/* Refined gold corner bracket that draws on hover */
.pillar-card::after {
  content: '';
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 0; height: 0;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0;
  transition: all 0.6s var(--ease-luxe);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--grey-100); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover::after { width: 28px; height: 28px; opacity: 0.7; }
.pillar-letter {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 500;
  font-style: italic;
  line-height: 0.9;
  color: var(--navy);
  -webkit-text-stroke: 0;
  margin-bottom: 1.25rem;
  display: block;
  position: relative;
}
.pillar-letter::after {
  content: '';
  position: absolute;
  left: 0.15em; bottom: 0.18em;
  width: 2.5rem; height: 1px;
  background: var(--gold);
}
.pillar-card h3 { margin-bottom: 1rem; font-size: 1.85rem; }
.pillar-card p { color: var(--grey-600); margin-bottom: 1.5rem; font-family: var(--font-body); font-size: 0.98rem; line-height: 1.7; }
.pillar-services { display: flex; flex-direction: column; gap: 0.7rem; padding-top: 1.75rem; border-top: 1px solid var(--grey-100); }
.pillar-services li { display: flex; align-items: center; gap: 0.85rem; font-size: 0.92rem; color: var(--navy); font-weight: 500; font-family: var(--font-body); }
.pillar-services li::before { content: ''; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; margin-right: 0.15rem; }

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; padding: 1rem; position: relative; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(230,168,23,0.25); }
.stat-num { font-family: var(--font-display); font-size: clamp(2.5rem,4vw,3.5rem); font-weight: 700; background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat-label { font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.75rem; font-family: var(--font-head); }

/* ==========================================================================
   Portfolio (CPT grid)
   ========================================================================== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-luxe); }
.portfolio-card:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(2,19,62,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 0.5rem; }
.portfolio-overlay h4 { color: var(--white); font-size: 1.25rem; }

/* ==========================================================================
   Gallery (CPT / Customizer images)
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }

/* ==========================================================================
   Team (CPT)
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; max-width: 880px; margin: 0 auto; }
.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.5s var(--ease-luxe); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo { height: 380px; background: var(--navy-gradient); position: relative; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; }
.team-photo img { height: 100%; width: auto; object-fit: contain; object-position: bottom center; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }
.team-info { padding: 2rem; }
.team-name { font-size: 1.5rem; margin-bottom: 0.25rem; }
.team-role { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); padding-bottom: 1rem; border-bottom: 1px solid var(--grey-100); margin-bottom: 1rem; display: inline-block; }
.team-bio { color: var(--grey-600); font-size: 0.92rem; }

/* ==========================================================================
   Contact form (native, no plugin)
   ========================================================================== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info-block h3 { margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius); background: var(--gold-gradient); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-detail-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-400); font-weight: 600; margin-bottom: 0.2rem; }
.contact-detail-value { color: var(--navy); font-weight: 500; }
.section-navy .contact-detail-value { color: var(--white); }
.section-navy .contact-detail-label { color: rgba(255,255,255,0.6); }

.contact-form { background: var(--white); padding: 2.75rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-size: 0.85rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.form-field input, .form-field select, .form-field textarea {
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  background: var(--white);
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(230,168,23,0.15);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-notice { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: 0.9rem; }
.form-notice.success { background: rgba(46,204,113,0.12); color: #1a8a4a; border: 1px solid rgba(46,204,113,0.3); }
.form-notice.error { background: rgba(153,10,9,0.08); color: var(--red); border: 1px solid rgba(153,10,9,0.25); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 5rem 0 2rem; position: relative; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gold-line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand img { height: 50px; margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.92rem; line-height: 1.8; max-width: 320px; }
.footer-col h5 { color: var(--white); font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-col ul a:hover { color: var(--gold-bright); padding-left: 0.3rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.3s var(--ease); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,0.7); margin-left: 1.5rem; }
.footer-bottom a:hover { color: var(--gold-bright); }
.footer-version { text-align: center; margin-top: 1.75rem; }
.footer-version span {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  position: relative;
  display: inline-block;
  padding: 0 1.5rem;
}
.footer-version span::before,
.footer-version span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1rem; height: 1px;
  background: rgba(230,168,23,0.4);
}
.footer-version span::before { left: -0.5rem; }
.footer-version span::after { right: -0.5rem; }

/* ==========================================================================
   WhatsApp float
   ========================================================================== */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 8px 30px rgba(37,211,102,0.4); z-index: 999; transition: transform 0.3s var(--ease); }
.wa-float:hover { transform: scale(1.1) translateY(-3px); }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero { background: var(--navy-gradient); padding: 11rem 0 5rem; position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(230,168,23,0.15) 0%, transparent 65%); filter: blur(70px); }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero h1 .accent { background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; font-family: var(--font-display); }
.page-hero-sub { color: rgba(255,255,255,0.78); font-family: var(--font-body); font-size: 1.15rem; line-height: 1.75; max-width: 620px; margin: 0 auto; }

/* ==========================================================================
   Specialist Offerings (Services page)
   ========================================================================== */
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.offering-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.6s var(--ease-luxe);
}
.offering-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-luxe);
}
.offering-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offering-card:hover::before { transform: scaleX(1); }
.offering-index {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}
.offering-card h3 { font-size: 1.55rem; margin-bottom: 1rem; line-height: 1.2; }
.offering-card p { color: var(--grey-600); font-family: var(--font-body); font-size: 0.96rem; line-height: 1.7; margin-bottom: 1.5rem; }
.offering-link { font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); }
.offering-link:hover { color: var(--navy); }

/* ==========================================================================
   Steps & feature grids (Startup Act, Print Studio, VisNess how-it-works)
   ========================================================================== */

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.step-card { text-align: center; }
.step-num { font-family: var(--font-display); font-style: italic; font-size: 3.5rem; font-weight: 500; color: var(--gold-deep); line-height: 1; margin-bottom: 1rem; }
.step-card h4 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.step-card p { color: var(--grey-600); font-family: var(--font-body); font-size: 0.96rem; line-height: 1.7; }

.vfeatures-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.vfeature { background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius-lg); padding: 2.5rem; transition: all 0.5s var(--ease-luxe); position: relative; }
.vfeature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vfeature h4 { font-size: 1.4rem; margin-bottom: 0.75rem; display: flex; align-items: baseline; gap: 0.75rem; }
.vfeature h4::before { content: ''; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.vfeature p { color: var(--grey-600); font-family: var(--font-body); font-size: 0.96rem; line-height: 1.7; }

/* ==========================================================================
   Clients & Partners logo strip
   ========================================================================== */
.logo-section { background: var(--white); padding: 4rem 0; }
.logo-section-alt { background: var(--grey-50); }
.logo-section-title {
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 2.75rem;
}
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
}
.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: opacity 0.4s var(--ease-luxe), filter 0.4s var(--ease-luxe), transform 0.4s var(--ease-luxe);
}
.logo-item img {
  max-height: 56px;
  width: auto;
  max-width: 170px;
  height: auto;
  object-fit: contain;
  display: block;
}
.logo-item:hover { opacity: 1; filter: grayscale(0%); transform: translateY(-3px); }

@media (max-width: 768px) {
  .logo-strip { gap: 2.25rem; }
  .logo-item, .logo-item img { height: 42px; max-height: 42px; }
}

/* ==========================================================================
   Packs — pricing grid
   ========================================================================== */
.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: stretch; }
.pack-card {
  background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem; position: relative; display: flex; flex-direction: column;
  transition: all 0.5s var(--ease-luxe);
}
.pack-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pack-featured {
  background: var(--navy-gradient); border-color: transparent; color: rgba(255,255,255,0.85);
  box-shadow: 0 30px 70px rgba(2,19,62,0.35), 0 0 0 1px rgba(230,168,23,0.4);
  transform: scale(1.03);
}
.pack-featured:hover { transform: scale(1.03) translateY(-6px); }
.pack-featured .pack-name, .pack-featured .pack-price-num { color: #fff; }
.pack-featured .pack-tagline { color: var(--gold-bright); }
.pack-featured .pack-features li { color: rgba(255,255,255,0.85); }
.pack-featured .pack-features li::before { color: var(--gold-bright); }
.pack-featured .pack-price-period { color: rgba(255,255,255,0.6); }
.pack-badge {
  position: absolute; top: -1px; right: 1.75rem; transform: translateY(-50%);
  background: var(--gold-gradient); color: var(--navy);
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 100px;
  box-shadow: 0 6px 16px rgba(230,168,23,0.4);
}
.pack-emoji { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.pack-name { font-size: 1.9rem; margin-bottom: 0.5rem; }
.pack-tagline { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--gold-deep); margin-bottom: 1.5rem; }
.pack-price { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--grey-100); }
.pack-featured .pack-price { border-color: rgba(255,255,255,0.15); }
.pack-price-num { font-family: var(--font-display); font-size: 2.75rem; font-weight: 600; color: var(--navy); }
.pack-price-period { font-family: var(--font-head); font-size: 0.9rem; color: var(--grey-500); }
.pack-intro { font-family: var(--font-body); font-size: 0.92rem; color: var(--grey-600); margin-bottom: 1.25rem; }
.pack-features { list-style: none; margin: 0 0 2rem; padding: 0; flex-grow: 1; }
.pack-features li { display: flex; align-items: flex-start; gap: 0.7rem; font-family: var(--font-body); font-size: 0.92rem; line-height: 1.6; color: var(--grey-700); padding: 0.45rem 0; }
.pack-features li::before { content: '✓'; color: var(--gold-deep); font-weight: 700; flex-shrink: 0; }

@media (max-width: 980px) { .packs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } .pack-featured { transform: none; } .pack-featured:hover { transform: translateY(-6px); } }

/* ==========================================================================
   Blog — listing, cards, post layout (SEO content)
   ========================================================================== */
.blog-filter { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 3.5rem; }
.blog-filter a {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--grey-600);
  padding: 0.55rem 1.4rem; border: 1px solid var(--grey-200); border-radius: 100px;
  transition: all 0.4s var(--ease-luxe);
}
.blog-filter a:hover { border-color: var(--gold); color: var(--navy); }
.blog-filter a.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: all 0.5s var(--ease-luxe);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-media { display: block; aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--navy-gradient); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-luxe); }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: rgba(230,168,23,0.4); }
.blog-card-body { padding: 1.85rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 0.85rem; font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 0.85rem; }
.blog-card-cat { color: var(--gold-deep); font-weight: 600; }
.blog-card h3 { font-size: 1.45rem; line-height: 1.25; margin-bottom: 0.85rem; }
.blog-card h3 a { color: var(--navy); transition: color 0.3s; }
.blog-card h3 a:hover { color: var(--gold-deep); }
.blog-card p { color: var(--grey-600); font-family: var(--font-body); font-size: 0.94rem; line-height: 1.7; margin-bottom: 1.25rem; flex-grow: 1; }
.blog-card-link { font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-deep); margin-top: auto; }
.blog-card-link:hover { color: var(--navy); }

/* Post meta in hero */
.post-meta { display: flex; align-items: center; justify-content: center; gap: 0.85rem; margin-top: 1.25rem; font-family: var(--font-head); font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.post-meta .dot { color: var(--gold); }

/* Feature image */
.post-feature { margin: 0 auto 3.5rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); max-width: 100%; }

/* Editorial content typography — readable, luxury, SEO-friendly */
.entry-content { font-family: var(--font-body); font-size: 1.12rem; line-height: 1.9; color: var(--grey-700); max-width: 720px; margin: 0 auto; }
.entry-content > * { margin-bottom: 1.5rem; }
.entry-content h2 { font-family: var(--font-display); font-size: 2.1rem; color: var(--navy); margin: 3rem 0 1.25rem; line-height: 1.2; }
.entry-content h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); margin: 2.5rem 0 1rem; }
.entry-content h4 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin: 2rem 0 0.75rem; }
.entry-content p { margin-bottom: 1.5rem; }
.entry-content a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--navy); }
.entry-content ul, .entry-content ol { margin: 0 0 1.5rem 1.5rem; }
.entry-content li { margin-bottom: 0.6rem; padding-left: 0.5rem; }
.entry-content ul li::marker { color: var(--gold); }
.entry-content ol li::marker { color: var(--gold-deep); font-family: var(--font-display); font-style: italic; }
.entry-content blockquote {
  border-left: 3px solid var(--gold); padding: 0.5rem 0 0.5rem 2rem; margin: 2.5rem 0;
  font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.5; color: var(--navy);
}
.entry-content img { border-radius: var(--radius); max-width: 100%; height: auto; }
.entry-content figcaption { font-size: 0.85rem; color: var(--grey-500); text-align: center; margin-top: 0.75rem; }
.entry-content code { background: var(--grey-100); padding: 0.15rem 0.45rem; border-radius: 4px; font-size: 0.9em; }
.entry-content pre { background: var(--navy); color: #fff; padding: 1.5rem; border-radius: var(--radius); overflow-x: auto; }
.entry-content hr { border: 0; height: 1px; background: var(--grey-200); margin: 3rem 0; }

/* Tags */
.post-tags { max-width: 720px; margin: 3rem auto 0; display: flex; flex-wrap: wrap; gap: 0.65rem; padding-top: 2rem; border-top: 1px solid var(--grey-100); }
.post-tags a { font-family: var(--font-head); font-size: 0.8rem; color: var(--grey-600); background: var(--grey-50); padding: 0.4rem 0.95rem; border-radius: 100px; transition: all 0.3s; }
.post-tags a:hover { background: var(--gold); color: var(--navy); }

/* Pagination */
.blog-pagination { margin-top: 4rem; }
.blog-pagination .nav-links { display: flex; justify-content: center; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.blog-pagination a, .blog-pagination span {
  font-family: var(--font-head); font-size: 0.9rem; min-width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 0.85rem;
  border: 1px solid var(--grey-200); border-radius: var(--radius); color: var(--navy); transition: all 0.3s;
}
.blog-pagination a:hover { border-color: var(--gold); color: var(--gold-deep); }
.blog-pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   About page
   ========================================================================== */
.about-lead { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem); font-style: italic; line-height: 1.5; color: var(--navy); margin-bottom: 2.5rem; }
.about-body p { font-family: var(--font-body); color: var(--grey-700); font-size: 1.08rem; line-height: 1.9; margin-bottom: 1.5rem; }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mvv-card { background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius-lg); padding: 3rem 2.5rem; position: relative; transition: all 0.5s var(--ease-luxe); }
.mvv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mvv-mark { font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--gold-deep); display: block; margin-bottom: 1rem; }
.mvv-card h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.mvv-card p { color: var(--grey-600); font-family: var(--font-body); font-size: 0.98rem; line-height: 1.75; }

/* ==========================================================================
   Contact map
   ========================================================================== */
.contact-map { margin-top: 4rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--grey-100); line-height: 0; }
.contact-map iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-body { font-family: var(--font-body); }
.legal-meta { font-size: 0.85rem; color: var(--grey-400); font-style: italic; padding-bottom: 1.5rem; margin-bottom: 2rem; border-bottom: 1px solid var(--grey-100); }
.legal-lead { font-size: 1.15rem; line-height: 1.8; color: var(--grey-700); margin-bottom: 2.5rem; }
.legal-body h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin: 2.5rem 0 0.85rem; }
.legal-body p { color: var(--grey-700); line-height: 1.85; font-size: 1rem; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 640px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 0.5rem; justify-content: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--gold-bright); }

/* ==========================================================================
   Single post / page content
   ========================================================================== */
.entry-content { max-width: var(--container-narrow); margin: 0 auto; }
.entry-content p { color: var(--grey-700); font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.5rem; }
.entry-content h2 { margin: 2.5rem 0 1rem; }
.entry-content h3 { margin: 2rem 0 0.75rem; }
.entry-content ul, .entry-content ol { margin: 0 0 1.5rem 1.5rem; }
.entry-content li { margin-bottom: 0.5rem; color: var(--grey-700); }
.entry-content img { border-radius: var(--radius-lg); margin: 2rem 0; }
.entry-content blockquote { border-left: 3px solid var(--gold); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; color: var(--grey-600); }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .pillars-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .stat:nth-child(2)::after { display: none; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 360px;
    height: 100vh;
    background: var(--navy);
    transition: right 0.4s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
    overflow-y: auto;
    padding: 6rem 0 2rem;
  }
  .main-nav.open { right: 0; }
  .main-nav ul.menu {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    width: 100%;
  }
  .main-nav ul.menu > li + li { margin-left: 0; margin-top: 1.5rem; }
  .main-nav ul.menu > li { width: 100%; text-align: center; }
  .main-nav a { font-size: 1.1rem; }
  .main-nav .menu-item-has-children::after { display: none; }
  .main-nav .sub-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: rgba(255,255,255,0.04); box-shadow: none; border: none;
    border-top: 1px solid rgba(230,168,23,0.2);
    padding: 0.75rem 0; margin-top: 1rem; text-align: center; min-width: 0;
  }
  .main-nav .sub-menu a { font-size: 0.95rem; color: rgba(255,255,255,0.8); }
  .header-cta .btn { display: none; }
  .pillars-grid, .portfolio-grid, .team-grid,
  .offerings-grid, .vfeatures-grid, .steps-grid, .mvv-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin: 0 0.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Tablet: 3-column grids drop to 2 columns before stacking */
@media (min-width: 769px) and (max-width: 1024px) {
  .offerings-grid, .steps-grid, .mvv-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
