/* =============================================================
   DEVORA WEB SOLUTIONS — Design System
   Luxury / Professional · Navy + Gold on Cream
   ============================================================= */

:root {
  --navy: #0B1B2B;
  --navy-2: #142E4A;
  --navy-3: #1C3A5E;
  --gold: #C6A15B;
  --gold-light: #E8D5A8;
  --gold-dark: #A9803F;
  --cream: #FAF7F2;
  --cream-2: #F2EDE3;
  --ink: #1B1F23;
  --ink-soft: #5B6570;
  --line: #E7E2D9;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(11, 27, 43, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 27, 43, 0.16);
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin: 0 0 .7rem;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.01em;
}
p { margin: 0 0 1rem; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section.alt { background: var(--white); }
.section.tight { padding: clamp(3rem, 5vw, 4rem) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.section-head { max-width: 660px; margin: 0 auto 3.4rem; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.section-head p { font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 12px 26px rgba(11,27,43,.24); }
.btn-primary:hover { background: var(--navy-2); box-shadow: 0 16px 34px rgba(11,27,43,.3); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 12px 26px rgba(198,161,91,.35); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { background: var(--gold-light); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid var(--line);
}
.nav::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(250, 247, 242, .88);
  backdrop-filter: blur(14px);
  z-index: -1;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 24px; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy);
  color: var(--gold-light); font-family: 'Playfair Display', serif; font-weight: 600;
  display: flex; align-items: center; justify-content: center; font-size: 1.02rem;
  border: 1px solid var(--gold);
}
.brand-text { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--navy); font-size: 1.15rem; letter-spacing: -.01em; }
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a:not(.btn) {
  position: relative; font-weight: 500; font-size: .93rem; color: var(--ink); padding-bottom: 4px;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--gold); transition: right .3s var(--ease);
}
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-cta { padding: .7rem 1.5rem; font-size: .86rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--navy); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(198,161,91,.16), transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -30%; left: -12%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20,46,74,.08), transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner { position: relative; max-width: 780px; }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
.hero h1 em { font-style: italic; color: var(--gold-dark); }
.hero p { font-size: 1.1rem; max-width: 600px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.9rem 0 3rem; }
.hero-stats { display: flex; gap: clamp(1.6rem, 4vw, 2.8rem); flex-wrap: wrap; }
.hero-stats .stat { display: flex; flex-direction: column; padding-left: 1.1rem; border-left: 2px solid var(--gold); }
.hero-stats .num { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.7rem; color: var(--navy); }
.hero-stats .lbl { font-size: .82rem; color: var(--ink-soft); }

/* ---------- Client strip ---------- */
.client-strip { padding: 2.2rem 0; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.client-strip-inner { display: flex; align-items: center; gap: 2.6rem; flex-wrap: wrap; justify-content: center; }
.client-strip .lbl { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.client-strip .names { display: flex; gap: 2.2rem; flex-wrap: wrap; justify-content: center; }
.client-strip .names span { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy-3); opacity: .75; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding: clamp(5.5rem, 10vw, 7.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(198,161,91,.18), transparent 60%);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--gold-light); justify-content: center; }
.page-hero .eyebrow::before { background: var(--gold-light); }
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 4.6vw, 3.1rem); max-width: 720px; margin-left: auto; margin-right: auto; }
.page-hero p { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto; }
.breadcrumb { margin-top: 1.4rem; font-size: .85rem; color: rgba(255,255,255,.6); }
.breadcrumb a { color: var(--gold-light); }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-media { position: relative; }
.split-media.reverse { order: 2; }
.media-frame {
  aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  position: relative; box-shadow: var(--shadow-lg);
}
.media-frame::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(198,161,91,.35), transparent 55%);
}
.media-frame .mono {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 5rem; color: rgba(232,213,168,.35); font-weight: 600;
}
.media-badge {
  position: absolute; bottom: -1.2rem; left: -1.2rem;
  background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.5rem; text-align: center;
}
.media-badge .num { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.5rem; color: var(--gold-dark); display: block; }
.media-badge .lbl { font-size: .78rem; color: var(--ink-soft); }
.split-body .lead { font-size: 1.12rem; color: var(--navy-3); font-weight: 500; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; text-align: center; }
.stat-card { padding: 1.6rem 1rem; border-right: 1px solid var(--line); }
.stat-card:last-child { border-right: none; }
.stat-card .num { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(1.8rem, 3vw, 2.3rem); color: var(--navy); }
.stat-card .lbl { font-size: .85rem; color: var(--ink-soft); letter-spacing: .03em; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.7rem; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 1.8rem; box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card .idx { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--gold-dark); font-weight: 600; margin-bottom: .8rem; display: block; }
.service-card .ic {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.service-card .ic svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.15rem; }
.service-card p { font-size: .93rem; margin: 0; }
.service-card .link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-size: .85rem; font-weight: 600; color: var(--navy); }

/* Detailed service block (services page) */
.service-detail {
  display: grid; grid-template-columns: 90px 1fr; gap: 1.6rem;
  padding: 2.4rem 0; border-bottom: 1px solid var(--line);
}
.service-detail:first-child { padding-top: 0; }
.service-detail .idx { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold-light); font-weight: 600; -webkit-text-stroke: 1px var(--gold); }
.service-detail h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.service-detail .feats { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin-top: 1rem; }
.service-detail .feats span { font-size: .88rem; color: var(--navy-3); display: flex; align-items: center; gap: .5rem; }
.service-detail .feats span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* Pricing tiers */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 2rem; display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { background: var(--navy); color: var(--white); position: relative; border-color: var(--navy); }
.price-card.featured h3, .price-card.featured .tag { color: var(--white); }
.price-card.featured p, .price-card.featured li { color: rgba(255,255,255,.75); }
.price-card .tag { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: .6rem; }
.price-card .badge {
  position: absolute; top: -13px; right: 2rem; background: var(--gold); color: var(--navy);
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 999px;
}
.price-card h3 { font-size: 1.4rem; }
.price-card .desc { font-size: .92rem; margin-bottom: 1.6rem; }
.price-card ul { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; flex: 1; }
.price-card li { font-size: .9rem; display: flex; align-items: flex-start; gap: .6rem; }
.price-card li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--gold-dark); }
.price-card.featured li svg { color: var(--gold-light); }

/* ---------- Portfolio ---------- */
.filter-bar { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.8rem; }
.filter-btn {
  padding: .6rem 1.3rem; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--white); color: var(--ink-soft); font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: all .25s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--navy); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.portfolio-item.hide { display: none; }
.portfolio-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-card .thumb {
  aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy), var(--navy-3));
  position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.portfolio-card .thumb::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(198,161,91,.4), transparent 55%);
}
.portfolio-card .thumb .mono { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: rgba(232,213,168,.5); font-weight: 600; position: relative; }
.portfolio-card .body { padding: 1.6rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.portfolio-card .tag {
  display: inline-block; align-self: flex-start; font-size: .7rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--gold-dark); background: var(--cream-2); padding: .3rem .7rem; border-radius: 999px; margin-bottom: .8rem;
}
.portfolio-card h3 { font-size: 1.05rem; }
.portfolio-card p { font-size: .87rem; margin-bottom: 1rem; flex: 1; }
.portfolio-card .link { font-size: .85rem; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: .4rem; }
.portfolio-cta {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  background: var(--navy); color: var(--white); padding: 2rem 1.8rem; border-radius: var(--radius);
}
.portfolio-cta h3, .portfolio-cta p { color: var(--white); }
.portfolio-cta p { opacity: .8; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem 1.8rem; }
.why-card { text-align: left; }
.why-card .ic {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--cream-2); color: var(--gold-dark); border: 1px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.why-card .ic svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 1.08rem; }
.why-card p { font-size: .92rem; margin: 0; }

/* ---------- Values grid (about) ---------- */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2.4rem; }
.value { display: flex; gap: 1.2rem; align-items: flex-start; }
.value .n { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold-light); -webkit-text-stroke: 1px var(--gold); flex-shrink: 0; }
.value h4 { font-size: 1.05rem; margin-bottom: .3rem; }
.value p { font-size: .92rem; margin: 0; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
.step { text-align: center; position: relative; }
.step .circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--gold-light); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.15rem;
  margin: 0 auto 1.1rem;
}
.step h4 { font-size: 1.04rem; }
.step p { font-size: .9rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .3rem 1.6rem; transition: border-color .25s ease;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  padding: 1.2rem 0; font-family: 'Playfair Display', serif; font-weight: 600; color: var(--navy);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.4rem; color: var(--gold-dark); flex-shrink: 0; transition: transform .25s ease; font-family: 'Inter', sans-serif;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 0 1.4rem; font-size: .93rem; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); margin-bottom: 1.6rem; }
.info-row { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-row .ic {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.info-row .ic svg { width: 20px; height: 20px; }
.info-row h4 { font-size: 1rem; margin-bottom: .2rem; }
.info-row p { font-size: .92rem; margin: 0; }
.info-row a { color: var(--navy-3); font-weight: 500; }
.info-row a:hover { color: var(--gold-dark); }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  font-family: inherit; font-size: .95rem; color: var(--ink); background: var(--cream);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.18); background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-msg {
  display: none; background: var(--cream-2); border: 1px solid var(--gold-light); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; font-size: .9rem; color: var(--navy-3); margin-bottom: 1.4rem;
}
.form-msg.show { display: block; }
.form-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .4rem; }
.form-actions .btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  color: var(--white); text-align: center; padding: clamp(3.5rem, 7vw, 5.5rem) 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 100%, rgba(198,161,91,.18), transparent 55%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.cta-band p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2.1rem; }
.cta-band .eyebrow { color: var(--gold-light); }
.cta-band .eyebrow::before { background: var(--gold-light); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #C7CFD8; padding: 4.2rem 0 1.8rem; }
.footer .brand-mark { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer .brand-text { color: var(--white); }
.footer > .container > p, .footer-grid p { color: #93A0AC; font-size: .92rem; max-width: 320px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.6rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer h5 { color: var(--white); font-size: .95rem; margin-bottom: 1.1rem; font-family: 'Inter', sans-serif; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.f-links li, .f-contact li { margin-bottom: .8rem; font-size: .9rem; color: #A7B1BB; display: flex; gap: .6rem; align-items: flex-start; }
.f-links a, .f-contact a { color: #A7B1BB; }
.f-links a:hover, .f-contact a:hover { color: var(--gold-light); }
.f-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.socials { display: flex; gap: .8rem; margin-top: 1.3rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; color: var(--white); transition: all .25s ease;
}
.socials svg { width: 18px; height: 18px; }
.socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-top: 1.8rem; font-size: .82rem; color: #6E7A85; }

/* ---------- Floating actions ---------- */
.floaties { position: fixed; right: 22px; bottom: 22px; z-index: 190; display: flex; flex-direction: column; gap: 12px; }
.floaty {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: var(--shadow-lg); transition: transform .25s ease;
}
.floaty:hover { transform: scale(1.08); }
.floaty svg { width: 27px; height: 27px; }
.floaty.wa { background: #25D366; }
.to-top {
  position: fixed; right: 22px; bottom: 92px; z-index: 190;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold);
  background: var(--navy); color: var(--gold-light); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split-media.reverse { order: -1; }
  .media-frame { max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .services-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card { border-bottom: 1px solid var(--line); }
  .stat-card:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--cream); flex-direction: column; justify-content: flex-start; align-items: flex-start;
    padding: 2.2rem 24px; gap: 1.6rem;
    transform: translateX(100%); transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .nav.menu-open .nav-links { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .services-grid, .portfolio-grid, .why-grid, .process-grid, .pricing-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div { padding-bottom: 1.4rem; }
  .hero-stats { gap: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail .idx { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 460px) {
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .client-strip .names { gap: 1.2rem; }
}
