:root {
  --cream: #f5f8fb;
  --sand: #dbe7f2;
  --copper: #2f6f8e;
  --clay: #0f4c5c;
  --charcoal: #1f2328;
  --graphite: #4a5560;
  --white: #ffffff;
  --shadow-soft: 0 20px 45px rgba(20, 32, 44, 0.14);
  --shadow-strong: 0 30px 75px rgba(15, 28, 41, 0.24);
}

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

body {
  font-family: "Sora", sans-serif;
  background: radial-gradient(circle at top, #f4f8ff, #e1e9f2);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  max-width: 100%;
}

.topbar {
  background: rgba(44, 42, 42, 0.92);
  color: var(--white);
  padding: 10px 8vw;
  font-size: 0.9rem;
}

.topbar-content {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.topbar-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
}

.topbar-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.topbar-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.72rem;
}

.topbar a {
  color: var(--sand);
  font-weight: 600;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

a {
  color: inherit;
  text-decoration: none;
}

h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.2px;
}

.hero {
  padding: 40px 8vw 90px;
  background: linear-gradient(120deg, #f4f9ff 0%, #d8e6f4 55%, #c8d8ea 100%);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.6;
  z-index: 0;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: rgba(200, 122, 82, 0.18);
  top: -120px;
  left: -80px;
}

.hero::after {
  width: 420px;
  height: 420px;
  background: rgba(44, 42, 42, 0.08);
  bottom: -220px;
  right: -120px;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 110px;
  width: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(12, 24, 36, 0.45));
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--graphite);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav.open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button.primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.button.primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.button.ghost {
  border-color: rgba(44, 42, 42, 0.2);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 4.2vw, 4.4rem);
  line-height: 1.1;
  margin: 16px 0 20px;
}

.lead {
  font-size: 1.15rem;
  color: var(--graphite);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--clay);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(44, 42, 42, 0.08);
}


.hero-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
  animation: float 7s ease-in-out infinite;
}

.hero-image {
  border-radius: 22px;
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-soft);
}

.hero-image img {
  object-position: center 35%;
}

.hero-card-info {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
}

.stat {
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--graphite);
}

.section {
  padding: 90px 8vw;
}

.section-title {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 3.3vw, 3.2rem);
  margin: 12px 0 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(44, 42, 42, 0.06);
  display: grid;
  gap: 12px;
}

.why-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

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

.service-card {
  background: var(--white);
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(44, 42, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card h3 {
  font-size: 1.05rem;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.service-image {
  border-radius: 16px;
  overflow: hidden;
  height: 150px;
  margin-bottom: 16px;
  box-shadow: 0 16px 30px rgba(44, 42, 42, 0.12);
}

.service-image img {
  object-position: center 35%;
}

.highlight {
  background: linear-gradient(120deg, #fdf7f0, #f1dfcc);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.highlight-text h2 {
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
}

.highlight-text p {
  font-size: 1.08rem;
  color: var(--graphite);
}

.highlight-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.highlight-image img {
  object-position: center 30%;
}

.checklist {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 10px;
  font-size: 1.02rem;
}

.checklist li::before {
  content: "✓";
  color: var(--clay);
  font-weight: 700;
  margin-right: 10px;
}

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

.gallery-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  aspect-ratio: 4 / 3;
}

.gallery-card figcaption {
  padding: 16px 18px;
  font-weight: 600;
}


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

.testimonial-card {
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--graphite);
}

.testimonial-name {
  margin-top: 14px;
  font-weight: 700;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clay);
}

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

.faq-item {
  background: var(--white);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 10px;
  color: var(--graphite);
}

.map-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  height: 380px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.callout {
  padding-top: 0;
}

.callout-box {
  background: linear-gradient(120deg, #2c2a2a 0%, #4d4744 100%);
  color: var(--white);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-strong);
}

.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 70px 8vw 40px;
  position: relative;
  overflow: hidden;
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  z-index: 0;
}

.footer::before {
  width: 260px;
  height: 260px;
  background: rgba(200, 122, 82, 0.35);
  top: -120px;
  left: -60px;
}

.footer::after {
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.08);
  bottom: -180px;
  right: -120px;
}

.footer-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.footer-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.footer-card h3 {
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.footer-card a {
  color: var(--sand);
}

.footer-card .name {
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--white);
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input,
.contact-form textarea {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.footer-card p,
.footer-card a {
  font-size: 1rem;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  flex: 0 0 auto;
  margin-top: 3px;
}

.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(200, 122, 82, 0.8);
  box-shadow: 0 0 0 3px rgba(200, 122, 82, 0.2);
}

.contact-form .button {
  justify-content: center;
  width: 100%;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    gap: 18px;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.85);
    padding: 16px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    display: none;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav-links a.button {
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav.open .nav-links {
    display: flex;
  }

  .hero-card {
    animation: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 720px) {
  .hero {
    padding: 30px 6vw 70px;
  }

  .section {
    padding: 70px 6vw;
  }

  .hero-card-info {
    flex-direction: column;
  }

  .callout-box {
    padding: 30px;
  }

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

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

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

  .topbar {
    padding: 8px 6vw;
    font-size: 0.8rem;
  }

  .topbar-content {
    justify-content: flex-start;
    gap: 10px 14px;
  }

  .topbar-item {
    white-space: normal;
  }
}
