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

/* ===== CSS VARIABLES ===== */
:root {
  --green-dark: #1a2e1a;
  --green-mid: #2d4a2d;
  --green-accent: #4a7c59;
  --green-light: #7aad89;
  --cream: #f5f1eb;
  --cream-dark: #ede8de;
  --warm-white: #faf8f4;
  --charcoal: #1e1e1e;
  --text-dark: #2a2a2a;
  --text-mid: #555;
  --text-light: #888;
  --gold: #b8975a;
  --gold-light: #d4af7a;
  --border: rgba(74, 124, 89, 0.15);
  --shadow-sm: 0 2px 12px rgba(26,46,26,0.06);
  --shadow-md: 0 8px 32px rgba(26,46,26,0.10);
  --shadow-lg: 0 24px 64px rgba(26,46,26,0.14);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--green-dark);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 400;
  padding: 0.55rem 0;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}
.topbar a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}
.topbar a:hover { color: var(--gold-light); }
.topbar svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(250,248,244,0.95);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-brand img {
  height: 40px;
  width: auto;
}
.navbar-brand .brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.04em;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active {
  color: var(--green-dark);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--green-accent);
  border-radius: 2px;
}
.nav-cta {
  background: var(--green-dark);
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  margin-left: 0.75rem;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--green-accent); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(74,124,89,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(122,173,137,0.12) 0%, transparent 60%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,124,89,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,124,89,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 6rem 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--green-light);
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-stats {
  position: absolute;
  right: 0;
  bottom: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  text-align: center;
  min-width: 140px;
}
.stat-card .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-card .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,90,0.3); }
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.btn-dark {
  background: var(--green-dark);
  color: white;
}
.btn-dark:hover { background: var(--green-accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-green {
  background: var(--green-accent);
  color: white;
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; flex-shrink: 0; }

/* ===== SECTION STYLES ===== */
section { padding: 7rem 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--green-accent);
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.75;
}
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ===== ABOUT SECTION ===== */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--green-mid);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover img { transform: scale(1.03); }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--green-dark);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.about-badge .big { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.about-badge .small { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; letter-spacing: 0.04em; }
.about-points {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.about-point:hover { box-shadow: var(--shadow-sm); }
.point-icon {
  width: 40px;
  height: 40px;
  background: var(--green-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.point-icon svg { width: 18px; height: 18px; stroke: white; fill: none; }
.point-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.2rem; }
.point-text span { font-size: 0.83rem; color: var(--text-mid); }

/* ===== SERVICES SECTION ===== */
.services { background: var(--warm-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--green-accent), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color var(--transition);
}
.service-card:hover .service-number { color: rgba(74,124,89,0.1); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--green-dark); }
.service-icon svg { width: 22px; height: 22px; stroke: var(--green-accent); fill: none; transition: stroke var(--transition); }
.service-card:hover .service-icon svg { stroke: white; }
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--green-dark);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-accent);
  margin-top: 1.5rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.7rem; }
.service-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* ===== PROCESS SECTION ===== */
.process { background: var(--green-dark); color: white; }
.process .section-title { color: white; }
.process .section-desc { color: rgba(255,255,255,0.6); }
.process .section-label { color: var(--green-light); }
.process .section-label::before { background: var(--green-light); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 4rem;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,173,137,0.3), rgba(122,173,137,0.3), transparent);
}
.step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.step-num {
  width: 4.5rem; height: 4.5rem;
  background: var(--green-mid);
  border: 1px solid rgba(122,173,137,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}
.step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}
.step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--green-mid);
}
.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,26,0.92) 0%, rgba(26,46,26,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 {
  font-size: 1.05rem;
  color: white;
  margin-bottom: 0.4rem;
}
.portfolio-overlay p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.portfolio-overlay .btn {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  align-self: flex-start;
  background: white;
  color: var(--green-dark);
}
.portfolio-label {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255,255,255,0.92);
  color: var(--green-dark);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--cream);
  padding: 5rem 0;
}
.cta-box {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 4.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74,124,89,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { font-size: 2.25rem; color: white; margin-bottom: 0.75rem; }
.cta-box p { color: rgba(255,255,255,0.6); font-size: 1rem; }
.cta-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; white-space: nowrap; }
.cta-free {
  font-size: 0.78rem;
  color: var(--green-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.cta-free::before { content: '✓'; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--warm-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info p { color: var(--text-mid); margin-bottom: 2.5rem; font-size: 1rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--green-accent); fill: none; }
.contact-item strong { display: block; font-size: 0.78rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.contact-item a, .contact-item span { font-size: 0.97rem; color: var(--text-dark); font-weight: 500; }
.contact-item a:hover { color: var(--green-accent); }

/* Contact Form */
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 0.5rem; font-size: 1.4rem; }
.contact-form .subtitle { font-size: 0.87rem; color: var(--text-mid); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.1);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-consent {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.form-consent a { color: var(--green-accent); text-decoration: underline; }

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 36px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: white;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a:hover { color: var(--green-light); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--green-dark);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(74,124,89,0.2) 0%, transparent 70%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green-light); }
.breadcrumb .sep { opacity: 0.4; }
.page-header h1 { color: white; font-size: clamp(2.2rem, 4vw, 3.25rem); }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 560px; margin-top: 1rem; line-height: 1.7; }

/* ===== SERVICE DETAIL PAGES ===== */
.service-detail { background: var(--warm-white); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-content h2 { margin-bottom: 1.25rem; }
.service-content p { color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.8; }
.service-features { margin: 2.5rem 0; display: flex; flex-direction: column; gap: 1rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.feature-icon {
  width: 36px; height: 36px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 16px; height: 16px; stroke: var(--green-accent); fill: none; }
.feature-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.2rem; }
.feature-text p { font-size: 0.83rem; color: var(--text-mid); margin: 0; }
.service-sidebar { position: sticky; top: 6rem; }
.sidebar-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.sidebar-card h4 { margin-bottom: 1rem; font-size: 1.1rem; }
.sidebar-card p { font-size: 0.87rem; color: var(--text-mid); margin-bottom: 1.5rem; }
.sidebar-cta {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: white;
}
.sidebar-cta h4 { color: white; font-size: 1.1rem; margin-bottom: 0.75rem; }
.sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
.sidebar-cta .free-badge {
  font-size: 0.75rem;
  color: var(--green-light);
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-section { background: var(--warm-white); }
.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.portfolio-full-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.portfolio-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.portfolio-full-card .card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--green-mid);
}
.portfolio-full-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-full-card:hover .card-img img { transform: scale(1.05); }
.portfolio-full-card .card-body { padding: 1.75rem; }
.portfolio-full-card .card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-accent);
  margin-bottom: 0.6rem;
}
.portfolio-full-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.portfolio-full-card p { font-size: 0.87rem; color: var(--text-mid); }
.portfolio-full-card .card-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--green-accent);
  margin-top: 1.25rem;
}
.portfolio-full-card .card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* ===== TEAM/CONTACT PAGE ===== */
.team-section { background: var(--warm-white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-card .photo {
  aspect-ratio: 4/3;
  background: var(--cream);
  overflow: hidden;
}
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card .info { padding: 1.75rem; }
.team-card h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.team-card .role {
  font-size: 0.8rem;
  color: var(--green-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.team-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.7; }

/* ===== MAP PLACEHOLDER ===== */
.map-section { padding: 0; background: var(--cream); }
.map-placeholder {
  height: 360px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 760px;
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.cookie-banner p { font-size: 0.85rem; line-height: 1.6; }
.cookie-banner a { color: var(--green-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-accept {
  background: var(--green-accent);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--green-light); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-decline:hover { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.3); }
.cookie-hidden { display: none !important; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-3 { margin-bottom: 2rem; }

/* ===== LEGAL PAGES ===== */
.legal-section { background: var(--warm-white); padding: 5rem 0; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { margin: 2.5rem 0 1rem; font-size: 1.4rem; }
.legal-content h3 { margin: 2rem 0 0.75rem; font-size: 1.1rem; }
.legal-content p { color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.8; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; color: var(--text-mid); margin-bottom: 1.25rem; }
.legal-content ul li { margin-bottom: 0.5rem; }
.legal-content a { color: var(--green-accent); text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .hero-stats { display: none; }
  .about-grid { gap: 4rem; }
}

@media (max-width: 768px) {
  section { padding: 5rem 0; }
  .container { padding: 0 1.25rem; }
  .navbar-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--warm-white); flex-direction: column; padding: 1.5rem; gap: 0; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .navbar-nav.open { display: flex; }
  .nav-link { padding: 0.85rem 1rem; border-radius: 0; border-bottom: 1px solid var(--border); }
  .nav-link.active::after { display: none; }
  .nav-cta { margin: 1rem 0 0; border-radius: var(--radius-sm); text-align: center; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { bottom: 0; left: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-full-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .cta-box { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 2rem; }
  .cta-actions { align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .hero-content { padding: 4rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}
