/* --------- Base / theme --------- */

:root {
  --bg: #f5f5f7;
  --bg-elevated: #ffffff;
  --text: #111111;
  --muted: #6e6e73;
  --accent: #dd7935;
  --border-soft: #d2d2d7;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius-lg: 24px;
  --radius-pill: 999px;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* Centering container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --------- Header --------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 245, 247, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(210, 210, 215, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.logo {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Language toggle */

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(210, 210, 215, 0.9);
}

.lang-btn {
  border: none;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.lang-btn.is-active {
  background: #dd7935;
  color: #ffffff;
}

/* --------- Hero / Request a quote --------- */

.hero-quote {
  padding: 72px 0 80px;
}

.hero-quote-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

/* Left: text */

.hero-quote-text {
  max-width: 520px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.hero-quote-heading {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.2vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-quote-subtitle {
  margin: 0 0 10px;
  font-size: 17px;
  color: var(--muted);
}

.hero-quote-note {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--muted);
}

.hero-quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Button */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 9px 22px;
  font-size: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.08s ease;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(221, 121, 53, 0.28);
}

.btn.primary:hover {
  background: #c56d2f;
  box-shadow: 0 16px 30px rgba(221, 121, 53, 0.36);
  transform: translateY(-1px);
}

/* Right: image */

.hero-quote-media {
  display: flex;
  justify-content: flex-end;
}

.hero-quote-image {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  display: block;
  background: radial-gradient(circle at 20% 0, #ffffff, #f3f3f6);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* --------- Contact section --------- */

.contact {
  padding: 64px 0;
  border-top: 1px solid rgba(210, 210, 215, 0.8);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.contact-heading {
  margin: 0 0 8px;
  font-size: 28px;
}

.contact-subtitle {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.55;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-left: 60px;
}

.contact-item {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
}

.contact-value:hover {
  text-decoration: underline;
}

.contact-link {
  color: var(--accent);
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}


/* Responsive adjustments */

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

.contact-details {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --------- Footer --------- */

.site-footer {
  padding: 20px 0 30px;
  border-top: 1px solid rgba(210, 210, 215, 0.8);
  font-size: 12px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

/* --------- Responsive --------- */

@media (max-width: 900px) {
  .hero-quote-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero-quote-media {
    justify-content: flex-start;
  }

  .hero-quote {
    padding-top: 56px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    height: 52px;
  }

  .hero-quote {
    padding: 48px 0 56px;
  }

  .hero-quote-heading {
    font-size: 30px;
  }

  .hero-quote-image {
    max-width: 100%;
  }

  .lang-switch {
    transform: translateX(4px);
  }
}
