:root {
  --ink: #0e1a16;
  --forest: #12261e;
  --forest-2: #1a3329;
  --forest-3: #243f34;
  --gold: #c9a96e;
  --gold-2: #dbbf86;
  --gold-3: #a8884d;
  --cream: #f6f1e8;
  --ivory: #fbf8f2;
  --paper: #fffdf9;
  --muted: #6b736e;
  --line: rgba(18, 38, 30, 0.12);
  --shadow: 0 18px 50px rgba(14, 26, 22, 0.12);
  --radius: 2px;
  --max: 1180px;
  --header-h: 132px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-3);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
.serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.28s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest);
}

.btn-gold:hover {
  background: var(--gold-2);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--forest);
}

.btn-dark {
  background: var(--forest);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--forest-2);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 38, 30, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
}

.header-bar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--ivory);
  padding: 4px;
  border-radius: 4px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav {
  border-top: 1px solid rgba(201, 169, 110, 0.16);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  min-height: 52px;
}

.nav-inner a {
  display: inline-block;
  color: rgba(246, 241, 232, 0.82);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding: 14px 18px;
  white-space: nowrap;
}

.nav-inner a:hover {
  color: var(--gold);
}

.header-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  background:
    linear-gradient(105deg, rgba(14, 26, 22, 0.92) 0%, rgba(18, 38, 30, 0.78) 48%, rgba(18, 38, 30, 0.55) 100%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
  color: var(--cream);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: auto 0 0 auto;
  width: min(42vw, 520px);
  height: 70%;
  background: url("../assets/pattern.svg") right bottom / contain no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0 88px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.95;
  color: var(--paper);
  max-width: 12ch;
  margin: 18px 0 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}

.hero-lead {
  max-width: 52ch;
  color: rgba(246, 241, 232, 0.82);
  font-size: 1.08rem;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 520px;
  border-top: 1px solid rgba(201, 169, 110, 0.25);
  padding-top: 26px;
}

.hero-stats strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.7);
}

.hero-card {
  background: rgba(251, 248, 242, 0.96);
  color: var(--ink);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.hero-card h3 {
  font-size: 1.7rem;
  margin: 8px 0 18px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.hero-card li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.05;
  margin: 12px 0 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.bg-cream {
  background: var(--cream);
}

.bg-forest {
  background: var(--forest);
  color: var(--cream);
}

.bg-forest .section-head p,
.bg-forest .muted {
  color: rgba(246, 241, 232, 0.72);
}

/* Pain */
.pain-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.pain-visual {
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(18, 38, 30, 0.2), rgba(18, 38, 30, 0.55)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  position: relative;
}

.pain-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--paper);
  padding: 18px 20px;
  max-width: 230px;
}

.pain-badge strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  line-height: 1.1;
}

.pain-list {
  display: grid;
  gap: 16px;
}

.pain-item {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 22px 22px 24px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.pain-num {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  color: var(--gold-3);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
}

.pain-item h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.pain-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px 26px 30px;
  min-height: 250px;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--gold-3);
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201, 169, 110, 0.28);
}

.process-step {
  padding: 32px 28px 8px 0;
  position: relative;
}

.process-step + .process-step {
  padding-left: 28px;
  border-left: 1px solid rgba(201, 169, 110, 0.28);
}

.process-step span {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.process-step p {
  color: rgba(246, 241, 232, 0.72);
  font-size: 0.95rem;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 12px 0 18px;
}

.why-copy p {
  color: var(--muted);
  margin-bottom: 22px;
}

.why-points {
  display: grid;
  gap: 14px;
}

.why-points li {
  list-style: none;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.why-photo {
  min-height: 480px;
  background:
    linear-gradient(180deg, transparent 40%, rgba(18, 38, 30, 0.5)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  position: relative;
}

.quote-box {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  background: var(--forest);
  color: var(--cream);
  padding: 22px 24px;
}

.quote-box p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  line-height: 1.25;
  font-style: italic;
}

.quote-box small {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* Cases */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
}

.case-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-3);
  border: 1px solid rgba(201, 169, 110, 0.45);
  padding: 4px 10px;
  margin-bottom: 16px;
}

.case-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.case-card p {
  color: var(--muted);
}

.case-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--forest-2);
  letter-spacing: 0.04em;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial {
  background: rgba(255, 253, 249, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.22);
  padding: 28px;
}

.testimonial p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1.35;
  font-style: italic;
  margin-bottom: 22px;
}

.testimonial strong {
  display: block;
  font-size: 0.95rem;
  font-style: normal;
  font-family: "Outfit", sans-serif;
}

.testimonial span {
  color: var(--gold);
  font-size: 0.8rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 1.08rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--gold-3);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 24px 22px;
  color: var(--muted);
}

/* Contact */
.contact-wrap {
  display: grid;
  gap: 40px;
  justify-items: center;
  text-align: center;
}

.contact-info {
  max-width: 720px;
}

.contact-info .eyebrow {
  justify-content: center;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 12px 0 16px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: min(520px, 100%);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.contact-list li {
  display: block;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.contact-list a {
  display: block;
}

.contact-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-3);
  font-weight: 500;
  line-height: 1.4;
}

.contact-value {
  display: block;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink);
  word-break: break-word;
}

.wa-note {
  margin-top: 28px;
  padding: 18px 20px;
  background: #e9f6ee;
  border-left: 3px solid #25d366;
  font-size: 0.92rem;
  text-align: left;
}

.form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
  display: grid;
  gap: 16px;
  width: min(760px, 100%);
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest-2);
  min-width: 0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--ivory);
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.form-success {
  display: none;
  padding: 16px;
  background: #e9f6ee;
  color: #14532d;
  font-size: 0.95rem;
}

.form-success.show {
  display: block;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

/* Footer */
.site-footer {
  background: #0b1612;
  color: rgba(246, 241, 232, 0.78);
  padding: 48px 0 24px;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
  justify-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.footer-logo {
  width: 168px;
  height: auto;
  background: var(--ivory);
  padding: 10px 12px;
  border-radius: 4px;
}

.footer-brand p {
  margin-top: 0;
  max-width: 48ch;
  font-size: 0.92rem;
}

.footer-nav {
  width: 100%;
  max-width: 480px;
}

.footer-nav h4 {
  color: var(--gold);
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  display: block;
  width: 100%;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 8px 0;
}

.footer-nav a {
  display: inline-block;
  padding: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(246, 241, 232, 0.5);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

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

@media (max-width: 1100px) {
  .header-cta .btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: block;
    background: var(--forest);
    border-top: 1px solid rgba(201, 169, 110, 0.16);
  }

  .nav.open .nav-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 0;
    padding: 8px 0 16px;
  }

  .nav.open .nav-inner a {
    display: block;
    width: 100%;
    white-space: normal;
    line-height: 1.6;
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  }

  .hero-grid,
  .pain-grid,
  .why-grid,
  .services-grid,
  .process,
  .cases-grid,
  .testimonials,
  .form-row,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .process-step + .process-step {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(201, 169, 110, 0.28);
  }

  .hero-card {
    max-width: 480px;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }

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

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 48px 0 56px;
    gap: 32px;
  }
}
