:root {
  --color-ink: #1a1c1f;
  --color-charcoal: #26292e;
  --color-cream: #f4f3f1;
  --color-steel: #5b6470;
  --color-accent: #e2483b;
  --color-accent-dark: #c53527;
  --color-muted: #8a8f96;
  --color-border: #33373d;
  --font-heading: 'Segoe UI', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--color-accent-dark);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-ink);
  color: var(--color-ink);
}

.btn-outline:hover {
  background: var(--color-ink);
  color: var(--color-cream);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--color-ink);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 28, 31, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.logo-accent {
  color: var(--color-accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,28,31,0.55) 0%, rgba(26,28,31,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  margin-bottom: 12px;
}

.hero-content .tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
section {
  padding: 96px 0;
}

.section-subtitle {
  color: var(--color-muted);
  margin-top: 8px;
  margin-bottom: 48px;
}

.services-section h2,
.contact-section h2,
.about-section h2 {
  font-size: 2.2rem;
}

.services-section h2, .contact-section h2 {
  text-align: center;
}

.services-section .section-subtitle,
.contact-section .section-subtitle {
  text-align: center;
}

/* Services */
.services-section {
  background: var(--color-charcoal);
  color: #fff;
}

.services-section .section-subtitle {
  color: #b7bcc2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--color-ink);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card h3 {
  padding: 16px 18px;
  font-size: 1.05rem;
}

/* About */
.about-section {
  background: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.about-photo {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.about-text p {
  margin-bottom: 20px;
  color: #3a3d42;
}

.about-text h2 {
  margin-bottom: 20px;
}

/* Contact */
.contact-section {
  background: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: stretch;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border: 1px solid #e4e1dc;
  border-radius: 6px;
  padding: 32px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--color-muted);
  font-weight: 600;
}

.contact-value {
  font-size: 1.1rem;
  color: var(--color-ink);
  text-decoration: none;
}

a.contact-value:hover {
  color: var(--color-accent);
}

.map-wrapper {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e4e1dc;
  min-height: 320px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-ink);
  color: var(--color-muted);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 800px) {
  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .about-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 0;
  }
}

@media (max-width: 500px) {
  .nav-links {
    display: none;
  }
}
