/* ============================================================
   VANNITOAREMONT.EE — Argo Laul
   Design System & Styles
   Warm, trustworthy, personal — Scandinavian-inspired
   ============================================================ */

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

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

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

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

ul, ol {
  list-style: none;
}

/* ---------- Design Tokens ---------- */
:root {
  /* Colors — Warm, clean, trustworthy palette */
  --clr-primary: hsl(210, 45%, 32%);        /* Deep slate blue — trust */
  --clr-primary-light: hsl(210, 40%, 48%);
  --clr-primary-dark: hsl(210, 50%, 22%);
  --clr-accent: hsl(28, 65%, 55%);           /* Warm oak/copper tone */
  --clr-accent-light: hsl(28, 70%, 68%);
  --clr-accent-glow: hsla(28, 65%, 55%, 0.15);

  --clr-bg: hsl(40, 20%, 97%);              /* Warm off-white */
  --clr-bg-alt: hsl(40, 15%, 93%);
  --clr-surface: hsl(0, 0%, 100%);
  --clr-surface-elevated: hsl(0, 0%, 100%);

  --clr-text: hsl(220, 20%, 18%);           /* Near-black warm */
  --clr-text-secondary: hsl(220, 10%, 45%);
  --clr-text-muted: hsl(220, 8%, 60%);
  --clr-text-on-dark: hsl(40, 20%, 96%);

  --clr-border: hsl(40, 12%, 88%);
  --clr-border-light: hsl(40, 10%, 92%);

  --clr-success: hsl(152, 55%, 40%);
  --clr-overlay: hsla(220, 30%, 10%, 0.55);

  /* Typography */
  --ff-heading: 'Playfair Display', serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --fs-sm: clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
  --fs-base: clamp(0.9375rem, 0.875rem + 0.3vw, 1.0625rem);
  --fs-md: clamp(1.0625rem, 0.95rem + 0.5vw, 1.25rem);
  --fs-lg: clamp(1.25rem, 1rem + 1.2vw, 1.75rem);
  --fs-xl: clamp(1.75rem, 1.3rem + 2vw, 2.75rem);
  --fs-2xl: clamp(2.25rem, 1.5rem + 3.5vw, 3.75rem);

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;
  --space-section: clamp(7rem, 10vw, 15rem);

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px hsla(220, 20%, 10%, 0.06), 0 1px 2px hsla(220, 20%, 10%, 0.04);
  --shadow-md: 0 4px 12px hsla(220, 20%, 10%, 0.08), 0 2px 4px hsla(220, 20%, 10%, 0.04);
  --shadow-lg: 0 12px 32px hsla(220, 20%, 10%, 0.1), 0 4px 8px hsla(220, 20%, 10%, 0.05);
  --shadow-xl: 0 20px 48px hsla(220, 20%, 10%, 0.12), 0 8px 16px hsla(220, 20%, 10%, 0.06);
  --shadow-glow: 0 0 0 4px var(--clr-accent-glow);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background-color: var(--clr-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--clr-text);
}

p {
  max-width: 65ch;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-accent);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
}

.section-title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--clr-text-secondary);
  max-width: 55ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.85em 2em;
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(28, 43, 58, 0.08);
}
.btn:hover {
  box-shadow: 0 10px 25px rgba(28, 43, 58, 0.15);
}

.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-text-on-dark);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--clr-primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--clr-accent);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  background: var(--clr-accent-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}

.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-text-on-dark);
  transform: translateY(-2px);
}

.btn-light {
  background: hsla(0, 0%, 100%, 0.15);
  color: white;
  border: 1.5px solid hsla(0, 0%, 100%, 0.3);
  backdrop-filter: blur(8px);
}

.btn-light:hover {
  background: hsla(0, 0%, 100%, 0.25);
  transform: translateY(-2px);
}

/* ---------- Header / Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border-light);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-logo {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: white;
  transition: color var(--transition-base);
}

.navbar.scrolled .navbar-logo {
  color: var(--clr-text);
}

.navbar-tagline {
  font-size: var(--fs-xs);
  color: hsla(0, 0%, 100%, 0.7);
  border-left: 1px solid hsla(0, 0%, 100%, 0.3);
  padding-left: var(--space-sm);
  transition: all var(--transition-base);
}

.navbar.scrolled .navbar-tagline {
  color: var(--clr-text-muted);
  border-color: var(--clr-border);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar-links a {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: hsla(0, 0%, 100%, 0.85);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar.scrolled .navbar-links a {
  color: var(--clr-text-secondary);
}

.navbar.scrolled .navbar-links a:hover {
  color: var(--clr-primary);
}

.navbar-cta {
  padding: 0.6em 1.5em !important;
  font-size: var(--fs-xs) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: all var(--transition-base);
  border-radius: 2px;
}

.navbar.scrolled .menu-toggle span {
  background: var(--clr-text);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-primary-dark);
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  transform-origin: center center;
  animation: kenBurns 15s ease-out forwards;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    hsla(210, 50%, 15%, 0.85) 0%,
    hsla(210, 45%, 20%, 0.6) 50%,
    hsla(28, 40%, 25%, 0.4) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding-top: 6rem;
  padding-bottom: var(--space-3xl);
}

.hero-content {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(0, 0%, 100%, 0.15);
  border-radius: var(--radius-full);
  padding: 0.4em 1.2em;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--clr-accent-light);
  margin-bottom: var(--space-lg);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: var(--fs-2xl);
  color: white;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero h1 .highlight {
  color: var(--clr-accent-light);
  position: relative;
}

.hero-subtitle {
  font-size: var(--fs-md);
  color: hsla(0, 0%, 100%, 0.75);
  margin-bottom: var(--space-2xl);
  max-width: 50ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid hsla(0, 0%, 100%, 0.12);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: white;
}

.hero-stat-label {
  font-size: var(--fs-xs);
  color: hsla(0, 0%, 100%, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero — Personal Photo card */
.hero-personal {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.personal-card {
  position: relative;
  background: hsla(0, 0%, 100%, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid hsla(0, 0%, 100%, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  max-width: 340px;
  width: 100%;
}

.personal-photo {
  width: 200px;
  height: 260px;
  border-radius: 100px;
  margin: 0 auto var(--space-lg);
  overflow: hidden;
  border: 4px solid hsla(0, 0%, 100%, 0.2);
  background: hsla(0, 0%, 100%, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.personal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center 10% !important;
}

.personal-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: hsla(0, 0%, 100%, 0.4);
  font-size: var(--fs-xs);
}

.personal-photo-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.personal-card h3 {
  font-size: var(--fs-lg);
  color: white;
  margin-bottom: var(--space-xs);
}

.personal-card p {
  font-size: var(--fs-sm);
  color: hsla(0, 0%, 100%, 0.6);
  line-height: 1.6;
}

.personal-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-md);
  padding: 0.35em 1em;
  background: hsla(152, 55%, 40%, 0.2);
  border: 1px solid hsla(152, 55%, 40%, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: hsl(152, 55%, 65%);
  font-weight: var(--fw-medium);
}

/* ---------- Trust / Why Section ---------- */
.why-section {
  padding: var(--space-section) 0;
  background: var(--clr-surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.why-card {
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-light);
  background: var(--clr-bg);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.why-card:hover {
  border-color: var(--clr-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--clr-accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--clr-accent);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.why-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: 1.7;
}

/* ---------- Services ---------- */
.services-section {
  padding: var(--space-section) 0;
  background: var(--clr-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.service-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  border: 1px solid var(--clr-border-light);
  transition: all var(--transition-slow);
  text-align: center;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--clr-accent-glow);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: white;
  transition: transform var(--transition-base);
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}

.service-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  margin: 0 auto;
}

/* ---------- Gallery ---------- */
.gallery-section {
  padding: var(--space-section) 0;
  background: var(--clr-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(210, 50%, 15%, 0.85), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: white;
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

/* Feature image — wider */
.gallery-item.featured {
  grid-column: span 2;
  aspect-ratio: 3 / 2;
}

/* ---------- Process / How Section ---------- */
.process-section {
  padding: var(--space-section) 0;
  background: var(--clr-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  counter-reset: step;
}

.process-step {
  position: relative;
  text-align: center;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: white;
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin: 0 auto var(--space-lg);
}

/* Flowing Timeline Logic */
.process-timeline-line {
  position: absolute;
  top: 24px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: var(--clr-border);
  z-index: 1;
}

.process-timeline-progress {
  position: absolute;
  top: 24px;
  left: 12.5%;
  height: 2px;
  width: 0%;
  background: var(--clr-accent);
  z-index: 2;
  transition: width 0.1s linear;
}

.process-step h3 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-xs);
}

.process-step p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  margin: 0 auto;
  max-width: 25ch;
}

/* ---------- Testimonial / Quote ---------- */
.quote-section {
  padding: var(--space-section) 0;
  background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
  color: white;
  text-align: center;
}

.quote-section .container {
  max-width: var(--max-width-narrow);
}

.quote-icon {
  font-size: 4rem;
  color: var(--clr-accent-light);
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.quote-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  color: hsla(0, 0%, 100%, 0.9);
  font-style: italic;
}

.quote-author {
  font-size: var(--fs-sm);
  color: hsla(0, 0%, 100%, 0.55);
}

/* ---------- Contact Section ---------- */
.contact-section {
  padding: var(--space-section) 0;
  background: var(--clr-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-top: var(--space-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--clr-accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
}

.contact-item a:hover {
  color: var(--clr-accent);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.floating-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.floating-input {
  padding: 1.5em 1em 0.5em !important;
  border: 1px solid var(--clr-border-light) !important;
  border-bottom: 2px solid var(--clr-border) !important;
  border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
  background: var(--clr-bg) !important;
  font-size: var(--fs-base) !important;
  color: var(--clr-text) !important;
  transition: all var(--transition-base) !important;
  font-family: inherit;
}

.floating-input:focus {
  outline: none;
  border-bottom-color: var(--clr-accent) !important;
  background: white !important;
  box-shadow: inset 0 -1px 0 var(--clr-accent);
}

.floating-label {
  position: absolute;
  left: 1em;
  top: 1.1em;
  font-size: var(--fs-sm) !important;
  color: var(--clr-text-secondary) !important;
  transition: all var(--transition-fast) !important;
  pointer-events: none;
}

/* Focus and active input handling */
.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
  top: 0.35em;
  font-size: 0.75rem !important;
  color: var(--clr-accent) !important;
  font-weight: var(--fw-semibold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--clr-primary-dark);
  color: var(--clr-text-on-dark);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}

.footer-brand h3 {
  font-size: var(--fs-lg);
  color: white;
  margin-bottom: var(--space-xs);
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: hsla(0, 0%, 100%, 0.5);
  max-width: 35ch;
}

.footer-links {
  display: flex;
  gap: var(--space-3xl);
}

.footer-col h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: white;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col a {
  display: block;
  font-size: var(--fs-sm);
  color: hsla(0, 0%, 100%, 0.5);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--clr-accent-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  font-size: var(--fs-xs);
  color: hsla(0, 0%, 100%, 0.35);
}

.footer-bottom a {
  color: hsla(0, 0%, 100%, 0.35);
}

.footer-bottom a:hover {
  color: var(--clr-accent-light);
}

/* ---------- Animations ---------- */
@keyframes kenBurns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto var(--space-2xl);
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-personal {
    order: -1;
  }

  .personal-card {
    max-width: 280px;
  }

  .personal-photo {
    width: 160px;
    height: 160px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .process-step:not(:last-child)::after {
    display: none;
  }

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

  .footer-main {
    flex-direction: column;
  }

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

  .gallery-item.featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: white;
    padding: 5rem var(--space-xl) var(--space-xl);
    box-shadow: var(--shadow-xl);
    gap: var(--space-md);
    z-index: 999;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-links a {
    color: var(--clr-text) !important;
    font-size: var(--fs-base);
    padding: var(--space-xs) 0;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .hero {
    min-height: auto;
    padding: 6rem 0 var(--space-3xl);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }

  .hero-stat {
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .gallery-item.featured {
    grid-column: span 1;
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer-links {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}
