:root {
  --bg: #0f0f10;
  --bg-soft: #171719;
  --panel: #1d1d20;
  --text: #f4f1ea;
  --muted: #b8b0a1;
  --gold: #c9a35d;
  --gold-soft: rgba(201, 163, 93, 0.16);
  --border: rgba(201, 163, 93, 0.16);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(180deg, #0e0e0f 0%, #131315 100%);
  color: var(--text);
}

img {
  max-width: 100%;
}

.container {
  width: min(100% - 1.5rem, 1120px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(15, 15, 16, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #171515;
  background: linear-gradient(135deg, #d6b06a, #b48532);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.15;
}

.brand-location {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: rgba(244, 241, 234, 0.62);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  background: rgba(255,255,255,0.03);
}

.hero {
  padding: 2rem 0 1.2rem;
}

.hero-inner {
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2rem, 7vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 36rem;
  margin: 0.9rem auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #14120f;
  background: linear-gradient(135deg, #d8b26d, #b98939);
}

.button-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.contact-chips span {
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  font-size: 0.84rem;
  color: rgba(244, 241, 234, 0.86);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
}

.feature-photo-section,
.services,
.about-section,
.contact-section {
  padding: 1.1rem 0 1.5rem;
}

.photo-frame {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #0b0b0c;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.section-heading {
  margin-bottom: 1rem;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  line-height: 1.05;
}

.service-grid {
  display: grid;
  gap: 0.9rem;
}

.service-card,
.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.service-card p,
.about-copy p,
.contact-card p {
  margin: 0;
  color: rgba(244,241,234,0.8);
  line-height: 1.65;
}

.about-grid {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.about-copy {
  text-align: center;
}

.contact-card {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.contact-actions {
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .hero {
    padding: 3rem 0 1.5rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 5vw, 4.6rem);
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .about-copy {
    text-align: left;
  }

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

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.15rem, 1120px);
  }

  .header-inner {
    padding: 0.7rem 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    font-size: 0.92rem;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-location {
    font-size: 0.74rem;
  }

  .header-call {
    min-height: 40px;
    padding: 0.62rem 0.9rem;
  }

  .hero {
    padding-top: 1.55rem;
  }

  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(1.78rem, 6.7vw, 2.45rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 24rem;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-chips {
    gap: 0.5rem;
  }

  .contact-chips span {
    width: 100%;
    text-align: center;
  }

  .feature-photo-section,
  .services,
  .about-section,
  .contact-section {
    padding-top: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}