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

:root {
  --bg:          #0d0c0b;
  --bg-elevated: #121110;
  --bg-card:     #1a1815;
  --bg-card-2:   #201e1a;
  --fg:          #f0ece4;
  --fg-muted:    #8c8578;
  --fg-dim:      #4a4540;
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-dim:    rgba(201, 168, 76, 0.12);
  --gold-glow:   rgba(201, 168, 76, 0.22);
  --cream:       #f5f0e8;
  --radius:      4px;
  --radius-lg:   8px;
  --max-w:       1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(201, 168, 76, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, #0d0c0b 0%, #100f0d 100%);
  pointer-events: none;
}

/* Thin gold rule */
.hero-rule {
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  margin: 0 auto 48px;
}

.hero-inner {
  position: relative;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero .lede {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

/* ── Dividers ── */
.grid-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.18) 30%, rgba(201, 168, 76, 0.18) 70%, transparent 100%);
}

/* ── Services ── */
.services {
  padding: 120px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.services-header {
  margin-bottom: 72px;
}

.services-header .label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.services-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--fg);
}

.services-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
}

/* 4-up grid */
.services-grid.four-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.service-card {
  background: var(--bg-card);
  padding: 44px 36px;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: var(--bg-card-2);
}

.service-card.featured-wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1a1815 0%, #1f1c18 100%);
  padding: 52px 56px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.service-card.featured-wide:hover {
  background: linear-gradient(135deg, #1f1c18 0%, #252118 100%);
}

.service-card.featured-wide h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card.featured-wide p + p {
  margin-top: 16px;
}

.service-targets {
  color: var(--fg-muted);
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 20px;
}

.service-targets strong {
  color: var(--fg);
  font-weight: 500;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 28px;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  padding-bottom: 20px;
  width: 100%;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.service-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
}

.service-tag {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  font-size: 10px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ── Stats ── */
.stats {
  padding: 80px 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  background: var(--bg-elevated);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* ── Coverage ── */
.coverage {
  padding: 120px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.coverage h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--fg);
}

.coverage p {
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 0.97rem;
}

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-left: 1px solid rgba(201, 168, 76, 0.12);
}

.area-list li {
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 400;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  border-right: 1px solid rgba(201, 168, 76, 0.12);
  transition: color 0.2s, background 0.2s;
}

.area-list li:hover {
  color: var(--fg);
  background: rgba(201, 168, 76, 0.04);
}

.coverage-visual {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 380px;
  position: relative;
}

.coverage-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 168, 76, 0.04), transparent 70%);
  pointer-events: none;
}

.coverage-visual .big-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.coverage-visual p {
  color: var(--fg-muted);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ── Closing ── */
.closing {
  padding: 140px 24px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 168, 76, 0.05), transparent 65%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--fg);
}

.closing h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ── Footer ── */
footer {
  padding: 44px 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

footer .footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--fg);
  letter-spacing: 0.02em;
}

footer .meta {
  color: var(--fg-dim);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #0d0c0b;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.25);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 32px rgba(201, 168, 76, 0.38);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.btn-ghost:hover {
  border-color: rgba(201, 168, 76, 0.45);
  color: var(--fg);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.35);
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: rgba(201, 168, 76, 0.6);
  transform: translateY(-1px);
}

.btn-full { width: 100%; }

/* ── Hero CTAs ── */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* ── Section commons ── */
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--fg);
}

.section-sub {
  color: var(--fg-muted);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.78;
  max-width: 520px;
}

/* ── Nav ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(13, 12, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(201, 168, 76, 0.1);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo {
  color: var(--gold);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 14px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: #0d0c0b !important;
  padding: 9px 20px;
  margin-left: 8px;
  font-weight: 600;
}

.nav-links .nav-cta:hover {
  background: var(--gold-light);
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--fg);
  transition: all 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Pricing ── */
.pricing {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing-inner .section-sub {
  margin-bottom: 72px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.pricing-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-card {
  background: var(--bg-card);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background 0.3s;
}

.pricing-card:hover {
  background: var(--bg-card-2);
}

.pricing-card.featured {
  background: linear-gradient(160deg, #1d1b16 0%, #22201a 100%);
  position: relative;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pricing-card.featured:hover {
  background: linear-gradient(160deg, #21201a 0%, #27251e 100%);
}

.pricing-tag {
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--gold);
  color: #0d0c0b;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  white-space: nowrap;
}

.pricing-icon {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.pricing-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.pricing-desc {
  color: var(--fg-muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
}

.price-currency {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg-muted);
  margin-top: 4px;
}

.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.price-save {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 3px 10px;
  margin-left: 6px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}

.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 400;
}

.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--fg-dim);
  margin-top: 40px;
  letter-spacing: 0.03em;
}

/* ── Gallery ── */
.gallery {
  padding: 120px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.gallery-header {
  margin-bottom: 52px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  filter: brightness(0.78) saturate(0.85);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  opacity: 0;
  transition: opacity 0.35s;
}

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

.gallery-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  font-size: 10px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
  width: fit-content;
}

.gallery-tag.warm-tag {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
}

.gallery-tag.green-tag {
  background: rgba(180, 200, 160, 0.1);
  border-color: rgba(180, 200, 160, 0.35);
  color: #c8d8b4;
}

.gallery-overlay p {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(240, 236, 228, 0.7);
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.06em;
}

/* ── Contact ── */
.contact {
  padding: 120px 24px;
  background: var(--bg);
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
}

.contact-left .section-sub {
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding-top: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.6;
}

.detail-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold);
}

/* ── Form ── */
.contact-form {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-elevated);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 13px 16px;
  color: var(--fg);
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--fg-dim);
  font-weight: 300;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238c8578' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-card);
}

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

.form-group input[type="date"] {
  color-scheme: dark;
}

.form-success,
.form-error {
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-success {
  background: rgba(180, 200, 160, 0.06);
  border: 1px solid rgba(180, 200, 160, 0.2);
  color: #c8d8b4;
}

.form-error {
  background: rgba(180, 80, 80, 0.06);
  border: 1px solid rgba(180, 80, 80, 0.2);
  color: #e8b4b4;
}

.success-icon {
  font-weight: 600;
  font-size: 1rem;
  color: #c8d8b4;
}

.hidden { display: none !important; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pricing-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid.four-up {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card.featured-wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .services-grid,
  .services-grid.four-up {
    grid-template-columns: 1fr;
  }
  .service-card.featured-wide {
    grid-column: 1;
    padding: 36px 28px;
  }
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .coverage-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .area-list {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 110px 20px 70px;
  }
  .hero-rule { height: 48px; margin-bottom: 32px; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13, 12, 11, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 16px; width: 100%; }
  .nav-links .nav-cta { margin: 10px 0 0; text-align: center; }

  /* Pricing */
  .pricing-grid,
  .pricing-grid.four-col {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }
  .gallery-item.large {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 32px 24px;
  }

  /* Footer */
  footer .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  .footer-nav { gap: 20px; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .gallery-item.large {
    grid-column: 1;
  }
  .pricing-amount .price-value { font-size: 2.8rem; }
}
