:root {
  --bg-primary: #0f0f0f;
  --bg-secondary: #171714;
  --bg-card: #1c1c18;
  --fg-primary: #f5f0e8;
  --fg-secondary: #a8a08e;
  --fg-muted: #6b6558;
  --accent: #c8a45a;
  --accent-dim: rgba(200, 164, 90, 0.15);
  --border: #2a2822;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.hero h1 .strike {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-secondary);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-secondary);
  background: var(--bg-secondary);
}

.hero-location {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 4rem;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.services-intro {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  max-width: 550px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--fg-primary);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.65;
}

/* ===== PROCESS ===== */
.process {
  padding: 6rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.step-line {
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.step:first-child .step-line { top: 50%; }
.step:last-child .step-line { bottom: 50%; }

.step-dot {
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg-primary);
}

.step-content p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.65;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.closing-content {
  max-width: 850px;
  margin: 0 auto;
}

.closing-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 4rem;
}

.closing-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  min-width: 140px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-primary);
}

.footer-location {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: auto;
    min-height: 90vh;
  }

  .hero-location {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 3rem;
  }

  .services { padding: 4rem 1.5rem; }

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

  .process { padding: 4rem 1.5rem; }

  .closing { padding: 5rem 1.5rem; }

  .closing-stats {
    gap: 2rem;
  }

  .stat-value {
    font-size: 1.6rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .step {
    gap: 1.2rem;
  }
}

@media (max-width: 375px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
  }
}
/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover { color: var(--fg-primary); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.nav-cta:hover { opacity: 0.85; }

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

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-primary);
  border-radius: 2px;
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-primary);
  padding: 5rem 2rem 2rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-mobile-links a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

/* ===== BUTTONS ===== */
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 0.75rem 1.6rem;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg-primary);
  background: transparent;
  padding: 0.75rem 1.6rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.15s;
}

.btn-secondary:hover { border-color: var(--fg-muted); }

/* ===== SERVICE DETAIL PAGE ===== */
.svc-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 10rem 2rem 6rem;
  max-width: 900px;
  margin: 0 auto;
}

.svc-hero .hero-label { margin-bottom: 1.5rem; }

.svc-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.svc-features {
  padding: 4rem 2rem 6rem;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.svc-features-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.svc-features-left h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.svc-starting {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.svc-starting strong { font-weight: 700; }

.svc-note {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.svc-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svc-feature-item {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--fg-secondary);
  align-items: flex-start;
}

.svc-feature-check {
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.svc-cta-strip {
  padding: 5rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.svc-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.svc-cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.svc-cta-inner p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  max-width: 420px;
}

.svc-related {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.svc-related h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.service-card-link {
  text-decoration: none;
  display: block;
  transition: background 0.15s;
}

.service-card-link:hover { background: #212118; }

/* ===== GALLERY PAGE ===== */
.gallery-hero {
  padding: 10rem 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.gallery-section {
  padding: 2rem 2rem 6rem;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.gallery-filter {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: none;
  color: var(--fg-secondary);
  cursor: pointer;
  transition: all 0.15s;
}

.gallery-filter:hover, .gallery-filter.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.gallery-card {
  background: var(--bg-card);
}

.gallery-img-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Subtle noise texture for placeholders */
.gallery-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(200,164,90,0.03) 2px,
    rgba(200,164,90,0.03) 4px
  );
}

.gallery-img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.gallery-placeholder-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gallery-placeholder-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.gallery-img-coming { background: var(--bg-primary); }

.gallery-card-info {
  padding: 1.5rem;
}

.gallery-card-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 0.5rem;
}

.gallery-card-info p {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.gallery-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid rgba(200,164,90,0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

.gallery-cta-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
}

/* ===== QUOTE FORM ===== */
.quote-hero {
  padding: 10rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.quote-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.quote-section {
  padding: 0 2rem 6rem;
}

.quote-inner {
  max-width: 680px;
  margin: 0 auto;
}

.form-errors {
  background: rgba(220, 60, 60, 0.1);
  border: 1px solid rgba(220, 60, 60, 0.3);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
}

.form-errors p {
  font-size: 0.9rem;
  color: #e07070;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg-primary);
  width: 100%;
  transition: border-color 0.15s;
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: var(--fg-muted); }

.form-input:focus { border-color: var(--accent); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8a08e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 0.5rem;
}

.btn-submit {
  font-size: 1rem;
  padding: 0.9rem 2rem;
  width: 100%;
  text-align: center;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.thankyou-inner {
  max-width: 600px;
  text-align: center;
}

.thankyou-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.thankyou-inner .hero-label {
  margin-bottom: 1rem;
}

.thankyou-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.thankyou-note {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.thankyou-email {
  color: var(--accent);
  text-decoration: none;
}

.thankyou-inner .hero-ctas {
  justify-content: center;
}

/* ===== CLOSING SECTION — add CTA ===== */
.closing-cta {
  margin-top: 3rem;
}

/* ===== FOOTER — updated ===== */
.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

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

/* ===== RESPONSIVE — additions ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .svc-features-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .svc-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .gallery-filters {
    gap: 0.4rem;
  }

  .quote-hero {
    padding: 7rem 1.5rem 3rem;
  }

  .gallery-hero {
    padding: 7rem 1.5rem 3rem;
  }

  .svc-hero {
    padding: 7rem 1.5rem 4rem;
  }
}
