/* ═══════════════════════════════════════════════════════════════
   VINAYAK ASSOCIATES — Premium Financial Advisory Website
   Color Palette extracted from logo: Gold + Silver on Light
   ═══════════════════════════════════════════════════════════════ */

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

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Gold spectrum from logo */
  --gold-deep:    #8B6914;
  --gold-primary: #B8960C;
  --gold-mid:     #C9A84C;
  --gold-light:   #E8D48B;
  --gold-pale:    #F7EEC9;

  /* Silver spectrum */
  --silver-dark:  #6E7A8A;
  --silver-mid:   #A0A8B0;
  --silver-light: #C8CDD3;

  /* Neutrals */
  --ink:          #1A1712;
  --ink-80:       #3D3830;
  --ink-60:       #6B6257;
  --ink-30:       #B8B0A6;
  --ink-10:       #F0ECE6;

  --white:        #FFFFFF;
  --bg-warm:      #FDFBF7;
  --bg-section:   #F8F4ED;
  --bg-alt:       #F2EDE3;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  /* Transitions */
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadow */
  --shadow-sm:  0 2px 12px rgba(26, 23, 18, 0.06);
  --shadow-md:  0 8px 32px rgba(26, 23, 18, 0.10);
  --shadow-lg:  0 24px 64px rgba(26, 23, 18, 0.14);
  --shadow-gold: 0 8px 32px rgba(184, 150, 12, 0.20);

  /* Border radius */
  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  20px;

  /* Nav height */
  --nav-h:      96px;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink-80);
  background-color: var(--bg-warm);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

p { margin-bottom: 0.9em; }
p:last-child { margin-bottom: 0; }

.gold-text {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-mid) 50%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Layout Utilities ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding-block: var(--space-xl);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  padding: 0.32em 0.9em;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.section-tag.light {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
  border-color: rgba(232,212,139,0.35);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-heading {
  max-width: 700px;
}

.section-heading.centered {
  margin-inline: auto;
}

.section-heading.light {
  color: var(--white);
}

/* ─── Scroll Reveal ──────────────────────────────────────────── */
/* Without JS: show everything normally */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  will-change: opacity, transform;
}

/* With JS available: start hidden, animate in via .visible */
html.js-on .reveal {
  opacity: 0;
  transform: translateY(24px);
}

html.js-on .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85em 2em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-primary));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(184, 150, 12, 0.35);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-mid));
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-30);
}

.btn-ghost:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(21, 28, 44, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  border-bottom-color: rgba(201,168,76,0.20);
  box-shadow: 0 2px 28px rgba(0,0,0,0.30);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 0.5em 0.9em;
  border-radius: var(--radius-sm);
  transition: color 0.25s, background 0.25s;
}

.nav-link:hover {
  color: var(--gold-mid);
  background: rgba(201,168,76,0.10);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-primary));
  color: var(--white) !important;
  padding: 0.55em 1.4em;
  border-radius: var(--radius-sm);
  margin-left: 0.5rem;
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 150, 12, 0.30);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-mid)) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.88);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 5rem;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  max-width: 1240px;
  margin-inline: auto;
  overflow: hidden;
}

.hero-bg-pattern {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(201, 168, 76, 0.09) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(184, 150, 12, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle geometric grid on bg */
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,150,12,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,12,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
  transition-delay: 0.1s;
}

.hero-headline {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  transition-delay: 0.2s;
}

.hero-sub {
  font-size: 1.02rem;
  color: var(--ink-60);
  max-width: 580px;
  line-height: 1.8;
  transition-delay: 0.3s;
}

.hero-sub + .hero-sub {
  transition-delay: 0.35s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  transition-delay: 0.45s;
}

.hero-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo-bg {
  width: min(480px, 100%);
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(26,23,18,0.18), 0 8px 24px rgba(184,150,12,0.12);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-16px) rotate(1deg); }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--white);
  border-top: 1px solid var(--ink-10);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  color: var(--ink-60);
  font-size: 1.02rem;
  margin-bottom: 1.1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--ink-80);
  font-weight: 500;
}

.feature-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-primary);
}

.vm-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.vm-card {
  background: var(--bg-warm);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-mid));
}

.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.vm-icon {
  width: 44px;
  height: 44px;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.vm-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold-primary);
}

.vm-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.vm-card p {
  font-size: 0.95rem;
  color: var(--ink-60);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   CORE VALUES SECTION
   ═══════════════════════════════════════════════════════════════ */
.values-section {
  background: var(--bg-section);
  border-top: 1px solid var(--ink-10);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.06));
  transition: height 0.35s var(--ease);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-light);
}

.value-card:hover::after {
  height: 100%;
}

.value-icon {
  width: 52px;
  height: 52px;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
}

.value-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold-primary);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.value-desc {
  font-size: 0.93rem;
  color: var(--ink-60);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════ */
.services-section {
  background: var(--white);
  border-top: 1px solid var(--ink-10);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-warm);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.service-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}

.service-card:hover .service-num {
  color: var(--gold-light);
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--gold-primary);
  margin-bottom: 1.1rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold-primary);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.9rem;
  padding-right: 2.5rem;
  line-height: 1.3;
}

.service-tagline {
  font-size: 0.88rem;
  color: var(--ink-60);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.service-tagline.top {
  margin-bottom: 0.8rem;
  font-style: italic;
}

.service-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.5rem 0;
}

.service-list li {
  position: relative;
  padding-left: 1.1em;
  font-size: 0.9rem;
  color: var(--ink-60);
  line-height: 1.55;
}

.service-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold-mid);
  font-weight: 600;
}

/* ─── Service Cards with Images ──────────────────────────────── */
.services-grid.with-images {
  grid-template-columns: repeat(3, 1fr);
}

.service-card.has-image {
  padding: 0;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
  filter: brightness(0.92);
}

.service-card.has-image:hover .service-card-img {
  transform: scale(1.04);
  filter: brightness(1);
}

.service-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card.has-image .service-num {
  top: 140px;
  right: 1.25rem;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  font-size: 1.8rem;
}

.service-card.has-image:hover .service-num {
  color: var(--gold-light);
}

.service-card.has-image .service-icon {
  margin-bottom: 0.75rem;
}

.service-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.service-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,23,18,0.35) 100%);
  pointer-events: none;
}
.why-section {
  background: var(--bg-section);
  border-top: 1px solid var(--ink-10);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-light);
}

.why-icon {
  width: 48px;
  height: 48px;
  color: var(--gold-primary);
  margin: 0 auto 1.25rem;
}

.why-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold-primary);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.65rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--ink-60);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION — Light Theme
   ═══════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--bg-section);
  border-top: 1px solid var(--ink-10);
  padding-block: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 90% 10%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 5% 90%, rgba(184,150,12,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info-col .section-tag { margin-bottom: 1.2rem; }

.contact-info-col h2 {
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.contact-sub {
  color: var(--ink-60);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2.25rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink-80);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s;
}

.contact-item:hover { color: var(--gold-primary); }

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-primary);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

/* ─── Contact Form ─────────────────────────────────────────── */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-mid));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-warm);
  border: 1.5px solid var(--ink-10);
  border-radius: var(--radius-sm);
  padding: 0.7em 1em;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,150,12,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #D94040;
  box-shadow: 0 0 0 3px rgba(217,64,64,0.10);
}

.form-group .field-error {
  font-size: 0.78rem;
  color: #D94040;
  margin-top: 0.2rem;
  display: none;
}

.form-group.has-error .field-error { display: block; }

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '';
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--ink-60);
  pointer-events: none;
}

.form-group select { cursor: pointer; padding-right: 2.5em; }

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* ─── Phone field — custom flag dropdown ─────────────────────── */
.phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--ink-10);
  border-radius: var(--radius-sm);
  overflow: visible;
  background: var(--bg-warm);
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
}

.phone-wrap:focus-within {
  border-color: var(--gold-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,150,12,0.12);
}

.phone-wrap.error {
  border-color: #D94040;
  box-shadow: 0 0 0 3px rgba(217,64,64,0.10);
}

/* Trigger button */
.dial-select-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.7em 0.65em 0.7em 0.85em;
  border-right: 1.5px solid var(--ink-10);
  background: transparent;
  cursor: pointer;
  user-select: none;
  min-width: 88px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  transition: background 0.2s;
}

.dial-select-wrap:hover {
  background: rgba(0,0,0,0.03);
}

.dial-flag-img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.dial-code-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.dial-caret {
  width: 10px;
  height: 6px;
  stroke: var(--ink-60);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.dial-select-wrap[aria-expanded="true"] .dial-caret {
  transform: rotate(180deg);
}

/* Dropdown list */
.dial-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: -1px;
  z-index: 500;
  background: var(--white);
  border: 1.5px solid var(--ink-10);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(26,23,18,0.14);
  min-width: 220px;
  max-height: 280px;
  overflow-y: auto;
  padding: 6px 0;
  list-style: none;
  margin: 0;
  scroll-behavior: smooth;
}

.dial-select-wrap[aria-expanded="true"] .dial-list {
  display: block;
}

.dial-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ink-80);
  transition: background 0.15s;
}

.dial-option:hover {
  background: var(--gold-pale);
}

.dial-option.active {
  background: var(--gold-pale);
  font-weight: 600;
  color: var(--ink);
}

.dial-option img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.dial-option span:first-of-type {
  flex: 1;
}

.dial-num {
  font-size: 0.82rem;
  color: var(--ink-60);
  margin-left: auto;
  padding-left: 8px;
}

/* Phone number text input */
.phone-wrap input[type="tel"] {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: transparent;
  border: none !important;
  outline: none;
  padding: 0.7em 1em;
  min-width: 0;
  box-shadow: none !important;
}

.phone-wrap input[type="tel"]:focus {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Scrollbar for dial list */
.dial-list::-webkit-scrollbar { width: 4px; }
.dial-list::-webkit-scrollbar-track { background: transparent; }
.dial-list::-webkit-scrollbar-thumb { background: var(--ink-10); border-radius: 4px; }

/* Honeypot — visually hidden */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  tab-index: -1;
}

.form-submit {
  margin-top: 1.5rem;
  width: 100%;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 0.9em 2em;
  font-size: 0.95rem;
  gap: 0.6em;
  position: relative;
  overflow: hidden;
}

.btn-submit .btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-spinner { display: block; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form status messages */
.form-status {
  display: none;
  margin-top: 1.25rem;
  padding: 0.9em 1.1em;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  align-items: flex-start;
  gap: 0.6em;
}

.form-status.success {
  background: #EDF7F0;
  border: 1px solid #72C48A;
  color: #1E6B3A;
}

.form-status.error {
  background: #FEF0F0;
  border: 1px solid #E8A0A0;
  color: #8B2020;
}

.form-status svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #151c2c;
  border-top: 1px solid rgba(201,168,76,0.14);
  padding-block: 3.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  mix-blend-mode: screen;
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--silver-dark);
  line-height: 1.65;
  max-width: 260px;
}

.footer-nav h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1.2rem;
}

.footer-nav ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav li a,
.footer-services li {
  font-size: 0.88rem;
  color: var(--silver-dark);
  transition: color 0.25s;
}

.footer-nav li a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 0.88rem;
  color: var(--silver-dark);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--silver-dark);
  transition: color 0.25s;
}

.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--ink-60);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-h) + 3rem);
    padding-bottom: 4rem;
  }

  .hero-emblem {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vm-cards {
    position: static;
    flex-direction: row;
  }

  .vm-card { flex: 1; }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .services-grid.with-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 0.85rem;
  }

  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }
}

/* ─── TABLET SMALLER ──────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --space-xl: 4.5rem;
  }

  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #151c2c;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0;
    gap: 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    pointer-events: none;
    border-top: 1px solid rgba(201,168,76,0.15);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 0.85em 1.5rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    border-radius: 0;
    text-align: left;
  }

  .nav-link:hover {
    background: rgba(201,168,76,0.10);
    color: var(--gold-mid);
  }

  .nav-cta {
    display: block;
    text-align: center;
    margin: 0.75rem 1.5rem 0.25rem;
    padding: 0.75em 1.4em;
    border-radius: var(--radius-sm);
    width: auto;
  }

  /* Hamburger animation */
  .nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .vm-cards {
    flex-direction: column;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .services-grid.with-images {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --space-xl: 3.5rem; }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn { width: 100%; justify-content: center; }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .services-grid,
  .services-grid.with-images {
    grid-template-columns: 1fr;
  }
}

/* ─── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html.js-on .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-logo-bg { animation: none; }
}

/* ─── WhatsApp Floating Button ───────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 0.65rem 1.1rem 0.65rem 0.65rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.40), 0 2px 8px rgba(0,0,0,0.15);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), padding 0.3s var(--ease), border-radius 0.3s;
  overflow: hidden;
  max-width: 200px;
  animation: wa-pop 0.6s var(--ease-out) 1.2s both;
}

@keyframes wa-pop {
  0%   { transform: scale(0.4) translateY(20px); opacity: 0; }
  70%  { transform: scale(1.08) translateY(-4px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.50), 0 4px 12px rgba(0,0,0,0.18);
}

.wa-float:active {
  transform: translateY(-1px) scale(0.98);
}

.wa-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.wa-label {
  white-space: nowrap;
}

/* Collapse to circle on mobile */
@media (max-width: 480px) {
  .wa-float {
    padding: 0.65rem;
    border-radius: 50%;
    max-width: 56px;
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .wa-label { display: none; }
}

/* ─── Print ───────────────────────────────────────────────────── */
@media print {
  .site-header, .nav-toggle, .hero-bg-pattern { display: none; }
  body { background: white; color: black; }
  .hero { padding-top: 2rem; }
}
