:root {
  --ink: #17211f;
  --muted: #5c6861;
  --forest: #0f3d3e;
  --moss: #6f8f72;
  --sage: #b9c6aa;
  --sand: #d9c8a9;
  --paper: #f7f3ec;
  --white: #fffdf8;
  --line: rgba(23, 33, 31, 0.12);
  --shadow: 0 24px 70px rgba(15, 61, 62, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(247, 243, 236, 0.82);
  border-bottom: 1px solid rgba(15, 61, 62, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-weight: 800;
  font-size: 13px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.menu-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

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

.menu-open .menu-button span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-button span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-links {
  position: fixed;
  inset: 72px 16px auto;
  display: none;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.menu-open .nav-links {
  display: flex;
}

.nav-links a {
  padding: 13px 10px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links .nav-cta {
  margin-top: 8px;
  text-align: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
}

.section-band,
.split-section,
.services-section,
.editorial-section,
.cta-section,
.location-section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  min-height: 100svh;
  align-items: center;
  gap: 34px;
  padding-top: 112px;
  background:
    linear-gradient(135deg, rgba(247, 243, 236, 0.94), rgba(217, 200, 169, 0.42)),
    radial-gradient(circle at top right, rgba(111, 143, 114, 0.26), transparent 34%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(48px, 10vw, 104px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 6vw, 68px);
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-subtitle {
  max-width: 620px;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.5;
}

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

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 16px 34px rgba(15, 61, 62, 0.24);
}

.button.secondary {
  color: var(--forest);
  border-color: rgba(15, 61, 62, 0.28);
  background: rgba(255, 253, 248, 0.64);
}

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

.trust-row {
  margin-top: 28px;
}

.trust-row span,
.quiet-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.56);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-photo-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.portrait-card {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 8px 24px rgba(15, 61, 62, 0.18);
  backdrop-filter: blur(18px);
}

.portrait-card img {
  width: 56px;
  height: 56px;
  border: 2px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.portrait-card strong,
.portrait-card span {
  display: block;
}

.portrait-card strong {
  font-size: 15px;
}

.portrait-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

/* Gallery section */
.gallery-section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.photo-grid {
  columns: 2;
  column-gap: 12px;
  margin-top: 34px;
}

.photo-item {
  break-inside: avoid;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
  background: var(--line);
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.photo-item:hover img {
  transform: scale(1.03);
}

.gallery-cta {
  margin-top: 24px;
  text-align: center;
}

/* Editorial section with real photo */
.editorial-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.editorial-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.value-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-strip article {
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--white);
}

.value-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.value-strip strong {
  font-size: 17px;
  line-height: 1.35;
}

.split-section,
.editorial-section {
  display: grid;
  gap: 36px;
  background: var(--white);
}

.section-copy {
  max-width: 680px;
}

.text-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--forest);
  font-weight: 800;
  border-bottom: 2px solid rgba(15, 61, 62, 0.28);
}

.method-panel {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(247, 243, 236, 0.92), rgba(255, 253, 248, 0.96));
  box-shadow: var(--shadow);
}

.method-line {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
}

.method-line:last-child {
  border-bottom: 0;
}

.method-line span {
  color: var(--moss);
  font-weight: 800;
}

.method-line strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.method-line p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.services-section {
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services-grid,
.location-grid {
  display: grid;
  gap: 16px;
}

.service-card,
.location-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 16px 40px rgba(23, 33, 31, 0.06);
}

.card-index,
.location-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card p,
.location-card p {
  margin-bottom: 0;
}

.editorial-section {
  align-items: center;
  background: var(--forest);
}

.editorial-section h2,
.editorial-section .section-copy p {
  color: var(--white);
}

.editorial-section .section-copy p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.76);
}

/* .editorial-visual removed — replaced by .editorial-photo with real image */

/* Benefits section */
.benefits-section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, var(--forest) 0%, #17211f 100%);
}

.benefits-section .section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.benefits-section .eyebrow {
  color: var(--sand);
}

.benefits-section h2 {
  color: var(--white);
}

.benefits-section .section-heading p {
  color: rgba(255, 253, 248, 0.7);
  font-size: 18px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 253, 248, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.benefit-card {
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 253, 248, 0.04);
  transition: background 0.2s ease;
}

.benefit-card:hover {
  background: rgba(255, 253, 248, 0.08);
}

.benefit-icon {
  color: var(--sand);
  font-size: 10px;
  margin-bottom: 16px;
  letter-spacing: 0.15em;
}

.benefit-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 10px;
}

.benefit-card p {
  color: rgba(255, 253, 248, 0.65);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quiet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.quiet-list span {
  border-color: rgba(255, 253, 248, 0.22);
  background: rgba(255, 253, 248, 0.08);
  color: rgba(255, 253, 248, 0.9);
}

.cta-section {
  background: var(--paper);
}

.cta-box {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(32px, 7vw, 72px);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--forest), #17211f);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  max-width: 760px;
  color: var(--white);
}

.cta-box p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.76);
}

.location-section {
  background: var(--white);
}

.location-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: #111916;
  color: var(--white);
}

.site-footer p {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(255, 253, 248, 0.68);
}

.site-footer a {
  width: fit-content;
  color: var(--sand);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #16774d;
  box-shadow: 0 14px 30px rgba(22, 119, 77, 0.3);
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0.35);
  }
  45% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

@media (min-width: 720px) {
  .value-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 720px) {
  .photo-grid {
    columns: 3;
  }
}

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

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    padding: 10px 12px;
    font-size: 14px;
  }

  .nav-links .nav-cta {
    margin-top: 0;
    padding: 11px 18px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  }

  .value-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .split-section,
  .editorial-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
    align-items: center;
  }

  .editorial-section .editorial-photo {
    order: 2;
  }

  .editorial-photo img {
    height: 500px;
  }

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

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

@media (max-width: 520px) {
  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
  }

  .floating-whatsapp {
    left: 18px;
  }

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