/* Consolidated editorial theme */
:root {
  --page-bg: #f7f3ee;
  --paper: #fcfaf7;
  --ink: #211917;
  --muted: #746761;
  --accent: #A29475;
  --accent-text: #71644d;
  --line: rgba(45, 33, 29, 0.14);
  --surface-strong: #fffdfa;
  --text: #241917;
  --text-soft: #6e5a54;
  --champagne: #d1b090;
  --gold: #A29475;
  --coffee: #4b3631;
  --coffee-soft: #6b514a;
  --line-strong: rgba(92, 63, 54, 0.22);
  --shadow-soft: 0 20px 60px rgba(58, 37, 31, 0.08);
  --shadow-strong: 0 32px 80px rgba(45, 28, 24, 0.14);
  --radius-xl: 36px;
}

html {
  scroll-behavior: auto !important;
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #ffffff;
  background: var(--coffee);
  transform: translateY(-150%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  overflow-y: visible;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

main {
  position: relative;
}

section {
  padding: 3.4rem 0;
}

[id] {
  scroll-margin-top: 120px;
}

.section-kicker {
  text-transform: uppercase;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(90, 60, 50, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  flex: 0 0 auto;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(20%) sepia(16%) saturate(770%) hue-rotate(324deg) brightness(91%) contrast(87%);
}

.nav-desktop {
  display: flex;
  align-items: center;
}

.nav-desktop a {
  transition: color 0.18s ease, opacity 0.18s ease;
}

.nav-desktop a:hover {
  color: var(--text);
}

.nav-desktop > a:not(.btn),
.footer-links a,
.location-hours-item a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

.nav-desktop .btn {
  margin-left: 0.2rem;
  padding: 0.66rem 1.1rem;
  color: #ffffff;
  background: #4b3631;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: transparent;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-line + .menu-line {
  margin-top: 5px;
}

.menu-open .menu-line:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-line:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0 1.5rem 1.2rem;
  background: rgba(252, 248, 243, 0.96);
  border-bottom: 1px solid rgba(90, 60, 50, 0.08);
}

.nav-mobile a {
  color: var(--text);
  font-size: 0.96rem;
}

.nav-mobile > a {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.nav-mobile .nav-mobile-cta {
  margin-top: 0.35rem;
  align-self: flex-start;
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  color: #ffffff;
  text-shadow: none;
}

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

.btn-outline {
  color: var(--text);
}

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

.btn:focus-visible,
.menu-toggle:focus-visible,
.nav-desktop a:focus-visible,
.nav-mobile a:focus-visible,
.service-link:focus-visible,
.socialContainer:focus-visible,
.footer-links a:focus-visible {
  outline: 2px solid var(--ink, var(--coffee));
  outline-offset: 3px;
}

.hero-inner {
  display: grid;
}

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

.hero-sub {
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero-seals {
  flex-wrap: wrap;
}

.hero-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 8px 18px rgba(61, 41, 35, 0.04);
}

.hero-seal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--champagne));
}

.hero-stage {
  position: relative;
}

.hero-stage::before {
  content: "";
  position: absolute;
}

.hero-image-frame {
  position: absolute;
  overflow: hidden;
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 8% 10% 12% 28%;
  border-radius: 44% 44% 34% 34% / 28% 28% 42% 42%;
  background: radial-gradient(circle at 42% 18%, rgba(255, 250, 245, 0.72), transparent 20%),
    linear-gradient(180deg, #493431 0%, #241917 58%, #6a5149 100%);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
  opacity: 0.92;
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: auto 6% 8% auto;
  width: 24%;
  height: 30%;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(255, 252, 248, 0.96), rgba(230, 208, 191, 0.72));
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 38px rgba(30, 19, 16, 0.1);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-image-caption {
  position: absolute;
  right: auto;
  display: block;
  z-index: 2;
  color: #fffaf6;
}

.hero-image-caption strong {
  display: inline-flex;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

#diferenciais {
  padding-top: 1.2rem;
}

.highlight-card {
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: auto auto 1.1rem 1.1rem;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.highlight-title {
  line-height: 1.1;
}

#services {
  position: relative;
  padding-bottom: 2.15rem;
}

.service-card {
  grid-column: span 2;
  overflow: hidden;
  flex-direction: column;
}

.service-card:nth-child(5) {
  grid-column: 2 / span 2;
}

.service-card:nth-child(6) {
  grid-column: 4 / span 2;
}

.service-card:nth-child(7) {
  grid-column: 6 / span 2;
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.service-title {
  line-height: 1.08;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
}

.service-link::after {
  font-size: 1rem;
}

#experience {
  position: relative;
  padding-top: 2.15rem;
}

.layout-two {
  display: grid;
}

.experience-visual {
  position: relative;
}

.experience-visual::before {
  content: "";
  position: absolute;
  inset: 10% 18% 14% 24%;
  border-radius: 40% 40% 36% 36% / 26% 26% 48% 48%;
  background: radial-gradient(circle at 42% 14%, rgba(255, 249, 242, 0.6), transparent 18%),
    linear-gradient(180deg, #604742 0%, #271c19 58%, #7e5f56 100%);
  opacity: 0.92;
}

.experience-visual::after {
  content: "";
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 34%;
  height: 38%;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(255, 252, 248, 0.92), rgba(227, 210, 196, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-copy p {
  font-size: 0.96rem;
}

#gallery {
  position: relative;
  padding-bottom: 2.15rem;
}

.gallery-item {
  overflow: hidden;
}

#testimonials {
  position: relative;
  padding-top: 2.15rem;
  padding-bottom: 2.15rem;
}

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

.result-photo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.result-label {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.result-keywords {
  gap: 0.35rem;
  flex-wrap: wrap;
}

.result-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(209, 176, 144, 0.14);
  color: var(--coffee-soft);
  font-size: 0.72rem;
}

.result-author {
  margin-bottom: 0.35rem;
}

.results-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

#faq {
  position: relative;
  padding-top: 2.15rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.faq-list {
  display: grid;
}

.faq-q {
  font-family: "Playfair Display", "Times New Roman", serif;
  line-height: 1.18;
  margin-bottom: 0.35rem;
}

.faq-cta {
  color: var(--coffee);
}

.faq-cta p {
  font-family: "Playfair Display", "Times New Roman", serif;
  line-height: 1.08;
}

.faq-cta-contact {
  display: grid;
  gap: 0.5rem;
  margin: 1.35rem 0 1.5rem;
  font-size: 0.92rem;
}

#location {
  position: relative;
}

.location-grid {
  display: grid;
  align-items: stretch;
}

.location-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coffee-soft);
}

.location-address {
  font-style: normal;
  font-family: "Playfair Display", "Times New Roman", serif;
  line-height: 1.18;
  margin: 0.8rem 0 0.9rem;
}

.location-note {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.location-hours {
  display: grid;
  gap: 0.85rem;
}

.location-hours-item strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--coffee);
}

.location-hours-item span,
.location-hours-item a {
  display: block;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.location-hours-item a {
  width: fit-content;
  text-decoration: underline;
  text-decoration-color: rgba(75, 54, 49, 0.28);
  text-underline-offset: 3px;
}

.map-wrapper {
  width: 100%;
  min-height: 100%;
  aspect-ratio: 4 / 3.1;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

#about {
  padding-top: 2rem;
}

.cta-panel {
  position: relative;
  color: #fffaf6;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
  right: -80px;
  top: -80px;
}

.cta-panel .section-kicker,
.cta-panel .section-title,
.cta-panel p {
  position: relative;
  z-index: 1;
}

.cta-panel .section-kicker {
  color: rgba(255, 246, 240, 0.8);
}

.cta-panel .section-title {
  color: #fffaf6;
}

.cta-panel p {
  max-width: 30rem;
  font-size: 0.94rem;
  color: rgba(255, 247, 240, 0.84);
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.cta-panel .btn-primary {
  background: #fffaf6;
  color: var(--coffee);
  box-shadow: 0 18px 30px rgba(22, 14, 12, 0.12);
}

.cta-panel .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fffaf6;
}

footer {
  margin-top: 1.5rem;
  padding: 2.4rem 0 2.1rem;
  color: rgba(255, 247, 242, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
}

.footer-brand {
  max-width: 22rem;
}

.footer-brand-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.45rem;
  color: #fffaf6;
  margin-bottom: 0.55rem;
}

.footer-brand-copy {
  font-size: 0.9rem;
  color: rgba(255, 247, 242, 0.68);
}

.footer-column-title {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 247, 242, 0.52);
  margin-bottom: 0.8rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 247, 242, 0.82);
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 247, 242, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 247, 242, 0.52);
}

.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 45;
}

.card {
  width: fit-content;
  height: fit-content;
  background: rgba(255, 252, 248, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(92, 63, 54, 0.08);
  box-shadow: 0 18px 40px rgba(41, 28, 24, 0.18);
  backdrop-filter: blur(8px);
}

.socialContainer {
  border-radius: 50%;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
}

.containerFour:hover {
  background-color: #128c7e;
}

.socialContainer:active {
  transform: scale(0.92);
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .services-grid .service-card {
    grid-column: auto;
  }
  
  .hero-title {
    font-size: clamp(2.4rem, 5vw, 3.35rem);
  }
}

@media (max-width: 960px) {
  .nav-desktop {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-mobile.nav-mobile-open {
    display: flex;
  }
  
  .hero {
    padding-top: 2rem;
  }
  
  .hero-inner,
    .layout-two,
    .faq-grid,
    .location-grid,
    .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .highlights-grid,
    .services-grid,
    .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .gallery-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }
}

@media (max-width: 680px) {
  section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1.15rem;
  }
  
  .hero-sub,
    .section-sub {
    font-size: 0.94rem;
  }
  
  .hero-actions,
    .cta-actions,
    .results-actions,
    .location-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-actions .btn,
    .cta-actions .btn,
    .results-actions .btn,
    .location-actions .btn {
    width: 100%;
  }
  
  .hero-seals {
    display: grid;
  }
  
  .hero-image-caption {
    left: 1rem;
    top: 1rem;
  }
  
  .highlights-grid,
    .services-grid,
    .results-grid,
    .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .highlight-card,
    .service-card,
    .result-card {
    min-height: auto;
  }
  
  .experience-visual {
    min-height: 260px;
  }
  
  .experience-copy,
    .location-card,
    .faq-cta,
    .cta-panel {
    padding: 1.5rem;
  }
  
  .location-address {
    font-size: 1.35rem;
  }
  
  .card {
    padding: 9px;
  }
  
  .socialContainer {
    width: 46px;
    height: 46px;
  }
  
  .whatsapp-float {
    right: max(0.85rem, env(safe-area-inset-right));
    bottom: max(0.85rem, env(safe-area-inset-bottom));
  }
  
  footer {
    padding-bottom: 5.75rem;
  }
}

body {
  background: var(--page-bg);
  color: var(--ink);
}

.container {
  max-width: 1240px;
  padding-inline: 2rem;
}

section {
  padding-block: 5rem;
}

.section-header {
  max-width: 36rem;
  margin-bottom: 2.4rem;
}

.section-kicker {
  margin-bottom: 1rem;
  color: var(--accent-text);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.section-title {
  margin-bottom: 0.8rem;
  font-size: clamp(2.15rem, 3.6vw, 3.6rem);
  line-height: 0.98;
}

.section-sub {
  max-width: 31rem;
  color: var(--muted);
  font-size: 0.92rem;
}

header {
  background: rgba(247, 243, 238, 0.9);
  border-bottom-color: rgba(45, 33, 29, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 72px;
}

.brand-logo {
  width: 108px;
  height: 52px;
}

.nav-desktop {
  gap: 1.35rem;
}

.nav-desktop a {
  color: #5f514c;
  font-size: 0.82rem;
}

.nav-desktop .btn {
  min-height: 40px;
  padding-inline: 1.15rem;
}

.btn {
  min-height: 46px;
  padding: 0.72rem 1.2rem;
  border-radius: 8px;
  font-size: 0.84rem;
}

.btn-primary {
  background: var(--ink);
  box-shadow: none;
}

.btn-primary:hover,
.btn-outline:hover {
  transform: none;
}

.btn-primary:hover {
  background: #3b2d29;
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  border-color: rgba(45, 33, 29, 0.24);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(45, 33, 29, 0.4);
}

.hero {
  padding: 3rem 0 4rem;
  overflow: clip;
}

.hero-inner {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(2.5rem, 5vw, 4.75rem);
  align-items: center;
}

.hero-copy .section-kicker {
  margin-bottom: 1.25rem;
}

.hero-title {
  max-width: 10.8ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3.1rem, 4.7vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero-sub {
  max-width: 30rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 1.8rem;
}

.hero-seals {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero-seal {
  min-height: 0;
  padding: 0.85rem 1rem 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #655852;
  font-size: 0.69rem;
}

.hero-seal + .hero-seal {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.hero-seal-dot {
  display: none;
}

.hero-stage {
  min-height: 500px;
}

.hero-image-frame::before,
.hero-image-frame::after {
  display: none;
}

.hero-stage::before {
  display: block;
  top: 0;
  right: 0;
  left: auto;
  width: 72%;
  height: 76%;
  border-radius: 18px;
  background: var(--accent);
  filter: none;
  opacity: 0.24;
}

.hero-image-frame {
  inset: 1rem 1rem 0 0;
  border-radius: 14px;
  background: #ded6cf;
  box-shadow: none;
}

.hero-photo {
  object-position: center 52%;
}

.hero-image-caption {
  top: auto;
  left: 1.1rem;
  bottom: 1.1rem;
}

.hero-image-caption strong {
  padding: 0.55rem 0.75rem;
  border: 0;
  border-radius: 6px;
  background: rgba(162, 148, 117, 0.94);
  color: var(--ink);
  font-size: 0.62rem;
  backdrop-filter: blur(10px);
}

#diferenciais {
  padding: 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid var(--line);
}

.highlight-card {
  min-height: 0;
  padding: 1.6rem 1.4rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.highlight-card + .highlight-card {
  border-left: 1px solid var(--line);
}

.highlight-card::before {
  display: none;
}

.highlight-title {
  margin-bottom: 0.35rem;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1rem;
}

.highlight-desc {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

#services {
  padding-block: 5.75rem;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.services-content .section-header {
  margin-bottom: 1.6rem;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.services-grid .service-card,
.service-card:nth-child(5),
.service-card:nth-child(6),
.service-card:nth-child(7) {
  grid-column: auto;
}

.service-card {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 0;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-number {
  color: var(--accent-text);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.service-body {
  padding: 0;
}

.service-title {
  margin: 0 0 0.14rem;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.02rem;
}

.service-desc {
  color: var(--muted);
  font-size: 0.73rem;
}

.service-link {
  margin: 0;
  min-width: 32px;
  min-height: 32px;
  justify-content: center;
  color: #4e403b;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-link::after {
  content: "↗";
  margin-left: 0.4rem;
}

.services-footer {
  margin-top: 1.5rem;
}

.services-visual {
  position: sticky;
  top: 104px;
  min-height: 600px;
}

.services-photo {
  position: absolute;
  object-fit: cover;
  box-shadow: none;
}

.services-photo--main {
  inset: 0 3rem 2.5rem 0;
  width: calc(100% - 3rem);
  height: calc(100% - 2.5rem);
  border-radius: 16px;
}

.services-photo--detail {
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 1 / 1;
  border: 8px solid var(--page-bg);
  border-radius: 14px;
}

#experience {
  padding-block: 5.75rem;
  background: #A29475;
}

#experience .section-kicker {
  color: #332a26;
}

.layout-two {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.experience-visual {
  min-height: 520px;
  border: 0;
  border-radius: 16px;
  background: #d8cec4;
  box-shadow: none;
  overflow: hidden;
}

.experience-visual::before,
.experience-visual::after {
  display: none;
}

.experience-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.experience-copy {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.experience-copy h2 {
  max-width: 9ch;
  margin-bottom: 1.3rem;
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
  line-height: 0.95;
}

.experience-copy p {
  color: #332a26;
  line-height: 1.8;
}

.experience-notes {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(33, 25, 23, 0.28);
}

.experience-note {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #332a26;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#gallery {
  padding-block: 5.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 240px;
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  grid-column: span 2;
  grid-row: span 1;
  border: 0;
  border-radius: 14px;
  background: #ded6cf;
  box-shadow: none;
  isolation: isolate;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(33, 25, 23, 0.62));
  pointer-events: none;
}

.gallery-item--wide {
  grid-column: span 3;
}

.gallery-item--tall {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-photo-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.gallery-photo-link:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: -6px;
}

.gallery-caption {
  pointer-events: none;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.018);
}

.gallery-caption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.75rem;
  left: 0.8rem;
  z-index: 2;
  padding: 0;
  color: #fffaf6;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-item:nth-child(3) .gallery-image {
  object-position: center bottom;
}

#testimonials {
  padding: 5.25rem 0;
  background: var(--paper);
}

.results-grid {
  gap: 0;
  border-top: 1px solid var(--line);
}

.result-card {
  position: relative;
  min-height: 190px;
  padding: 1.5rem 1.6rem 1.4rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.result-card::before {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1px;
  margin-bottom: 1rem;
  background: var(--accent);
}

.result-card + .result-card {
  padding-left: 1.6rem;
  border-left: 1px solid var(--line);
}

.result-photo {
  margin-bottom: 1.5rem;
}

.result-label {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-text);
  font-size: 0.65rem;
}

.result-keywords {
  display: none;
}

.result-author {
  color: var(--muted);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial {
  max-width: 18rem;
  color: var(--ink);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.45;
}

#faq {
  padding-block: 6rem;
}

.faq-grid {
  gap: clamp(3rem, 7vw, 7rem);
}

.faq-list {
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1.25fr);
  gap: 1.5rem;
  padding: 1.15rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-q {
  margin: 0;
  font-size: 0.95rem;
}

.faq-a {
  color: var(--muted);
  font-size: 0.8rem;
}

.faq-cta {
  align-self: start;
  padding: 2rem;
  border: 0;
  border-radius: 14px;
  background: #A29475;
  box-shadow: none;
}

.faq-cta .btn-outline {
  border-color: rgba(33, 25, 23, 0.34);
  background: rgba(252, 250, 247, 0.24);
}

.faq-cta p {
  max-width: 13ch;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

#location {
  padding-block: 6rem;
  background: var(--paper);
}

.location-grid {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 1rem;
}

.location-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}

.location-address {
  font-size: 1.45rem;
}

.location-hours-item {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.map-wrapper {
  border: 0;
  border-radius: 14px;
  box-shadow: none;
}

#about {
  padding: 1rem 0 6rem;
  background: var(--paper);
}

.cta-panel {
  padding: clamp(2rem, 5vw, 4rem);
  border: 0;
  border-radius: 16px;
  background: var(--ink);
  box-shadow: none;
}

.cta-panel::before {
  display: none;
}

.cta-panel .section-title {
  max-width: none;
}

footer {
  margin: 0;
  padding-top: 3.5rem;
  background: #181311;
}

.footer-inner {
  gap: 2rem;
}

.whatsapp-float .card {
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(252, 250, 247, 0.9);
  box-shadow: 0 10px 30px rgba(33, 25, 23, 0.14);
}

.socialContainer {
  width: 48px;
  height: 48px;
  background: var(--ink);
}

@media (max-width: 960px) {
  .container {
    padding-inline: 1.4rem;
  }
  
  section,
    #services,
    #experience,
    #gallery {
    padding-block: 4.5rem;
  }
  
  .nav-mobile {
    background: rgba(247, 243, 238, 0.98);
  }
  
  .hero-inner,
    .services-layout,
    .layout-two,
    .faq-grid,
    .location-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .hero-copy {
    max-width: 42rem;
  }
  
  .hero-title {
    max-width: 11ch;
  }
  
  .hero-stage {
    min-height: 500px;
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .highlight-card:nth-child(3) {
    border-left: 0;
  }
  
  .highlight-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  
  .services-visual {
    position: relative;
    top: auto;
    min-height: 540px;
  }
  
  .experience-copy {
    max-width: 34rem;
  }
  
  .results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    padding-inline: 1rem;
  }
  
  .header-inner {
    min-height: 62px;
  }
  
  .brand-logo {
    width: 94px;
    height: 44px;
  }
  
  .hero {
    padding: 2.6rem 0 3.2rem;
  }
  
  .hero-title {
    max-width: 10ch;
    font-size: clamp(2.65rem, 13vw, 3.6rem);
  }
  
  .hero-sub {
    font-size: 0.9rem;
  }
  
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-actions .btn {
    width: 100%;
    white-space: normal;
  }
  
  .hero-seals {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-seal {
    padding: 0.75rem 0.65rem 0 0;
    font-size: 0.62rem;
  }
  
  .hero-seal + .hero-seal {
    padding-left: 0.65rem;
  }
  
  .hero-seal:last-child {
    display: none;
  }
  
  .hero-stage {
    min-height: 360px;
  }
  
  .hero-photo {
    object-position: 60% center;
  }
  
  .highlights-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .highlight-card,
    .highlight-card:nth-child(3) {
    padding: 1rem 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  
  .highlight-card:first-child {
    border-top: 0;
  }
  
  .services-layout {
    gap: 3rem;
  }
  
  .service-card {
    grid-template-columns: 1.7rem minmax(0, 1fr) auto;
    gap: 0.65rem;
  }
  
  .service-desc {
    display: none;
  }
  
  .service-link {
    min-width: 44px;
    min-height: 44px;
    font-size: 0;
  }
  
  .service-link::after {
    margin: 0;
    font-size: 1rem;
  }
  
  .services-visual {
    min-height: 420px;
  }
  
  .services-photo--main {
    right: 2rem;
    width: calc(100% - 2rem);
  }
  
  .experience-visual,
    .experience-visual img {
    min-height: 420px;
  }
  
  .experience-copy h2 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }
  
  .experience-notes {
    gap: 0.7rem;
    justify-content: space-between;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }
  
  .gallery-item,
    .gallery-item--wide,
    .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 2;
  }
  
  .gallery-item:first-child,
    .gallery-item:last-child {
    grid-column: span 2;
  }
  
  .gallery-item:first-child {
    grid-row: span 2;
  }
  
  .results-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .result-card,
    .result-card + .result-card {
    min-height: 0;
    padding: 1.4rem 0;
    border-left: 0;
  }
  
  .result-photo {
    margin-bottom: 1rem;
  }
  
  .faq-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
  }
  
  .location-card,
    .faq-cta,
    .cta-panel {
    padding: 1.4rem;
  }
}

@media (max-width: 420px) {
  .hero-title {
    max-width: none;
    font-size: clamp(2.25rem, 10.4vw, 2.55rem);
    line-height: 0.98;
  }

  .faq-cta .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 370px) {
  .hero-actions {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Full-screen opening; the gradient keeps text readable over the real photo. */
.hero--immersive {
  position: relative;
  isolation: isolate;
  padding: 0;
  background: var(--ink);
}

.hero--immersive .hero-background,
.hero--immersive::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero--immersive .hero-background {
  z-index: -2;
  object-fit: cover;
  object-position: center 55%;
}

.hero--immersive::before {
  content: "";
  z-index: -1;
  background: linear-gradient(90deg, rgba(24, 18, 15, 0.88) 0%, rgba(24, 18, 15, 0.74) 42%, rgba(24, 18, 15, 0.2) 100%);
}

.hero--immersive .hero-inner {
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 73px);
  min-height: calc(100svh - 73px);
  padding-block: clamp(2.5rem, 7svh, 5.5rem);
}

.hero--immersive .hero-copy {
  width: 100%;
  max-width: 38rem;
}

.hero--immersive .hero-title {
  max-width: 18ch;
  color: var(--paper);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero--immersive .section-kicker,
.hero--immersive .hero-sub,
.hero--immersive .hero-seal {
  color: var(--paper);
}

.hero--immersive .hero-sub {
  max-width: 33rem;
}

.hero--immersive .btn-primary {
  color: var(--ink);
  background: var(--paper);
}

.hero--immersive .btn-primary:hover {
  background: #e8dfd0;
}

.hero--immersive .btn-outline {
  color: var(--paper);
  border-color: rgba(252, 250, 247, 0.65);
  background: rgba(24, 18, 15, 0.25);
}

.hero--immersive .btn-outline:hover {
  background: rgba(24, 18, 15, 0.6);
}

.hero--immersive .btn:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.hero--immersive .hero-seals,
.hero--immersive .hero-seal + .hero-seal {
  border-color: rgba(252, 250, 247, 0.28);
}

@media (max-width: 680px) {
  .hero--immersive::before {
    background: linear-gradient(180deg, rgba(24, 18, 15, 0.26) 0%, rgba(24, 18, 15, 0.8) 32%, rgba(24, 18, 15, 0.93) 100%);
  }

  .hero--immersive .hero-background {
    object-position: 62% center;
  }

  .hero--immersive .hero-inner {
    min-height: calc(100vh - 63px);
    min-height: calc(100svh - 63px);
    padding: 6rem 1.5rem 5.5rem;
  }

  .hero--immersive .hero-title {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
  }

  .hero--immersive .hero-seals {
    margin-top: 1.5rem;
  }
}

#brands {
  padding-block: 0 4.5rem;
}

.brands-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.brands-photo {
  position: relative;
  min-width: 0;
  background: var(--accent);
}

.brands-photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.brands-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 6px;
  background: var(--paper);
  color: var(--coffee);
  font-size: 0.7rem;
}

.brands-copy {
  min-width: 0;
  padding: clamp(1.5rem, 3.5vw, 3rem);
}

.brands-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.brands-intro {
  max-width: 34ch;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.brands-list {
  margin-block: 1.5rem;
  border-top: 1px solid var(--line);
}

.brands-item {
  display: flex;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.brands-number {
  padding-top: 0.4rem;
  color: var(--accent-text);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.brands-item h3 {
  font-size: 1.6rem;
  line-height: 1.2;
}

.brands-item p {
  max-width: 40ch;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.brands-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.2rem;
}

.brands-question {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  color: var(--coffee);
  font-size: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.brands-question:focus-visible {
  outline: 2px solid var(--coffee);
  outline-offset: 4px;
}

@media (max-width: 700px) {
  #brands {
    padding-bottom: 3rem;
  }

  .brands-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .brands-photo {
    height: 230px;
  }

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