:root {
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --sage: #7f9278;
  --sage-dark: #4f614b;
  --brown: #7a5d43;
  --gold: #c9a76b;
  --ink: #2d2823;
  --muted: #756f67;
  --line: rgba(122, 93, 67, 0.16);
  --shadow: 0 22px 60px rgba(77, 58, 41, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 14px 45px rgba(77, 58, 41, 0.1);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.main-nav,
.hero-actions,
.contact-info div {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 10px;
  color: var(--sage-dark);
  font-weight: 800;
}

.brand > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-logo {
  width: 66px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 6px 10px rgba(77, 58, 41, 0.12));
}

.main-nav {
  gap: 4px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--sage-dark);
  background: rgba(127, 146, 120, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--sage-dark);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 72px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  filter: saturate(0.9);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(45, 40, 35, 0.72), rgba(45, 40, 35, 0.32), rgba(45, 40, 35, 0.12)),
    linear-gradient(0deg, rgba(251, 247, 239, 0.92), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 8vw, 6.7rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.14rem;
  line-height: 1.75;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.service-card:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: var(--sage-dark);
  box-shadow: 0 18px 34px rgba(45, 40, 35, 0.18);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.btn-large {
  width: fit-content;
  min-height: 58px;
  padding-inline: 26px;
}

.hero-note {
  display: inline-flex;
  max-width: 100%;
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.94rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

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

.section-heading p,
.section-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.about-section,
.benefits-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: center;
}

.professional-card {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.professional-card img {
  min-height: 420px;
}

.professional-card.is-missing img {
  display: none;
}

.photo-placeholder {
  display: none;
  min-height: 420px;
  place-items: center;
  color: var(--sage-dark);
  background:
    linear-gradient(135deg, rgba(127, 146, 120, 0.2), transparent),
    var(--paper);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  text-align: center;
}

.professional-card.is-missing .photo-placeholder {
  display: grid;
}

.professional-card figcaption {
  padding: 20px;
  background: var(--paper);
}

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

.professional-card strong {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.professional-card span {
  color: var(--muted);
  font-weight: 700;
}

.services-grid,
.testimonials-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.benefits-list article,
blockquote,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 16px 42px rgba(77, 58, 41, 0.08);
}

.service-card {
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p,
.benefits-list p,
blockquote p {
  color: var(--muted);
  line-height: 1.65;
}

.benefits-section {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.benefits-image {
  min-height: 640px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

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

.benefits-list article {
  padding: 20px;
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr 1fr;
}

.gallery-grid figure {
  min-height: 360px;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gallery-grid figure:nth-child(2) {
  margin-top: 42px;
}

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

blockquote {
  margin: 0;
  padding: 24px;
}

blockquote p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.25;
}

cite {
  color: var(--sage-dark);
  font-style: normal;
  font-weight: 800;
}

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

.contact-card {
  display: grid;
  justify-items: start;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(127, 146, 120, 0.14), transparent),
    var(--paper);
}

.contact-info {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.contact-info div {
  display: grid;
  gap: 4px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 18;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #2f8f55;
  box-shadow: 0 18px 36px rgba(47, 143, 85, 0.28);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

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

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

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    border-radius: 24px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    display: none;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.active {
    display: grid;
  }

  .main-nav a {
    min-height: 44px;
  }

  .about-section,
  .benefits-section {
    grid-template-columns: 1fr;
  }

  .benefits-image {
    min-height: 430px;
  }

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

  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure,
  .gallery-grid figure:nth-child(2) {
    min-height: 300px;
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero-content,
  .section,
  .site-footer {
    width: min(100% - 22px, 1120px);
  }

  .hero {
    min-height: 92vh;
    padding-top: 120px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(45, 40, 35, 0.58), rgba(45, 40, 35, 0.7)),
      linear-gradient(0deg, rgba(251, 247, 239, 0.94), transparent 30%);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero p {
    font-size: 1rem;
  }

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

  .hero-note {
    border-radius: 18px;
    line-height: 1.45;
  }

  .section {
    padding: 68px 0;
  }

  .professional-card,
  .professional-card img,
  .photo-placeholder {
    min-height: 360px;
  }

  .services-grid,
  .benefits-list,
  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 26px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 92px;
  }

  .whatsapp-float {
    right: 11px;
    bottom: 12px;
    left: 11px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.52rem;
  }

  h2 {
    font-size: 2rem;
  }

  .brand > span:last-child {
    max-width: 180px;
  }
}
