/* ============================================================
   SOLUM — premium barbershop
   "o cuidado vem das raízes"
   Typography: Source Sans Pro (única família)
   ============================================================ */

/* ----- FONT FACES ----- */
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../assets/fonts/SourceSansPro-ExtraLight.woff2') format('woff2');
  font-weight: 200; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../assets/fonts/SourceSansPro-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../assets/fonts/SourceSansPro-LightItalic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../assets/fonts/SourceSansPro-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../assets/fonts/SourceSansPro-Italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../assets/fonts/SourceSansPro-Semibold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../assets/fonts/SourceSansPro-SemiboldItalic.woff2') format('woff2');
  font-weight: 600; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../assets/fonts/SourceSansPro-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../assets/fonts/SourceSansPro-BoldItalic.woff2') format('woff2');
  font-weight: 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../assets/fonts/SourceSansPro-Black.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ----- DESIGN TOKENS ----- */
:root {
  --c-moss:        #192B26;
  --c-asphalt:     #141414;
  --c-grey:        #DCDCDC;
  --c-bordo:       #2D0C16;
  --c-beige:       #937A54;
  --c-terracotta:  #8F4325;

  --bg:        var(--c-moss);
  --bg-alt:    var(--c-asphalt);
  --ink:       #ECE7DA;
  --ink-mute:  rgba(236, 231, 218, 0.62);
  --gold:      var(--c-beige);
  --gold-soft: rgba(147, 122, 84, 0.32);
  --hairline:  rgba(236, 231, 218, 0.14);

  --font: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --gutter: clamp(20px, 4vw, 56px);
  --max-w: 1640px;
}

/* ----- RESET ----- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
em { font-style: italic; font-weight: 300; }
strong { font-weight: 600; }
::selection { background: var(--gold); color: var(--c-asphalt); }

/* ----- LOADER ----- */
.loader {
  position: fixed; inset: 0;
  background: var(--c-asphalt);
  color: var(--ink);
  z-index: 10000;
  display: grid; place-items: center;
  transition: opacity .8s var(--ease-out) .2s, visibility 0s linear 1s;
}
.loader__inner { position: relative; width: 200px; height: 200px; display: grid; place-items: center; }
.loader__seal {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  color: var(--gold);
  animation: rotate 14s linear infinite;
}
.loader__word {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .12em;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  height: 1em;
}
.loader__word::before {
  content: attr(data-word);
  display: block;
  text-transform: uppercase;
  animation: loaderType 1.4s var(--ease-out) forwards;
}
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes loaderType {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
body.is-loaded .loader { opacity: 0; visibility: hidden; }

/* ----- NAVIGATION ----- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding: 22px var(--gutter);
  transition: background .5s var(--ease-out), padding .4s var(--ease-out), border-color .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(25, 43, 38, 0.84);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom-color: var(--hairline);
}
.nav__logo { display: block; height: 26px; flex-shrink: 0; }
.nav__logo img {
  height: 100%; width: auto;
  filter: brightness(0) invert(0.92);
  transition: transform .4s var(--ease-out);
}
.nav__logo:hover img { transform: scale(1.04); }

.nav__menu { display: flex; gap: 4px; align-items: center; }
.nav__link {
  position: relative;
  display: flex; align-items: baseline; gap: 6px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color .3s var(--ease-out);
}
.nav__num { font-size: 10px; font-weight: 600; color: var(--gold); letter-spacing: .1em; }
.nav__label { position: relative; }
.nav__label::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -4px;
  height: 1px; background: var(--gold);
  transition: right .4s var(--ease-out);
}
.nav__link:hover .nav__label::after { right: 0; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  transition: background .4s, color .4s, padding .4s;
  position: relative;
  overflow: hidden;
}
.nav__cta::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .5s var(--ease-out);
  z-index: -1;
}
.nav__cta:hover { color: var(--c-asphalt); padding-right: 32px; }
.nav__cta:hover::before { transform: translateY(0); }
.nav__cta svg { transition: transform .4s var(--ease-out); }
.nav__cta:hover svg { transform: translateX(4px); }

.nav__burger { display: none; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--c-asphalt);
  z-index: 99;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .5s, visibility 0s linear .5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transition: opacity .5s; }
.mobile-menu__link {
  font-size: clamp(34px, 8vw, 52px);
  font-weight: 200;
  letter-spacing: -.01em;
}
.mobile-menu__cta {
  margin-top: 30px;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ----- SHARED ----- */
.section-header { padding: 0 var(--gutter); margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gold-soft);
}
.section-title {
  font-weight: 200;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.section-title__line { display: block; overflow: hidden; }
.section-title__line.italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-mute);
}
.eyebrow__dot {
  display: block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2.4s var(--ease-in-out) infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.5); opacity: .55; }
}

/* ============================================================ HERO ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--gutter) 60px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: var(--c-moss);
}
.hero__pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/textures/texture-01.jpg');
  background-size: cover; background-position: center;
  opacity: 0.4;
  mix-blend-mode: luminosity;
  z-index: 0;
}
.hero__pattern::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right, transparent 30%, rgba(20,20,20,.5) 100%),
    linear-gradient(180deg, transparent 0%, rgba(25,43,38,.5) 60%, var(--c-moss) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__top {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-top: 50px;
}
.hero__meta {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__meta-line { position: relative; padding-left: 24px; }
.hero__meta-line::before {
  content: ""; position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1px;
  background: var(--gold);
}
.hero__seal {
  width: 110px; height: 110px;
  opacity: 0;
  animation: sealIn 1.4s var(--ease-out) 1.6s forwards;
}
.hero__seal img {
  width: 100%; height: 100%;
  filter: brightness(0) invert(0.85) sepia(.6) saturate(2);
  animation: rotate 36s linear infinite;
  opacity: .85;
}
@keyframes sealIn {
  from { opacity: 0; transform: scale(.4) rotate(-180deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}

.hero__type {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  margin: 80px 0 40px;
}
.hero__display {
  font-weight: 900;
  font-size: clamp(110px, 22vw, 360px);
  line-height: .82;
  letter-spacing: -0.045em;
  color: var(--ink);
  text-transform: uppercase;
  position: relative;
}
.hero__display-line { display: flex; overflow: hidden; }
.hero__display .char {
  display: inline-block;
  transform: translateY(110%);
  animation: charUp 1.1s var(--ease-out) forwards;
}
.hero__display .char:nth-child(1) { animation-delay: 1.4s; }
.hero__display .char:nth-child(2) { animation-delay: 1.5s; }
.hero__display .char:nth-child(3) { animation-delay: 1.6s; }
.hero__display .char:nth-child(4) { animation-delay: 1.7s; }
.hero__display .char:nth-child(5) { animation-delay: 1.8s; }
@keyframes charUp { to { transform: translateY(0); } }

.hero__tag {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -0.005em;
  color: var(--gold);
  margin-top: 18px;
  margin-left: 4px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 2.4s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero__bottom {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: end;
  padding-top: 40px;
  border-top: 1px solid var(--hairline);
}
.hero__intro {
  max-width: 460px;
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.6s forwards;
}
.hero__intro p { font-size: 17px; line-height: 1.5; color: var(--ink); font-weight: 300; }
.hero__actions {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.8s forwards;
}
.hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 3s forwards;
}
.hero__scroll svg { color: var(--gold); }
.scroll-dot { animation: scrollDot 2.4s var(--ease-in-out) infinite; }
@keyframes scrollDot {
  0% { transform: translateY(-48px); opacity: 0; }
  30% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================ BUTTONS ============================================================ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  transition: padding .4s var(--ease-out), border-color .4s, color .4s;
  white-space: nowrap;
  isolation: isolate;
}
.btn__text { position: relative; z-index: 2; }
.btn__icon { position: relative; z-index: 2; transition: transform .4s var(--ease-out); display: inline-flex; }
.btn:hover .btn__icon { transform: translateX(6px); }

.btn--primary {
  background: var(--gold);
  color: var(--c-asphalt);
  border-color: var(--gold);
}
.btn--primary::before {
  content: ""; position: absolute; inset: 0;
  background: var(--ink);
  border-radius: 999px;
  transform: scale(0); transform-origin: center;
  transition: transform .55s var(--ease-out);
  z-index: 1;
}
.btn--primary:hover::before { transform: scale(1.1); }
.btn--primary:hover { color: var(--c-moss); padding-right: 36px; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn--ghost::before {
  content: ""; position: absolute; inset: 0;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(101%);
  transition: transform .55s var(--ease-out);
  z-index: 1;
}
.btn--ghost:hover::before { transform: translateY(0); }
.btn--ghost:hover { color: var(--c-moss); border-color: var(--ink); padding-right: 36px; }

.btn--large { padding: 22px 38px; font-size: 13px; }

/* ============================================================ TICKER ============================================================ */
.ticker {
  border-block: 1px solid var(--hairline);
  background: var(--c-moss);
  overflow: hidden;
  padding: 26px 0;
}
.ticker__track {
  display: inline-flex; gap: 60px;
  white-space: nowrap;
  animation: tick 40s linear infinite;
  padding-left: 60px;
}
.ticker__item {
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ticker__sep { color: var(--gold); font-size: 28px; align-self: center; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ============================================================ MANIFESTO ============================================================ */
.manifesto {
  position: relative;
  padding: 140px var(--gutter);
  background: var(--c-asphalt);
  overflow: hidden;
}
.manifesto__bg {
  position: absolute; inset: 0;
  opacity: 0.25;
  background-image: url('../assets/textures/texture-02.jpg');
  background-size: cover; background-position: center;
  mix-blend-mode: luminosity;
}
.manifesto__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--c-asphalt) 0%, transparent 30%, transparent 70%, var(--c-asphalt) 100%);
}
.manifesto__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: start;
}
.manifesto__lead p {
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.drop-cap {
  font-weight: 200;
  font-size: 1.7em;
  line-height: 1;
  float: left;
  padding: 0.04em 0.18em 0 0;
  color: var(--gold);
  font-style: italic;
}
.emph { color: var(--gold); font-style: italic; font-weight: 400; }

.manifesto__pillars { display: flex; flex-direction: column; gap: 28px; }

.pillar {
  position: relative;
  padding: 30px 0 30px 32px;
  border-top: 1px solid var(--hairline);
  transition: border-color .4s, padding-left .4s var(--ease-out);
}
.pillar:last-child { border-bottom: 1px solid var(--hairline); }
.pillar:hover { border-top-color: var(--gold); padding-left: 44px; }
.pillar:hover + .pillar { border-top-color: var(--gold); }
.pillar__num {
  position: absolute;
  left: 0; top: 30px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .25em;
  color: var(--gold);
  transition: transform .4s var(--ease-out);
}
.pillar:hover .pillar__num { transform: translateX(8px); }
.pillar__title {
  font-weight: 300;
  font-size: 30px;
  letter-spacing: -.01em;
  margin-bottom: 12px;
  color: var(--ink);
  font-style: italic;
}
.pillar p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 38ch;
}

/* ============================================================ SERVICES ============================================================ */
.services {
  padding: 140px 0;
  background: var(--c-moss);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle at top right, var(--gold-soft) 0%, transparent 60%);
  opacity: .2;
  pointer-events: none;
}
.services__list { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

.service {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid var(--hairline);
  transition: padding .5s var(--ease-out);
  overflow: hidden;
}
.service:last-child { border-bottom: 1px solid var(--hairline); }
.service::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold-soft) 0%, transparent 30%);
  opacity: 0;
  transition: opacity .5s var(--ease-out);
  pointer-events: none;
}
.service:hover::before { opacity: 1; }
.service:hover { padding-left: 30px; padding-right: 30px; }

.service__index {
  font-size: 12px; font-weight: 600;
  letter-spacing: .25em;
  color: var(--gold);
  position: relative; z-index: 2;
}
.service__main { position: relative; z-index: 2; }
.service__title {
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  transition: color .4s var(--ease-out);
}
.service:hover .service__title { color: var(--gold); font-style: italic; }
.service__desc {
  font-size: 15px; font-weight: 400;
  color: var(--ink-mute);
  max-width: 65ch;
  line-height: 1.55;
}
.service__meta {
  display: flex; align-items: center; gap: 20px;
  position: relative; z-index: 2;
}
.service__time {
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-mute);
}
.service__arrow {
  color: var(--ink);
  transition: transform .55s var(--ease-out), color .4s;
  flex-shrink: 0;
}
.service:hover .service__arrow {
  transform: translate(8px, -8px);
  color: var(--gold);
}

/* ============================================================ LEGACY ============================================================ */
.legacy {
  position: relative;
  padding: 140px var(--gutter);
  background: var(--c-asphalt);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: calc(var(--max-w) + 2 * var(--gutter));
  margin: 0 auto;
}
.legacy__media { position: relative; aspect-ratio: 4 / 5; }
.legacy__media-frame {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 2px;
}
.legacy__media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.legacy__media:hover .legacy__media-frame img { transform: scale(1.05); }
.legacy__media-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(45deg, rgba(20,20,20,.3), transparent 50%);
  pointer-events: none;
}
.legacy__badge {
  position: absolute;
  bottom: -36px; right: -36px;
  width: 140px; height: 140px;
  display: grid; place-items: center;
  background: var(--gold);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 18px 48px -10px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  animation: rotate 28s linear infinite;
}
.legacy__badge img {
  width: 96%; height: 96%;
  filter: brightness(0) saturate(100%) invert(13%) sepia(22%) saturate(1500%) hue-rotate(120deg) brightness(95%) contrast(95%);
  opacity: .9;
}
.legacy__content { display: flex; flex-direction: column; gap: 36px; }
.legacy__text p {
  font-size: 17px; font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 50ch;
}
.legacy__text p:last-child { color: var(--ink-mute); }
.legacy__text em { font-weight: 300; color: var(--gold); }

.legacy__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
  padding-top: 36px;
  border-top: 1px solid var(--hairline);
}
.stat {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 8px;
}
.stat__number-wrap {
  position: relative;
  display: inline-flex; align-items: baseline;
}
.stat__number {
  font-weight: 200;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
  color: var(--gold);
  font-style: italic;
}
.stat__plus, .stat__pct {
  font-weight: 300;
  font-size: 0.55em;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  margin-left: 2px;
  margin-top: 6px;
}
.stat__label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* ============================================================ AMBIENT ============================================================ */
.ambient {
  position: relative;
  min-height: 90vh;
  display: grid; align-items: center;
  overflow: hidden;
}
.ambient__media { position: absolute; inset: 0; z-index: 0; }
.ambient__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.5s var(--ease-out);
}
.ambient.in-view .ambient__media img { transform: scale(1); }
.ambient__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(20,20,20,.86) 0%, rgba(20,20,20,.55) 50%, rgba(20,20,20,.5) 100%),
    linear-gradient(to bottom, rgba(25,43,38,.6) 0%, rgba(25,43,38,.2) 40%, rgba(25,43,38,.7) 100%);
}
.ambient__content {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px var(--gutter);
  width: 100%;
  display: flex; flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.ambient__title {
  font-weight: 200;
  font-size: clamp(48px, 9vw, 130px);
  line-height: .98;
  letter-spacing: -.03em;
  color: var(--ink);
}
.ambient__title .section-title__line.italic { font-weight: 300; }
.ambient__text {
  max-width: 50ch;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-mute);
}

/* ============================================================ CASA — galeria deslocada ============================================================ */
.casa {
  padding: 140px 0;
  background: var(--c-moss);
  position: relative;
  overflow: hidden;
}
.casa::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60vw; height: 40vw;
  background: radial-gradient(ellipse at top left, var(--gold-soft) 0%, transparent 55%);
  opacity: .25;
  pointer-events: none;
}
.casa__head {
  max-width: var(--max-w);
  margin: 0 auto 100px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.casa__title {
  font-weight: 200;
  font-size: clamp(54px, 8vw, 130px);
  line-height: .94;
  letter-spacing: -.03em;
}
.casa__title em { font-style: italic; font-weight: 300; color: var(--gold); }
.casa__intro p {
  font-size: 17px; font-weight: 300;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 48ch;
  margin-bottom: 14px;
}
.casa__intro p:first-child { color: var(--ink); }

.casa__grid {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 60px;
  gap: 20px;
}
.casa-item {
  position: relative;
  overflow: hidden;
  background: var(--c-asphalt);
  border-radius: 2px;
  transition: transform .8s var(--ease-out);
}
.casa-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.6s var(--ease-out), filter .6s;
  filter: contrast(1.05);
}
.casa-item:hover img { transform: scale(1); }
.casa-item:hover { transform: translateY(-8px); }

.casa-item__caption {
  position: absolute;
  left: 18px; bottom: 18px;
  display: flex; flex-direction: column;
  font-size: 11px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink);
  padding: 12px 18px;
  background: rgba(20,20,20,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 2px solid var(--gold);
  transform: translateX(-12px); opacity: 0;
  transition: transform .5s, opacity .5s;
}
.casa-item__caption span {
  color: var(--gold);
  font-size: 9px;
  margin-bottom: 4px;
  letter-spacing: .3em;
}
.casa-item:hover .casa-item__caption { transform: translateX(0); opacity: 1; }

/* GRID DESLOCADO — bento masonry com offsets verticais */
.casa-item--01 { grid-column: 1 / span 4;  grid-row: span 9; }
.casa-item--02 { grid-column: 6 / span 4;  grid-row: span 6; margin-top: 60px; }
.casa-item--03 { grid-column: 10 / span 3; grid-row: span 7; }
.casa-item--04 { grid-column: 1 / span 5;  grid-row: span 8; margin-top: -120px; }
.casa-item--05 { grid-column: 7 / span 3;  grid-row: span 9; margin-top: 60px; }
.casa-item--06 { grid-column: 10 / span 3; grid-row: span 6; margin-top: -40px; }
.casa-item--07 { grid-column: 2 / span 4;  grid-row: span 7; margin-top: 80px; }
.casa-item--08 { grid-column: 7 / span 6;  grid-row: span 7; }

.casa__seal {
  position: absolute;
  top: 60%; right: 4vw;
  width: 180px; height: 180px;
  z-index: 3;
  opacity: .9;
  pointer-events: none;
  display: grid; place-items: center;
}
.casa__seal img {
  width: 100%; height: 100%;
  filter: brightness(0) invert(0.85) sepia(.6) saturate(2);
  animation: rotate 36s linear infinite;
  opacity: .7;
}

/* ============================================================ TESTIMONIALS ============================================================ */
.testimonials {
  padding: 120px 0;
  background: var(--c-asphalt);
  position: relative;
}
.testimonials::before {
  content: "“";
  position: absolute;
  font-size: 580px;
  font-weight: 300;
  color: var(--gold);
  opacity: .04;
  line-height: 1;
  top: 60px;
  left: var(--gutter);
  pointer-events: none;
}
.testimonials__grid {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial {
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--hairline);
  background: rgba(25, 43, 38, 0.18);
  transition: transform .55s, border-color .55s, background .55s;
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  background: rgba(147, 122, 84, 0.06);
}
.quote-mark {
  position: absolute;
  font-size: 96px; font-weight: 300;
  color: var(--gold);
  line-height: 1;
  top: 14px; left: 24px;
  opacity: .35;
}
.testimonial p {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin: 30px 0 28px;
  position: relative; z-index: 1;
}
.testimonial footer {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.testimonial__name {
  font-size: 12px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink);
}
.testimonial__role { font-size: 12px; color: var(--ink-mute); font-weight: 300; }

/* ============================================================ CONTACT (com mapa Google e formulário) ============================================================ */
.contact {
  position: relative;
  padding: 140px var(--gutter);
  background: var(--c-moss);
  overflow: hidden;
}
.contact__bg {
  position: absolute; inset: 0;
  background-image: url('../assets/textures/texture-09.jpg');
  background-size: cover; background-position: center;
  opacity: .35;
  mix-blend-mode: luminosity;
}
.contact__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--c-moss) 0%, transparent 25%, transparent 70%, var(--c-moss) 100%);
}
.contact__inner { position: relative; max-width: var(--max-w); margin: 0 auto; }
.contact__head { text-align: left; margin-bottom: 70px; max-width: 720px; }
.contact__title {
  font-weight: 200;
  font-size: clamp(54px, 9vw, 140px);
  line-height: .96;
  letter-spacing: -.025em;
  margin: 14px 0 24px;
}
.contact__title .section-title__line.italic { font-weight: 300; }
.contact__lead {
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-mute);
  max-width: 50ch;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  margin-bottom: 60px;
}
.contact__map {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  min-height: 460px;
  background: var(--c-asphalt);
}
.contact__map iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.4) contrast(1.05) brightness(0.95);
  transition: filter .5s var(--ease-out);
}
.contact__map:hover iframe { filter: grayscale(0) contrast(1) brightness(1); }
.contact__map-overlay {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(20,20,20,.85);
  backdrop-filter: blur(10px);
  border-left: 2px solid var(--gold);
  padding: 18px 22px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
}
.contact__map-overlay span {
  display: block; color: var(--gold);
  font-size: 10px; margin-bottom: 4px;
}

.contact__side { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  display: flex; flex-direction: column; gap: 18px;
  padding: 32px 28px;
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .4s, transform .4s var(--ease-out);
}
.contact-card:hover { border-color: var(--gold-soft); transform: translateY(-4px); }
.contact-card__label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
}
.contact-card__value {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
}
.contact-card__value--small { font-size: 15px; }
.contact-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 6px;
  align-self: flex-start;
  transition: gap .35s var(--ease-out);
}
.contact-card__link:hover { gap: 14px; }

.hours { display: flex; flex-direction: column; gap: 10px; }
.hours li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
}
.hours li span:last-child { color: var(--ink-mute); font-weight: 400; }
.dot-line { border-top: 1px dashed var(--hairline); height: 1px; }

.contact-card__status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #5fb572;
  box-shadow: 0 0 0 0 rgba(95,181,114,.5);
  animation: dot 2.4s var(--ease-in-out) infinite;
}
@keyframes dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(95,181,114,.5); }
  50%     { box-shadow: 0 0 0 8px rgba(95,181,114,0); }
}

/* ============================================================ BOOKING FORM ============================================================ */
.booking { position: relative; padding: 60px 0 0; }
.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 50px;
}
.booking__intro h3 {
  font-weight: 200;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 14px 0 18px;
}
.booking__intro h3 em { font-style: italic; font-weight: 300; color: var(--gold); }
.booking__intro p {
  font-size: 15px; font-weight: 300;
  color: var(--ink-mute);
  line-height: 1.55;
  max-width: 38ch;
  margin-bottom: 24px;
}
.booking__steps {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.booking__step {
  display: grid; grid-template-columns: 32px 1fr;
  gap: 14px;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-mute);
}
.booking__step span:first-child {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .15em;
}
.booking__step strong { color: var(--ink); font-weight: 600; }

.form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}
.field input, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  padding: 12px 0;
  color: var(--ink);
  font: inherit;
  font-size: 16px; font-weight: 300;
  outline: 0;
  transition: border-color .3s;
}
.field input::placeholder { color: var(--ink-mute); font-weight: 300; }
.field input:focus, .field select:focus { border-bottom-color: var(--gold); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.calendar {
  background: rgba(25, 43, 38, 0.45);
  border: 1px solid var(--hairline);
  padding: 18px;
  border-radius: 4px;
  margin-top: 4px;
}
.calendar__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.calendar__month {
  font-size: 14px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink);
}
.calendar__nav { display: flex; gap: 6px; }
.calendar__nav button {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--ink);
  transition: border-color .3s, color .3s, background .3s;
}
.calendar__nav button:hover { border-color: var(--gold); color: var(--gold); }
.calendar__nav button:disabled { opacity: .35; cursor: not-allowed; }

.calendar__weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.calendar__weekdays span {
  text-align: center;
  font-size: 10px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-mute);
  padding: 6px 0;
}
.calendar__days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar__day {
  aspect-ratio: 1;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 400;
  color: var(--ink);
  border-radius: 50%;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.calendar__day.is-empty { visibility: hidden; cursor: default; }
.calendar__day.is-past { color: rgba(236,231,218,.18); pointer-events: none; }
.calendar__day.is-disabled { color: rgba(236,231,218,.25); pointer-events: none; }
.calendar__day:not(.is-empty):not(.is-past):not(.is-disabled):hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.06);
}
.calendar__day.is-today { border-color: var(--gold-soft); font-weight: 600; }
.calendar__day.is-selected {
  background: var(--gold);
  color: var(--c-asphalt);
  font-weight: 600;
  border-color: var(--gold);
}

.times {
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.times__label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}
.times__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
  gap: 8px;
}
.time-slot {
  padding: 10px 8px;
  font-size: 13px; font-weight: 400;
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all .25s;
  text-align: center;
}
.time-slot:hover { border-color: var(--gold); color: var(--gold); }
.time-slot.is-selected {
  background: var(--gold);
  color: var(--c-asphalt);
  border-color: var(--gold);
  font-weight: 600;
}
.time-slot.is-empty { opacity: .3; pointer-events: none; text-decoration: line-through; }

.times__empty {
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
  font-weight: 300;
  padding: 16px 0;
}
.booking__submit { width: 100%; margin-top: 8px; justify-content: center; }
.booking__feedback {
  font-size: 13px; font-weight: 400;
  color: var(--gold);
  padding: 10px 0;
  display: none;
}
.booking__feedback.is-visible { display: block; }

.newsletter {
  display: flex;
  margin-top: auto;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(20,20,20,.5);
}
.newsletter input {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: 0; outline: 0;
  color: var(--ink);
  font: inherit;
  font-size: 14px; font-weight: 300;
}
.newsletter input::placeholder { color: var(--ink-mute); }
.newsletter button {
  padding: 14px 22px;
  background: var(--gold);
  color: var(--c-asphalt);
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
  transition: background .35s, padding .35s;
}
.newsletter button:hover { background: var(--ink); padding-right: 26px; }

/* ============================================================ FOOTER ============================================================ */
.footer {
  position: relative;
  background: var(--c-asphalt);
  padding: 100px var(--gutter) 40px;
  overflow: hidden;
}
.footer__massive {
  position: absolute;
  bottom: -16px; left: 0; right: 0;
  font-weight: 900;
  font-size: clamp(120px, 18vw, 280px);
  line-height: .85;
  letter-spacing: -.05em;
  color: var(--ink);
  opacity: 0.06;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}
.footer__grid {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--hairline);
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 {
  font-size: 12px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer__col a, .footer__col span {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-mute);
  transition: color .3s, padding-left .3s;
}
.footer__col a:hover { color: var(--ink); padding-left: 6px; }

.footer__col--brand { gap: 18px; }
.footer__logo {
  height: 28px; width: auto;
  max-width: 160px; object-fit: contain;
  filter: brightness(0) invert(0.92);
  align-self: flex-start;
}
.footer__tag {
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--ink-mute);
}
.footer__bottom {
  position: relative;
  display: flex;
  justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================ REVEAL ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-img { position: relative; overflow: hidden; }
.reveal-img::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--c-moss);
  z-index: 2;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.1s var(--ease-out);
}
.reveal-img.in-view::before { transform: scaleX(0); }
.reveal-img img { transform: scale(1.15); transition: transform 1.6s var(--ease-out); }
.reveal-img.in-view img { transform: scale(1); }

/* ============================================================ SUB-PÁGINAS DE SERVIÇOS ============================================================ */
.service-hero {
  position: relative;
  min-height: 70vh;
  padding: 160px var(--gutter) 80px;
  background: var(--c-moss);
  display: grid; align-content: center;
  overflow: hidden;
}
.service-hero__pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/textures/texture-04.jpg');
  background-size: cover; background-position: center;
  opacity: 0.25;
  mix-blend-mode: luminosity;
}
.service-hero__pattern::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--c-moss) 100%);
}
.service-hero__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.service-hero__crumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.service-hero__crumb a { color: var(--gold); }
.service-hero__crumb a:hover { color: var(--ink); }

.service-hero__title {
  font-weight: 200;
  font-size: clamp(60px, 10vw, 160px);
  line-height: .92;
  letter-spacing: -.035em;
  color: var(--ink);
  margin-bottom: 30px;
}
.service-hero__title em { font-style: italic; font-weight: 300; color: var(--gold); }
.service-hero__lead {
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink-mute);
  max-width: 56ch;
}

.service-meta {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.service-meta__item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 36px;
  border-right: 1px solid var(--hairline);
}
.service-meta__item:first-child { padding-left: 0; }
.service-meta__item:last-child { border-right: 0; }
.service-meta__label {
  font-size: 10px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
}
.service-meta__value {
  font-size: 18px; font-weight: 300;
  color: var(--ink);
}

.service-section {
  padding: 120px var(--gutter);
  background: var(--c-asphalt);
}
.service-section--alt { background: var(--c-moss); }
.service-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.service-section__label {
  position: sticky;
  top: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
  padding-top: 6px;
}
.service-section__title {
  font-weight: 200;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 30px;
}
.service-section__title em { font-style: italic; font-weight: 300; color: var(--gold); }
.service-section__body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 60ch;
}
.service-section__body p.muted { color: var(--ink-mute); }

.steps { display: flex; flex-direction: column; gap: 0; margin-top: 30px; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--hairline);
}
.step:last-child { border-bottom: 1px solid var(--hairline); }
.step__num {
  font-size: 11px; font-weight: 600;
  letter-spacing: .25em;
  color: var(--gold);
  padding-top: 4px;
}
.step h4 {
  font-weight: 300;
  font-style: italic;
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--ink);
}
.step p {
  font-size: 14px; font-weight: 300;
  color: var(--ink-mute);
  line-height: 1.55;
  max-width: 56ch;
}

.other-services {
  padding: 100px var(--gutter);
  background: var(--c-asphalt);
  border-top: 1px solid var(--hairline);
}
.other-services__head { max-width: var(--max-w); margin: 0 auto 50px; }
.other-services__title {
  font-weight: 200;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -.02em;
}
.other-services__title em { font-style: italic; font-weight: 300; color: var(--gold); }
.other-services__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.other-service {
  display: flex; flex-direction: column; gap: 12px;
  padding: 32px 28px;
  background: rgba(25, 43, 38, 0.5);
  border: 1px solid var(--hairline);
  transition: border-color .4s, transform .4s var(--ease-out), background .4s;
}
.other-service:hover {
  border-color: var(--gold-soft);
  background: rgba(147, 122, 84, 0.06);
  transform: translateY(-4px);
}
.other-service__num {
  font-size: 11px; font-weight: 600;
  letter-spacing: .25em;
  color: var(--gold);
}
.other-service__title {
  font-weight: 300;
  font-size: 26px;
  letter-spacing: -.01em;
  font-style: italic;
}
.other-service__desc {
  font-size: 14px; font-weight: 300;
  color: var(--ink-mute);
  line-height: 1.55;
}
.other-service__cta {
  margin-top: auto; padding-top: 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; gap: 8px; align-items: center;
  transition: gap .35s;
}
.other-service:hover .other-service__cta { gap: 14px; }

/* ============================================================ RESPONSIVE ============================================================ */
@media (max-width: 1100px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 5px;
    width: 36px; height: 36px;
    align-items: center; justify-content: center;
    cursor: pointer; z-index: 101;
    background: transparent;
  }
  .nav__burger span {
    display: block;
    width: 22px; height: 1px;
    background: var(--ink);
    transition: transform .35s var(--ease-out), opacity .3s;
  }
  body.menu-open .nav__burger span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
  body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

  .manifesto__inner { grid-template-columns: 1fr; gap: 60px; }
  .legacy { grid-template-columns: 1fr; gap: 70px; padding-top: 100px; padding-bottom: 100px; }
  .legacy__media { max-width: 520px; margin: 0 auto; width: 100%; }
  .legacy__badge { width: 130px; height: 130px; bottom: -30px; right: -20px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 18px; }
  .contact__layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .booking__inner { grid-template-columns: 1fr; padding: 36px; gap: 40px; }
  .casa__head { grid-template-columns: 1fr; gap: 30px; }
  .service-section__inner { grid-template-columns: 1fr; gap: 24px; }
  .service-section__label { position: static; }
  .other-services__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .hero { padding-top: 100px; padding-bottom: 40px; }
  .hero__top { padding-top: 30px; }
  .hero__seal { width: 80px; height: 80px; }
  .hero__type { margin: 50px 0 30px; }
  .hero__display { font-size: 22vw; }
  .hero__bottom { grid-template-columns: 1fr; gap: 30px; padding-top: 24px; }
  .hero__scroll { display: none; }
  .ticker__item { font-size: 28px; }
  .manifesto, .services, .legacy, .casa, .testimonials, .contact { padding-top: 80px; padding-bottom: 80px; }
  .services { padding-left: 0; padding-right: 0; }
  .service { grid-template-columns: 1fr; gap: 14px; padding: 24px 0; }
  .service__meta { justify-content: space-between; }
  .service:hover { padding-left: 14px; padding-right: 14px; }
  .contact-card { padding: 28px 22px; }
  .contact-card__value { font-size: 17px; }
  .contact__map { min-height: 360px; }
  .footer { padding: 80px var(--gutter) 30px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer__massive { font-size: 26vw; bottom: -8px; }
  .legacy__badge { width: 110px; height: 110px; bottom: -22px; right: -14px; }
  .ambient__content { padding: 90px var(--gutter); }
  .testimonials::before { font-size: 320px; top: 30px; }
  .booking__inner { padding: 24px; }
  .field--row { grid-template-columns: 1fr; gap: 22px; }

  .casa__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 50px; }
  .casa-item--01 { grid-column: 1 / span 2; grid-row: span 6; margin-top: 0; }
  .casa-item--02 { grid-column: 1 / span 1; grid-row: span 5; margin-top: 0; }
  .casa-item--03 { grid-column: 2 / span 1; grid-row: span 5; margin-top: 30px; }
  .casa-item--04 { grid-column: 1 / span 2; grid-row: span 6; margin-top: 0; }
  .casa-item--05 { grid-column: 1 / span 1; grid-row: span 5; margin-top: 0; }
  .casa-item--06 { grid-column: 2 / span 1; grid-row: span 4; margin-top: 30px; }
  .casa-item--07 { grid-column: 1 / span 1; grid-row: span 5; margin-top: 0; }
  .casa-item--08 { grid-column: 2 / span 1; grid-row: span 6; margin-top: 0; }
  .casa__seal { width: 110px; height: 110px; right: 12px; top: 30%; }

  .service-meta { flex-direction: column; gap: 14px; }
  .service-meta__item { padding: 0; border-right: 0; border-bottom: 1px solid var(--hairline); padding-bottom: 12px; }
  .service-meta__item:last-child { border-bottom: 0; }
  .other-services__grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .legacy__stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .quote-mark { font-size: 64px; }
  .contact__title { font-size: clamp(44px, 14vw, 80px); }
  .ambient__title { font-size: clamp(40px, 13vw, 80px); }
  .newsletter { flex-direction: column; border-radius: 18px; }
  .newsletter input { width: 100%; padding: 14px 18px; }
  .newsletter button { padding: 14px 18px; justify-content: center; }
}

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