/* ── Variables ─────────────────────────────── */
:root {
  --color-bg: #f9f9f9;
  --color-text: #111;
  --color-muted: #555;
  --color-accent: #d8613c;
  --color-accent-hover: #b84e2e;
  --color-card-bg: #fff;
  --color-border: #e0e0e0;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-heading: "Cardo", Georgia, serif;
  --max-width: 960px;
  --gap: 1.5rem;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Base ──────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover, a:focus-visible {
  text-decoration: underline;
  color: var(--color-accent-hover);
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

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

/* ── Layout ────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 3rem 0;
}

/* ── Header / Nav ──────────────────────────── */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--color-text);
  text-decoration: none;
}

/* ── Hero ──────────────────────────────────── */
.hero {
  text-align: center;
  padding: 3.5rem 0 2rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Hero Image ────────────────────────────── */
.hero-image {
  padding: 1rem 0 0;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 380px;
}

/* ── Services ──────────────────────────────── */
.services h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.service-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* ── Map ───────────────────────────────────── */
.map {
  padding: 2rem 0;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
}

/* ── Footer ────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 640px) {
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  section { padding: 2rem 0; }

  .nav-links { gap: 1rem; }

  .map iframe { height: 220px; }
}


/* ── Contact Form ──────────────────────────── */
.contact-form-section {
  background: #fff;
  border-top: 1px solid var(--color-border);
}

.contact-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid var(--color-accent);
}

.contact-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

.contact-header p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

.required {
  color: var(--color-accent);
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  padding: 0.6rem 0;
  border: none;
  border-bottom: 2px solid var(--color-border);
  font-family: inherit;
  font-size: 1rem;
  background: transparent;
  color: var(--color-text);
  transition: border-color 0.3s;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--color-accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
  font-weight: 300;
}

.form-full {
  margin-top: 0.5rem;
}

.form-full textarea {
  width: 100%;
  resize: vertical;
  min-height: 80px;
  border-bottom: 2px solid var(--color-border);
}

.form-submit {
  margin-top: 2rem;
  text-align: right;
}

.form-submit button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 0.8rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit button:hover {
  background: var(--color-accent-hover);
}

@media (max-width: 640px) {
  .contact-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 1.5rem;
  }

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

  .form-submit {
    text-align: center;
  }

  .form-submit button {
    width: 100%;
  }
}
