:root {
  --bg: #fffaf6;
  --surface: #ffffff;
  --surface-soft: #fff3e8;
  --text: #1f2937;
  --muted: #5b6472;
  --border: #ead8c8;
  --primary: #d97706;
  --primary-dark: #b45309;
  --accent: #7c3aed;
  --shadow: 0 18px 40px rgba(31, 41, 55, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #fffaf6 0%, #fff 40%, #fff8f1 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #111827;
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 10px;
  z-index: 999;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  background: #1f2937;
  color: #fff;
  font-size: .94rem;
}
.topbar-inner {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: .8rem 0;
}
.topbar a { color: #fde68a; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 216, 200, .8);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
}
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #f59e0b);
  box-shadow: var(--shadow);
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-copy strong {
  font-size: 1.05rem;
}
.brand-copy small {
  color: var(--muted);
  font-size: .88rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .75rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
}
.nav a:hover,
.nav a.active {
  color: var(--text);
  background: var(--surface-soft);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #111827;
  border-radius: 999px;
}

.hero {
  padding: 4.5rem 0 2.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .9fr);
  gap: 1.5rem;
  align-items: stretch;
}
.hero-copy,
.hero-card,
.card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
}
.hero-card {
  padding: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin: .35rem 0 1rem;
  letter-spacing: -0.03em;
}
.hero h2,
.section h2,
.card h3,
.card h2 {
  line-height: 1.15;
  margin-top: 0;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .78rem;
}
.lead {
  font-size: 1.1rem;
  color: #374151;
  max-width: 62ch;
}

.actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}
.stack-actions {
  display: grid;
  gap: .85rem;
  margin-top: 1.25rem;
}
.center-actions { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #f59e0b);
  color: #fff;
  box-shadow: 0 16px 28px rgba(217, 119, 6, 0.25);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.btn-secondary,
.btn-ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}
.btn-block { width: 100%; }
.text-link {
  color: var(--primary-dark);
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}
.stat-card {
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
}
.stat-card strong { display: block; margin-bottom: .35rem; }
.stat-card span { color: var(--muted); font-size: .95rem; }

.section {
  padding: 2.5rem 0;
}
.alt-section {
  background: linear-gradient(180deg, rgba(255, 243, 232, .65), rgba(255,255,255,0));
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}
.section-head p {
  max-width: 40rem;
  color: var(--muted);
}

.grid-2,
.grid-3,
.gallery-grid,
.team-grid,
.contact-grid,
.split-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: minmax(0, 1.3fr) minmax(320px, .8fr); }
.split-grid { grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); align-items: center; }
.footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  padding: 1.35rem;
}
.feature-card,
.info-card,
.highlight-card,
.note-card {
  padding: 1.5rem;
}
.icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li,
.tick-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: .85rem;
}
.feature-list li::before,
.tick-list li::before {
  content: '•';
  position: absolute;
  left: .45rem;
  top: 0;
  color: var(--primary);
  font-size: 1.1rem;
}

.form-stack {
  display: grid;
  gap: 1rem;
}
.form-grid-2,
.form-grid-3 {
  display: grid;
  gap: 1rem;
}
.form-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
label {
  display: block;
  font-weight: 600;
  margin-bottom: .45rem;
}
input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: .95rem 1rem;
  font: inherit;
  color: var(--text);
}
input:focus,
textarea:focus {
  outline: 3px solid rgba(217, 119, 6, .16);
  border-color: var(--primary);
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.hidden-field {
  position: absolute;
  left: -9999px;
}
.contact-sidebar {
  display: grid;
  gap: 1.25rem;
}

.gallery-card {
  padding: 0;
  overflow: hidden;
}
.gallery-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-card p {
  padding: 1rem 1rem 1.1rem;
  margin: 0;
}

.team-card {
  padding: 0;
  overflow: hidden;
}
.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.team-copy {
  padding: 1.25rem;
}

.narrow-wrap {
  width: min(100%, 760px);
  margin: 0 auto;
}
.center-card {
  text-align: center;
  padding: 2rem;
}
.thankyou-card {
  padding: clamp(1.75rem, 4vw, 3rem);
}

.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(234, 216, 200, .85);
  margin-top: 1.5rem;
}
.footer h3 { margin-top: 0; }
.footer p,
.footer small,
.muted {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .split-grid,
  .grid-3,
  .gallery-grid,
  .grid-2,
  .team-grid,
  .footer-grid,
  .stats,
  .form-grid-3 {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + .75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: .75rem;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { justify-content: flex-start; border-radius: 14px; }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 76px;
  }

  .topbar-inner {
    justify-content: flex-start;
    padding-inline: 0;
  }

  .hero {
    padding-top: 2.25rem;
  }

  .hero-copy,
  .hero-card,
  .card {
    border-radius: 18px;
  }

  .form-grid-2,
  .form-grid-3 {
    grid-template-columns: 1fr;
  }

  .brand-copy small {
    display: none;
  }

  .actions .btn,
  .center-actions .btn {
    width: 100%;
  }
}
