@font-face {
  font-family: "Montserrat Local";
  src: url("assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Local";
  src: url("assets/fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Local";
  src: url("assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Qelirole";
  src: url("assets/fonts/Fantasy Qelirole Serif.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --charcoal: #1a1e21;
  --taupe: #9c897e;
  --silver: #a5a8a6;
  --offwhite: #dedddb;
  --white: #ffffff;
  --ink: #111416;
  --muted: #5d6465;
  --line-dark: rgba(222, 221, 219, 0.2);
  --line-light: rgba(26, 30, 33, 0.14);
  --shadow: 0 24px 80px rgba(10, 12, 14, 0.18);
  --font-display: "Qelirole", Georgia, serif;
  --font-body: "Montserrat Local", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --space-page: clamp(20px, 5vw, 72px);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

section {
  scroll-margin-top: 96px;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--taupe);
  outline-offset: 4px;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--charcoal);
  background: var(--offwhite);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 12px var(--space-page);
  background: var(--charcoal);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 18px 50px rgba(10, 12, 14, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: clamp(56px, 5vw, 72px);
  max-width: clamp(220px, 22vw, 330px);
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: normal;
}

.menu-toggle {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--offwhite);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.site-nav {
  position: fixed;
  inset: 92px 0 0 0;
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 32px var(--space-page);
  background: var(--charcoal);
  border-bottom: 1px solid var(--line-dark);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--offwhite);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav .nav-cta {
  justify-content: center;
  width: 62px;
  height: 62px;
  min-height: 62px;
  margin-top: 8px;
  padding: 0;
  border: 1px solid var(--taupe);
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--taupe);
}

.section-dark {
  color: var(--offwhite);
  background: var(--charcoal);
}

.section-light {
  background: var(--offwhite);
  color: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  gap: 28px;
  padding: 122px var(--space-page) 58px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(26, 30, 33, 0.78), rgba(26, 30, 33, 0.92)), url("assets/images/brand-watermark.png");
  background-size: cover, min(54vw, 760px);
  background-repeat: no-repeat;
  background-position: center, 52% 48%;
  opacity: 0.18;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--taupe);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  max-width: 15.5ch;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 10vw, 5rem);
}

h2 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 8vw, 4.3rem);
}

h3 {
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(222, 221, 219, 0.86);
  font-size: clamp(1rem, 4vw, 1.18rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.whatsapp-icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: currentColor;
}

.btn-primary {
  color: var(--charcoal);
  background: var(--taupe);
  box-shadow: 0 18px 42px rgba(156, 137, 126, 0.22);
}

.btn-secondary {
  color: var(--offwhite);
  border-color: var(--line-dark);
  background: rgba(222, 221, 219, 0.04);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li,
.about-meta span {
  padding: 8px 11px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(222, 221, 219, 0.84);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.hero-media {
  align-self: end;
}

.hero-media img {
  width: min(100%, 500px);
  margin-left: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}

.benefits,
.areas,
.process,
.faq {
  padding: 62px var(--space-page);
}

.benefits {
  background: var(--white);
}

.compact-heading,
.section-heading {
  max-width: 860px;
}

.compact-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.compact-heading h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.compact-heading p:not(.section-kicker) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading h2 {
  max-width: 16ch;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading p:not(.section-kicker) {
  max-width: 650px;
  color: var(--muted);
}

.benefit-grid,
.area-grid,
.steps {
  display: grid;
  gap: 14px;
}

.benefit-grid article,
.area-card,
.steps li {
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
}

.benefit-grid span,
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--taupe);
  font-size: 0.75rem;
  font-weight: 700;
}

.benefit-grid p,
.area-card p,
.steps p,
.faq p {
  color: var(--muted);
}

.benefit-grid article:first-child {
  color: var(--offwhite);
  background: var(--charcoal);
}

.benefit-grid article:first-child p {
  color: rgba(222, 221, 219, 0.78);
}

.area-card {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.area-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 8vw, 2.2rem);
  font-weight: 400;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.area-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 44px;
  margin-top: 18px;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.area-featured {
  color: var(--offwhite);
  background: var(--charcoal);
}

.area-featured p {
  color: rgba(222, 221, 219, 0.78);
}

.area-featured a {
  color: var(--taupe);
}

.business {
  display: grid;
  gap: 34px;
  padding: 64px var(--space-page);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.business h2 {
  max-width: 12ch;
}

.business-copy {
  max-width: 680px;
  min-width: 0;
}

.business-copy p {
  color: rgba(222, 221, 219, 0.82);
}

.business-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.business-copy li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
}

.business .text-link {
  color: var(--taupe);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about {
  display: grid;
  gap: 30px;
  padding: 72px var(--space-page);
}

.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-copy p {
  color: rgba(222, 221, 219, 0.82);
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

details {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--taupe);
  font-size: 1.5rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact-section {
  display: grid;
  gap: 34px;
  align-items: center;
  padding: 72px var(--space-page);
  background:
    linear-gradient(rgba(26, 30, 33, 0.94), rgba(26, 30, 33, 0.98)),
    url("assets/images/brand-watermark.png");
  background-size: cover, min(46vw, 620px);
  background-repeat: no-repeat;
  background-position: center, 8% 50%;
  color: var(--offwhite);
}

.contact-copy h2 {
  max-width: 14ch;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.contact-copy h2 strong,
.contact-copy h2 em {
  color: var(--offwhite);
  font-style: normal;
}

.contact-copy p {
  max-width: 520px;
  color: rgba(222, 221, 219, 0.78);
  font-size: 1.05rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(222, 221, 219, 0.82);
  font-size: 1rem;
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.contact-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: var(--taupe);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(222, 221, 219, 0.18);
  border-radius: 14px;
  background: rgba(17, 20, 22, 0.72);
  box-shadow: 0 20px 70px rgba(10, 12, 14, 0.28);
}

.form-row {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(222, 221, 219, 0.82);
  font-size: 0.98rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(222, 221, 219, 0.88);
  color: var(--charcoal);
  font: inherit;
}

.contact-form input {
  min-height: 44px;
  padding: 10px 14px;
}

.contact-form textarea {
  min-height: 118px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(93, 100, 101, 0.66);
}

.contact-form .btn {
  width: min(100%, 210px);
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: grid;
  gap: 12px;
  padding: 24px var(--space-page);
  color: rgba(222, 221, 219, 0.86);
  background: #111416;
  border-top: 1px solid rgba(222, 221, 219, 0.14);
}

.site-footer p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  width: 64px;
  height: 64px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  color: var(--white);
  background: #0bbf37;
  box-shadow: 0 14px 34px rgba(10, 12, 14, 0.3);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .site-nav a {
    font-size: 0.72rem;
  }

  .site-nav .nav-cta {
    margin-top: 0;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.76fr);
    align-items: center;
    gap: 52px;
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(3.8rem, 5.3vw, 5.1rem);
  }

  h2 {
    font-size: clamp(3rem, 5.4vw, 4.7rem);
  }

  .hero-media img {
    width: min(39vw, 520px);
  }

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

  .benefit-grid article {
    grid-column: span 2;
  }

  .benefit-grid article:first-child,
  .benefit-grid article:nth-child(2) {
    grid-column: span 3;
  }

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

  .area-card {
    grid-column: span 2;
  }

  .area-featured {
    grid-column: span 4;
  }

  .areas .compact-heading,
  .process .compact-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.78fr);
    align-items: end;
    gap: 42px;
    max-width: none;
  }

  .areas .compact-heading p:not(.section-kicker),
  .process .compact-heading p:not(.section-kicker) {
    margin-bottom: 12px;
  }

  .business,
  .about,
  .contact-section,
  .site-footer {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  }

  .business-copy {
    justify-self: end;
  }

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

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

@media (min-width: 1120px) {
  .benefits,
  .areas,
  .process,
  .faq,
  .business,
  .about,
  .contact-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.78fr);
    gap: 70px;
  }

  h1 {
    font-size: clamp(4.15rem, 4.7vw, 5.55rem);
  }

  h2 {
    font-size: clamp(3.55rem, 4.4vw, 4.9rem);
  }

  .areas,
  .process {
    padding-top: 76px;
    padding-bottom: 76px;
  }
}

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

  .brand img {
    height: 56px;
    max-width: min(58vw, 220px);
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .site-nav {
    inset: 78px 0 0 0;
  }

  .contact-section {
    padding-bottom: 116px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-media img {
    width: 100%;
    max-height: 540px;
  }

  .floating-whatsapp {
    left: auto;
    right: 16px;
    width: 58px;
    height: 58px;
    min-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
