:root {
  --forest: #405f59;
  --forest-dark: #29433e;
  --sand: #bd916b;
  --cream: #f8eee8;
  --paper: #fffaf6;
  --ink: #333331;
  --muted: #716c67;
  --line: rgba(64, 95, 89, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 5vw;
  background: rgba(255, 250, 246, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--forest-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: .01em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 30px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 2rem;
  color: var(--muted);
  font-size: .92rem;
}

nav a,
.text-link {
  transition: color .2s ease;
}

nav a:hover,
nav a:focus-visible,
.text-link:hover {
  color: var(--forest);
}

.header-cta {
  justify-self: end;
  padding: .75rem 1.15rem;
  color: white;
  background: var(--forest);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
}

.menu-button {
  display: none;
  border: 0;
  background: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  min-height: calc(100vh - 82px);
  padding: clamp(3rem, 4vw, 4rem) 7vw;
  background:
    radial-gradient(circle at 83% 42%, rgba(189, 145, 107, .13), transparent 30%),
    linear-gradient(120deg, #fffaf6 0%, #fffaf6 55%, #f8eee8 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -8%;
  width: 36vw;
  height: 36vw;
  border: 1px solid rgba(189, 145, 107, .18);
  border-radius: 50%;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--sand);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 400;
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.7rem;
  color: var(--forest-dark);
  font-size: clamp(3rem, 5vw, 5.6rem);
  letter-spacing: -.045em;
}

.hero-text {
  max-width: 570px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 54px;
  padding: .8rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s, background .2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  min-height: 58px;
  padding-inline: 1.7rem;
  color: white;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(41, 67, 62, .18);
  animation: professor-button-pulse 2s infinite;
}

.button.primary:hover {
  background: var(--forest-dark);
  box-shadow: 0 18px 38px rgba(41, 67, 62, .24);
}

@keyframes professor-button-pulse {
  0%,
  100% {
    box-shadow: 0 14px 34px rgba(41, 67, 62, .18), 0 0 0 0 rgba(64, 95, 89, .45);
  }

  50% {
    box-shadow: 0 14px 34px rgba(41, 67, 62, .18), 0 0 0 10px rgba(64, 95, 89, 0);
  }
}

.text-link {
  color: var(--forest);
  font-size: .94rem;
  font-weight: 600;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  color: var(--forest);
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-note span+span {
  padding-left: 1rem;
  border-left: 1px solid rgba(64, 95, 89, .28);
}

.hero-visual {
  position: relative;
  width: min(100%, 680px);
  padding: 1.1rem;
  justify-self: end;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 3.2rem 3.4rem;
  border: 1px solid rgba(189, 145, 107, .38);
  border-radius: 48% 48% 18px 18px;
}

.image-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(390px, 44vw, 610px);
  padding: clamp(2rem, 4vw, 4.5rem);
  background: rgba(248, 238, 232, .92);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 48% 48% 18px 18px;
  box-shadow: 0 35px 90px rgba(61, 45, 36, .14);
  overflow: hidden;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(189, 145, 107, .18);
  border-radius: inherit;
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(.9) contrast(1.02);
}

.visual-caption {
  position: relative;
  margin: 1.35rem 0 0 3.5rem;
  color: var(--forest);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.benefits {
  padding: clamp(5rem, 9vw, 9rem) 7vw;
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: .45fr 1fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: 4rem;
}

.section-heading .eyebrow {
  align-self: start;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--forest-dark);
  font-size: clamp(2.5rem, 4.8vw, 5rem);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(64, 95, 89, .25);
}

.benefit-grid article {
  position: relative;
  padding: 2.4rem clamp(1rem, 3vw, 3rem) 1rem 0;
}

.benefit-grid article+article {
  padding-left: clamp(1rem, 3vw, 3rem);
  border-left: 1px solid rgba(64, 95, 89, .25);
}

h3 {
  margin-bottom: .8rem;
  color: var(--forest-dark);
  font-size: 1.3rem;
  font-weight: 600;
}

.benefit-grid p,
.service-intro>p:last-child,
.service-list p {
  color: var(--muted);
}

.services {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 9vw, 9rem) 7vw;
}

.service-intro>p:last-child {
  max-width: 560px;
  margin-top: 1.7rem;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 2rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
}

.service-list article>div {
  display: flex;
  gap: 1.3rem;
}

.service-list span {
  color: var(--sand);
  font-size: .75rem;
}

.service-list h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.service-list p {
  margin: 0;
}

.location {
  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 8vw, 8rem) 7vw;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.location-action p {
  max-width: 520px;
  margin: 0 0 1.6rem;
  color: var(--muted);
}

.map-button {
  width: max-content;
  color: white;
  background: var(--forest);
}

.map-button:hover {
  background: var(--forest-dark);
}

.map-button .mdi {
  font-size: 21px;
  line-height: 1;
}

.contact {
  padding: clamp(5rem, 9vw, 8rem) 7vw;
  color: white;
  text-align: center;
  background: var(--forest);
}

.contact .eyebrow {
  color: #e0b896;
}

.contact h2 {
  max-width: 880px;
  margin: 0 auto 1.5rem;
  color: white;
}

.contact>p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, .74);
}

.button.light {
  color: var(--forest-dark);
  background: var(--paper);
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, .8);
  font-size: .92rem;
}

.contact-links a:hover {
  color: white;
}

.service-page-hero {
  padding: clamp(5rem, 10vw, 9rem) 7vw;
  background: linear-gradient(120deg, #fffaf6 0%, #f8eee8 100%);
}

.service-page-hero h1 {
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.service-page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.about-page-hero {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 460px);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) 7vw;
  background: linear-gradient(120deg, #fffaf6 0%, #f8eee8 100%);
}

.about-page-hero h1 {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.about-page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
}

.about-page-hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 48% 48% 18px 18px;
  box-shadow: 0 25px 60px rgba(61, 45, 36, .16);
}

.about-page-content {
  max-width: 900px;
  padding: clamp(5rem, 9vw, 9rem) 7vw;
}

.about-page-content h2 {
  margin-bottom: 2rem;
}

.about-page-content p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.about-address {
  max-width: 720px;
  margin-top: 2rem;
  color: var(--muted);
  font-style: normal;
}

.about-address a:not(.button) {
  color: var(--forest);
  font-weight: 600;
}

.about-address .button {
  margin-top: 1rem;
}

.service-page-details {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) 7vw;
  background: var(--cream);
}

.service-page-details h2 {
  margin-bottom: 1.8rem;
}

.service-page-details p:not(.eyebrow),
.service-page-details li {
  color: var(--muted);
}

.service-page-details ul {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
}

.service-page-details li + li {
  margin-top: .75rem;
}

.service-page-faq {
  max-width: 900px;
  padding: clamp(5rem, 9vw, 9rem) 7vw;
}

.service-page-faq h2 {
  margin-bottom: 2.5rem;
}

.service-page-faq details {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.service-page-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.service-page-faq summary {
  color: var(--forest-dark);
  cursor: pointer;
  font-weight: 600;
}

.service-page-faq details p {
  max-width: 700px;
  margin: 1rem 0 0;
  color: var(--muted);
}

.service-page-content {
  padding: clamp(5rem, 9vw, 9rem) 7vw;
}

.service-page-content h2 {
  max-width: 800px;
  margin-bottom: 4rem;
}

.service-page-cta {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: clamp(5rem, 9vw, 8rem) 7vw;
  color: white;
  text-align: center;
  background: var(--forest);
}

.service-page-cta h2 {
  width: 100%;
  margin-bottom: 1.2rem;
  color: white;
  text-align: center;
}

.service-page-cta p {
  width: 100%;
  max-width: 650px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, .78);
  text-align: center;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem 7vw;
  color: var(--muted);
  background: var(--paper);
  font-size: .78rem;
}

.footer-brand {
  font-size: 1.15rem;
}

.footer-brand .brand-logo {
  width: auto;
  height: 30px;
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: #25d366;
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
  animation: whatsapp-pulse 2s infinite;
  transition: transform .2s;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float .mdi {
  font-size: 30px;
  line-height: 1;
  color: white;
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(0, 0, 0, .2), 0 0 0 0 rgba(37, 211, 102, .55);
  }

  50% {
    box-shadow: 0 12px 28px rgba(0, 0, 0, .2), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    gap: 6px;
    padding: 10px;
  }

  .menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--forest);
    transition: transform .2s;
  }

  nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 1rem 5vw;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: .8rem 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 5rem;
  }

  .hero-visual {
    max-width: 660px;
    justify-self: center;
  }

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

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

  .about-page-hero {
    grid-template-columns: 1fr;
  }

  .about-page-hero img {
    max-width: 520px;
  }

  .service-page-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 70px;
  }

  nav {
    top: 70px;
  }

  .hero {
    min-height: auto;
    padding: 4.5rem 6vw 5rem;
  }

  .hero::before {
    width: 90vw;
    height: 90vw;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
  }

  .hero-note {
    align-items: flex-start;
    flex-direction: column;
    gap: .55rem;
  }

  .hero-note span+span {
    padding-left: 0;
    border-left: 0;
  }

  .hero-visual {
    padding: .6rem;
  }

  .about-page-hero img {
    height: 400px;
  }

  .hero-visual::before {
    inset: 0 0 2.7rem 1.6rem;
  }

  .image-frame {
    min-height: 340px;
    padding: 1.5rem;
  }

  .visual-caption {
    margin-left: 1.5rem;
    letter-spacing: .14em;
  }

  .button {
    width: 100%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

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

  .benefit-grid article+article {
    padding-left: 0;
    border-top: 1px solid rgba(64, 95, 89, .25);
    border-left: 0;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .contact-links,
  footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
