:root {
  --cream: #f6f0e8;
  --ink: #1e1b16;
  --sand: #f2e7d8;
  --clay: #d18b5a;
  --sage: #5b7c6a;
  --sun: #f6b352;
  --plum: #4a3b4b;
  --mist: #f9f7f3;
  --shadow: rgba(30, 27, 22, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: linear-gradient(120deg, #f6f0e8 0%, #f1efe9 30%, #f8f3ea 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: var(--plum);
  color: #fff;
  font-size: 0.9rem;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  flex-wrap: wrap;
}

.top-bar__actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.hero {
  padding: 2rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at top, rgba(246, 179, 82, 0.4), transparent 70%);
  z-index: 0;
}

.hero__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.brand__mark {
  background: var(--clay);
  color: #fff;
  font-weight: 700;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
}

.brand small {
  display: block;
  font-size: 0.8rem;
  color: #574f48;
}

.nav__actions {
  display: flex;
  gap: 0.8rem;
}

.hero__main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}

.hero__banner {
  background: linear-gradient(135deg, #fff 0%, #f9f5f0 100%);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 20px 40px var(--shadow);
}

.banner-offices {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(30, 27, 22, 0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.banner-offices__head h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  white-space: nowrap;
}

.banner-offices__head p {
  color: #5a5149;
  font-size: 0.9rem;
  max-width: 200px;
}

.office-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.office-card {
  background: var(--mist);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: inset 0 0 0 1px rgba(30, 27, 22, 0.05);
}

.office-card h4 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.office-card p {
  color: #5a5149;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.office-links {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.office-links a {
  color: var(--sage);
  font-weight: 600;
}

.hero__banner h1 {
  font-family: "Newsreader", serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
  color: var(--ink);
  line-height: 1.2;
}

.banner-subtitle {
  font-size: 1.05rem;
  color: #4b433c;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.banner-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary,
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 1rem;
}

.cta-primary {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 14px 28px rgba(209, 139, 90, 0.4);
}

.cta-phone {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 14px 28px rgba(91, 124, 106, 0.4);
}

.cta-primary:hover,
.cta-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(30, 27, 22, 0.2);
}

.cta-icon {
  font-size: 1.2rem;
}

.hero__services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
}

.hero-service {
  background: #fff;
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 12px 24px var(--shadow);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px var(--shadow);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--clay), #f4a460);
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.hero-service h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.hero-service p {
  font-size: 0.9rem;
  color: #6b5f56;
}

.hero__benefit-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  background: linear-gradient(135deg, #f4e6d4, #f7f1e9);
  border-radius: 24px;
  padding: 1.8rem;
}

.hero__flow {
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 18px 36px var(--shadow);
}

.hero__flow .section-head {
  margin-bottom: 1.8rem;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.flow-step {
  background: var(--mist);
  border-radius: 18px;
  padding: 1.1rem;
  min-height: 135px;
  box-shadow: inset 0 0 0 1px rgba(30, 27, 22, 0.06);
}

.flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.flow-step h3 {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.flow-step p {
  font-size: 0.85rem;
  color: #5a5149;
}

.flow-connector {
  display: none;
}

.sector-strip {
  background: linear-gradient(135deg, #f4e6d4, #f8f2ea);
  border-radius: 20px;
  padding: 1.6rem;
  display: grid;
  gap: 1.2rem;
}

.sector-head h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.sector-head p {
  color: #5a5149;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.sector-chip {
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 8px 16px var(--shadow);
}

.sector-chip--link {
  background: var(--clay);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.sector-chip--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(209, 139, 90, 0.4);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.benefit-item strong {
  color: var(--ink);
  font-size: 1rem;
}

.benefit-item span {
  color: #6b5f56;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero__nav {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .hero__banner {
    padding: 2rem;
  }

  .banner-offices {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .banner-offices__head p {
    max-width: 100%;
  }

  .flow-grid {
    grid-template-columns: 1fr;
  }

  .flow-connector {
    display: none;
  }

  .banner-cta {
    flex-direction: column;
  }

  .cta-primary,
  .cta-phone {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .hero__banner {
    padding: 1.5rem;
  }

  .hero__banner h1 {
    font-size: 1.8rem;
  }

  .hero__services {
    grid-template-columns: 1fr;
  }
}

section {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.6rem;
}

.section-head p {
  color: #4b433c;
  max-width: 720px;
  margin: 0 auto;
}

.services {
  background: var(--mist);
}

.service-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-block {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding: 2.2rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 32px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--shadow);
}

.service-block__content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.service-block__content ul {
  margin: 1rem 0 1.2rem;
  padding-left: 1.2rem;
  color: #534b44;
}

.service-block__content li {
  margin-bottom: 0.4rem;
}

.link {
  font-weight: 600;
  color: var(--sage);
}

.service-block__visual {
  border-radius: 20px;
  padding: 1.6rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
}

.accent-one {
  background: linear-gradient(135deg, #c56b52, #f2b36d);
}

.accent-two {
  background: linear-gradient(135deg, #54776a, #8cc0a5);
}

.accent-three {
  background: linear-gradient(135deg, #8a5a44, #d79b66);
}

.accent-four {
  background: linear-gradient(135deg, #3c4d6a, #6f87a6);
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.emotional {
  background: linear-gradient(135deg, #f4e6d4, #f7f1e9);
  text-align: center;
}

.emotional__inner h2 {
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.emotional__inner p {
  max-width: 720px;
  margin: 0 auto 1.4rem;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.benefits span {
  background: #fff;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 10px 20px var(--shadow);
}

.gallery {
  background: #fff;
}

.slider-wrapper {
  display: none;
}

.slider-nav {
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 24px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.trust {
  background: var(--sand);
}

.trust-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1.5fr;
  align-items: start;
}

.trust-images {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.trust-images img {
  border-radius: 16px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 12px 24px var(--shadow);
}

.trust-points div {
  margin-bottom: 1.4rem;
}

.trust-points h3 {
  margin-bottom: 0.4rem;
}

.locations {
  background: #fff;
}

.locations {
  background: #fff;
}

.location-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 2.5rem;
}

.location-card {
  background: var(--mist);
  padding: 1.8rem;
  border-radius: 18px;
  box-shadow: 0 12px 22px var(--shadow);
  border-left: 4px solid var(--clay);
}

.location-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.location-card p {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #534b44;
}

.location-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0;
}

.visit-info {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background: linear-gradient(135deg, #f4e6d4, #f7f1e9);
  border-radius: 20px;
  padding: 1.8rem;
}

.info-box {
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 8px 16px var(--shadow);
}

.info-box h4 {
  margin-bottom: 0.6rem;
  color: var(--clay);
}

.info-box p {
  font-size: 0.9rem;
  color: #534b44;
  line-height: 1.6;
}

.testimonials {
  background: linear-gradient(135deg, #f0e7dc, #f7f2ea);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-grid article {
  background: #fff;
  padding: 1.8rem;
  border-radius: 18px;
  box-shadow: 0 14px 26px var(--shadow);
}

.testimonial-slider h4 {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.final-cta {
  background: var(--plum);
  color: #fff;
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  text-align: center;
}

.final-cta__inner h2 {
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.final-cta__inner span {
  display: block;
  color: var(--sun);
}

.final-cta__subtext {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0.5rem 0;
}

.final-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer {
  background: #1c1813;
  color: #f0e7dc;
  padding: 3rem 0 1rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 2rem;
}

.footer h3 {
  margin-bottom: 0.8rem;
  color: #fff;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer a {
  color: #f2e7d8;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--clay);
}

.socials {
  display: grid;
  gap: 0.5rem;
}

.footer__bottom {
  text-align: center;
  border-top: 1px solid rgba(240, 231, 220, 0.2);
  padding-top: 1rem;
  font-size: 0.85rem;
}

.footer__bottom p {
  margin-bottom: 0.4rem;
}

.primary,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 12px 20px rgba(209, 139, 90, 0.35);
}

.ghost {
  border: 1px solid #cbbba8;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.primary:hover,
.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(30, 27, 22, 0.15);
}


@media (max-width: 720px) {
  .top-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__meta {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  section,
  .hero__content,
  .hero__visual,
  .service-block,
  .testimonial-grid article {
    animation: fadeUp 0.8s ease both;
  }

  .service-block:nth-child(2) { animation-delay: 0.1s; }
  .service-block:nth-child(3) { animation-delay: 0.2s; }
  .service-block:nth-child(4) { animation-delay: 0.3s; }
  .service-block:nth-child(5) { animation-delay: 0.4s; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
