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

:root {
  --white:      #ffffff;
  --bg:         #f3f2ee;
  --dark:       #1c1c1c;
  --text:       #4a4a4a;
  --muted:      #9b9c9e;
  --border:     #e3e1dc;
  --shadow-sm:  0 1px 2px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.07);
  --radius:     14px;
  --max-w:      1160px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── Header ────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: block;
  flex-shrink: 0;
}

.logo img {
  height: 38px;
  width: auto;
  display: block;
}

/* Nav is empty now but ready for scroll links */
nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

nav a:hover {
  color: var(--dark);
}

/* ── Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 440px;
  overflow: hidden;
  background: #1a1a1a;
}

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

/* ── Contact Section ───────────────────────────── */
.contact {
  background: var(--bg);
  padding: 2rem 2rem 5rem;
  position: relative;
  z-index: 10;
}

.contact .container {
  margin-top: -8rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.card-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Opening hours */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.55rem 0;
  font-size: 0.875rem;
}

.hours-table td:first-child {
  color: var(--text);
  padding-right: 1.5rem;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--dark);
  font-weight: 500;
  white-space: nowrap;
}

.hours-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Phone card */
.phone-number {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 1.75rem;
  line-height: 1;
  text-decoration: none;
}

.phone-number:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Spaced variant of card-title for secondary sections within a card */
.card-title--spaced {
  margin-block: 1.75rem 1rem;
}

/* Email CTA in phone card */
.email-cta {
  display: inline-block;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, border-color 0.15s;
}

.email-cta:hover {
  color: var(--dark);
  border-color: var(--dark);
}

/* Address card */
.address-lines {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text);
}

.address-lines strong {
  display: block;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.address-lines .divider {
  display: block;
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

.address-lines a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.15s;
}

.address-lines a:hover {
  border-color: var(--text);
}

/* ── KPI Section ───────────────────────────────── */
.kpis {
  background: var(--white);
  padding: 5.5rem 2rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.kpi-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.kpi-item p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text);
}

/* ── About Section ─────────────────────────────── */
.about {
  background: var(--bg);
  padding: 5.5rem 2rem;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.about p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
}

.about p:last-child {
  margin-bottom: 0;
}

/* ── Footer ────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.45);
  padding: 2rem;
  text-align: center;
  font-size: 0.8rem;
}

footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

footer a:hover {
  color: rgba(255,255,255,0.9);
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .card--phone {
    order: -1;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 800px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 0 1.25rem;
  }

  .logo img {
    height: 30px;
  }

  .hero {
    height: 55vw;
    min-height: 280px;
  }

  .contact,
  .kpis,
  .about {
    padding: 3.5rem 1.25rem;
  }

  .card {
    padding: 1.75rem;
  }

  .phone-number {
    font-size: 2rem;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about h2 {
    font-size: 1.4rem;
  }
}
