:root {
  --bg-dark: #12181f;
  --bg-soft: #efefed;
  --ink: #222735;
  --white: #f6f7f8;
  --primary: #58f5cf;
  --primary-soft: #9ff7e3;
  --line: #d6d4cf;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--bg-soft);
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 245, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(88, 245, 207, 0.16);
  color: var(--primary);
  font-size: 1.2rem;
}

.logo-text {
  font-family: 'Eagle Lake', serif;
  font-size: clamp(1rem, 2.2vw, 1.48rem);
  letter-spacing: 0.03em;
}

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

.nav-links a {
  text-decoration: none;
  color: #2a2e39;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.language-picker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-picker label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #4a505f;
}

.language-picker select {
  border: 1px solid #c7d3d0;
  border-radius: 999px;
  background: #f5f8f7;
  padding: 0.35rem 0.75rem;
}

.section-theme-dark {
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.theme-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 24, 31, 0.78), rgba(18, 24, 31, 0.78));
  z-index: -1;
}

.section-theme-light {
  background: var(--bg-soft);
  color: var(--ink);
}

.hero {
  background-image: url('https://images.unsplash.com/photo-1520523839897-bd0b52f945a0?auto=format&fit=crop&w=2000&q=80');
  min-height: 88vh;
}

.hero-content {
  padding: 7.5rem 0 5rem;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-title {
  margin: 1rem 0 1rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-title .accent {
  color: var(--primary);
}

.hero-sub {
  margin: 0 0 1rem;
  font-size: clamp(1.1rem, 2.5vw, 2rem);
}

.hero-list {
  margin: 1.2rem 0 2rem;
  padding-left: 1.2rem;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  line-height: 1.75;
}

.btn-outline,
.btn-primary {
  display: inline-block;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
}

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

.about {
  min-height: 60vh;
  display: grid;
  place-items: center;
}

.center {
  text-align: center;
}

h2 {
  margin: 0.8rem 0 1rem;
  font-family: 'Eagle Lake', serif;
  font-size: clamp(2rem, 4.6vw, 4rem);
  color: inherit;
}

.lead {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2.1vw, 1.9rem);
  line-height: 1.55;
}

.services,
.reviews {
  padding: 5rem 0;
}

.services {
  background-image: url('https://images.unsplash.com/photo-1520523839897-bd0b52f945a0?auto=format&fit=crop&w=2000&q=80');
}

.spark {
  margin: 0;
  color: var(--primary);
  font-size: 2.2rem;
}

.section-copy {
  max-width: 760px;
  margin: 0 auto 2rem;
  font-size: 1.25rem;
  color: #5e6068;
}

.section-theme-dark .section-copy {
  color: #e0e5ea;
}

.service-cards,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.card,
.review-card {
  background: #f8f8f7;
  border: 1px solid #d8e2df;
  border-radius: var(--radius);
  padding: 1.8rem;
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e6f6f2;
  color: var(--primary);
  font-size: 1.35rem;
}

h3 {
  font-family: 'Eagle Lake', serif;
  color: #1f2432;
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  margin: 1.1rem 0 0.6rem;
}

.card p,
.review-card p {
  margin: 0;
  line-height: 1.55;
  font-size: 1.13rem;
  color: #4e5360;
}

.underline {
  width: 120px;
  height: 4px;
  background: var(--primary);
  margin: 0.2rem auto 2rem;
}

.stars {
  color: var(--primary) !important;
  font-size: 1.3rem !important;
  margin-bottom: 1rem !important;
}

.author {
  margin-top: 1rem !important;
  font-weight: 700;
  color: #1f2432 !important;
}

.author span {
  margin-left: 0.5rem;
  font-weight: 500;
  color: #6d717d;
}

.btn-primary {
  margin-top: 1.7rem;
  color: #fff;
  background: var(--primary);
}

.contact {
  margin-top: 1rem;
  background-image: url('https://images.unsplash.com/photo-1513883049090-d0b7439799bf?auto=format&fit=crop&w=2000&q=80');
  padding: 5rem 0;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}


.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.socials a {
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
}


.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.social-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
}

.quote-form {
  display: grid;
  gap: 0.9rem;
}

.quote-form input,
.quote-form textarea {
  border: none;
  border-radius: 999px;
  padding: 1rem 1.2rem;
  font-size: 1.05rem;
}

.quote-form textarea {
  border-radius: 28px;
  resize: vertical;
}

.quote-form button {
  justify-self: start;
  background: transparent;
  cursor: pointer;
}

.footer {
  background: #0f141b;
  color: #d6ebe6;
  text-align: center;
  padding: 1.1rem 0;
}

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

  .service-cards,
  .review-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}
