:root {
  --ink: #1d1714;
  --black: #0f0d0b;
  --coffee: #5d4638;
  --cocoa: #7a5a46;
  --gold: #b88a44;
  --gold-soft: #d9bd88;
  --nude: #d7b59d;
  --rose: #bb7d78;
  --olive: #777a5f;
  --ivory: #fbf7f1;
  --porcelain: #fffaf5;
  --line: rgba(29, 23, 20, 0.13);
  --shadow: 0 20px 48px rgba(15, 13, 11, 0.13);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 30px;
  color: var(--ivory);
  background: rgba(15, 13, 11, 0.82);
  border-bottom: 1px solid rgba(255, 250, 245, 0.12);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(15, 13, 11, 0.95);
  box-shadow: 0 16px 36px rgba(15, 13, 11, 0.22);
}

.brand {
  display: grid;
  gap: 0;
  min-width: 170px;
  line-height: 1.05;
}

.brand span {
  color: var(--gold-soft);
  font-family: Georgia, serif;
  font-size: 0.86rem;
}

.brand strong {
  color: var(--ivory);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > a,
.nav-dropdown > button {
  position: relative;
  border: 0;
  padding: 9px 10px;
  color: rgba(255, 250, 245, 0.86);
  background: transparent;
  font-size: 0.92rem;
}

.main-nav > a:hover,
.main-nav > a.is-active,
.nav-dropdown > button:hover {
  color: var(--gold-soft);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 250px;
  display: grid;
  padding: 10px;
  background: var(--porcelain);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.dropdown-menu a {
  padding: 10px;
  border-radius: 6px;
  color: var(--coffee);
}

.dropdown-menu a:hover {
  background: #f3e8dd;
  color: var(--black);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta {
  color: var(--black);
  background: var(--gold-soft);
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--black);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.btn-primary:hover {
  background: #e7c98f;
}

.btn-light {
  color: var(--ivory);
  background: rgba(255, 250, 245, 0.12);
  border-color: rgba(255, 250, 245, 0.45);
}

.btn-light:hover {
  background: rgba(255, 250, 245, 0.2);
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(184, 138, 68, 0.46);
}

.btn-outline:hover {
  background: #f2e6d8;
  border-color: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--cocoa);
  font-weight: 700;
}

.text-link:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 250, 245, 0.22);
  border-radius: 6px;
  background: rgba(255, 250, 245, 0.07);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ivory);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.88), rgba(15, 13, 11, 0.68) 42%, rgba(15, 13, 11, 0.18) 76%),
    linear-gradient(0deg, rgba(15, 13, 11, 0.38), rgba(15, 13, 11, 0.06));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding-top: var(--header-height);
}

.hero-content h1,
.page-hero h1 {
  margin: 0 0 22px;
  font-family: Georgia, serif;
  font-size: 3.65rem;
  line-height: 1.04;
  font-weight: 500;
}

.hero-home .hero-content h1 {
  font-size: 3.18rem;
}

.hero-content p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 0 0 28px;
  color: rgba(255, 250, 245, 0.84);
  font-size: 1.12rem;
}

.hero-actions,
.card-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-focus {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 20px;
}

.hero-focus a {
  min-height: 96px;
  padding: 15px;
  border: 1px solid rgba(217, 189, 136, 0.32);
  border-radius: var(--radius);
  background: rgba(15, 13, 11, 0.42);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-focus a:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 189, 136, 0.72);
  background: rgba(15, 13, 11, 0.58);
}

.hero-focus span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-focus strong {
  display: block;
  color: rgba(255, 250, 245, 0.9);
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section {
  padding: 96px 0;
  background: var(--porcelain);
}

.section-muted {
  background: #f3e9de;
}

.section-dark {
  color: var(--ivory);
  background: var(--black);
}

.section-location {
  padding-top: 40px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.location-panel h2,
.page-section h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 2.45rem;
  line-height: 1.14;
  font-weight: 500;
}

.section-dark .section-heading h2,
.section-dark .section-heading p,
.section-dark .eyebrow {
  color: var(--ivory);
}

.section-heading p,
.section-copy p,
.page-section p {
  margin: 0;
  color: var(--coffee);
}

.section-dark .section-heading p {
  color: rgba(255, 250, 245, 0.76);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: center;
}

.portrait-stack {
  position: relative;
}

.portrait-stack img,
.image-panel img,
.feature-card img,
.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.portrait-stack img {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.award-note {
  position: absolute;
  right: -18px;
  bottom: 24px;
  width: min(230px, 72%);
  padding: 16px;
  border-radius: var(--radius);
  color: var(--black);
  background: var(--gold-soft);
  box-shadow: 0 16px 34px rgba(15, 13, 11, 0.2);
}

.award-note span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.award-note strong {
  font-family: Georgia, serif;
  font-size: 1.48rem;
  font-weight: 500;
}

.authority-grid,
.metric-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.authority-grid article,
.metric-grid article,
.contact-card,
.testimonial,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.78);
}

.authority-grid article,
.metric-grid article,
.contact-card {
  padding: 20px;
}

.authority-grid strong,
.metric-grid strong,
.contact-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--black);
  font-family: Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
}

.authority-grid span,
.metric-grid span,
.contact-card span {
  color: var(--coffee);
  font-size: 0.95rem;
}

.service-grid,
.course-grid,
.gallery-grid,
.testimonial-grid,
.video-grid,
.proof-grid,
.feedback-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.feature-card,
.result-card,
.video-card,
.proof-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
  box-shadow: 0 16px 36px rgba(15, 13, 11, 0.08);
}

.section-dark .video-card {
  border-color: rgba(255, 250, 245, 0.14);
  background: #181411;
}

.feature-card img {
  aspect-ratio: 4 / 5;
}

.feature-card > div,
.result-copy,
.video-card h3,
.proof-card > div {
  padding: 22px;
}

.feature-card h3,
.result-card h3,
.video-card h3,
.proof-card h3,
.testimonial strong {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 600;
}

.section-dark .video-card h3 {
  color: var(--ivory);
}

.feature-card p,
.result-card p,
.proof-card p,
.testimonial p {
  margin: 0 0 18px;
  color: var(--coffee);
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.comparison figure {
  position: relative;
  margin: 0;
  min-width: 0;
  background: var(--black);
}

.comparison img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.comparison figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 9px;
  border-radius: 5px;
  color: var(--ivory);
  background: rgba(15, 13, 11, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--coffee);
  background: transparent;
  font-weight: 800;
}

.filter-button.is-active,
.filter-button:hover {
  color: var(--black);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.gallery-item.is-hidden {
  display: none;
}

.center-actions {
  justify-content: center;
  margin-top: 34px;
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #070605;
}

.testimonial {
  padding: 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial p {
  font-size: 1.02rem;
}

.testimonial strong {
  margin-bottom: 0;
  color: var(--cocoa);
  font-size: 1rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

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

.faq-question {
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 18px 54px 18px 18px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 800;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.3rem;
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 18px;
  color: var(--coffee);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 18px;
}

.location-panel {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(184, 138, 68, 0.28);
  border-radius: var(--radius);
  background: #1a1410;
  color: var(--ivory);
}

.location-panel h2 {
  color: var(--ivory);
}

.location-panel p {
  margin: 0;
  color: rgba(255, 250, 245, 0.78);
}

.site-footer {
  color: rgba(255, 250, 245, 0.76);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 30px;
  padding: 54px 0;
}

.footer-grid strong,
.footer-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--ivory);
  font-family: Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 250, 245, 0.72);
}

.footer-grid a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  padding: 18px 20px 28px;
  text-align: center;
  border-top: 1px solid rgba(255, 250, 245, 0.1);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--black);
  background: var(--gold-soft);
  box-shadow: 0 14px 34px rgba(15, 13, 11, 0.22);
  font-weight: 800;
}

.page-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 84px) 0 82px;
  color: var(--ivory);
  background: var(--black);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 780px;
}

.page-hero p {
  max-width: 720px;
}

.page-section {
  padding: 88px 0;
}

.page-section-muted {
  background: #f3e9de;
}

.image-panel {
  min-height: 420px;
}

.image-panel img {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.content-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 250, 245, 0.78);
  color: var(--coffee);
}

.process-steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-steps article {
  counter-increment: steps;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--porcelain);
}

.process-steps article::before {
  content: counter(steps, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.6rem;
}

.process-steps h3 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-size: 1.18rem;
}

.process-steps p {
  color: var(--coffee);
}

.proof-card img {
  aspect-ratio: 4 / 5;
}

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

.feedback-preview {
  margin-top: 28px;
}

.feedback-shot {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: 0 14px 30px rgba(15, 13, 11, 0.12);
}

.feedback-shot img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.contact-card {
  min-height: 180px;
}

.contact-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--cocoa);
  font-weight: 800;
}

.contact-card a:hover {
  color: var(--gold);
}

.lead-panel {
  padding: 34px;
  border-radius: var(--radius);
  color: var(--ivory);
  background: var(--black);
}

.lead-panel h2 {
  color: var(--ivory);
}

.lead-panel p {
  color: rgba(255, 250, 245, 0.76);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    max-height: calc(100vh - var(--header-height));
    overflow: auto;
    display: none;
    padding: 18px 24px 26px;
    background: rgba(15, 13, 11, 0.98);
    border-bottom: 1px solid rgba(255, 250, 245, 0.12);
  }

  .nav-open .main-nav {
    display: grid;
    gap: 8px;
  }

  .main-nav > a,
  .nav-dropdown > button {
    width: 100%;
    padding: 13px 0;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 2.9rem;
  }

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

  .service-grid,
  .course-grid,
  .gallery-grid,
  .testimonial-grid,
  .proof-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(15, 13, 11, 0.9), rgba(15, 13, 11, 0.6) 58%, rgba(15, 13, 11, 0.32)),
      linear-gradient(90deg, rgba(15, 13, 11, 0.78), rgba(15, 13, 11, 0.1));
  }

  .hero-media {
    object-position: 61% center;
  }

  .hero-home .hero-media {
    object-position: 78% center;
  }

  .hero-content {
    align-self: end;
    padding-bottom: 56px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero-home .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p:not(.eyebrow),
  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .section,
  .page-section {
    padding: 68px 0;
  }

  .section-heading h2,
  .section-copy h2,
  .location-panel h2,
  .page-section h2 {
    font-size: 2rem;
  }

  .two-column,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .award-note {
    right: 12px;
    width: min(230px, calc(100% - 24px));
  }

  .authority-grid,
  .metric-grid,
  .contact-grid,
  .service-grid,
  .course-grid,
  .gallery-grid,
  .testimonial-grid,
  .video-grid,
  .proof-grid,
  .feedback-grid,
  .content-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .location-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

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

  .floating-whatsapp {
    display: none;
  }

  .hero-focus a {
    min-height: 86px;
    padding: 14px;
  }

  .hero-focus strong {
    font-size: 0.96rem;
  }
}

@media (max-width: 460px) {
  .hero-actions,
  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .btn,
  .text-link {
    width: 100%;
  }

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

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

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