/* ---------- Fonts ---------- */
@font-face {
  font-family: "Prata";
  src: url("../fontes/Prata/Prata-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tangerine";
  src: url("../fontes/Tangerine/Tangerine-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tangerine";
  src: url("../fontes/Tangerine/Tangerine-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("../fontes/Bodoni_Moda/BodoniModa-VariableFont_opsz,wght.ttf") format("truetype-variations");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("../fontes/Bodoni_Moda/BodoniModa-Italic-VariableFont_opsz,wght.ttf") format("truetype-variations");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --espresso: #2B211D;
  --mocha: #604A40;
  --taupe: #A18E83;
  --champagne: #D8C7B8;
  --off-white: #F5F1ED;

  --font-serif: "Prata", "Georgia", serif;
  --font-script: "Tangerine", "Brush Script MT", cursive;
  --font-body: "Georgia", "Times New Roman", serif;
  --font-display: "Bodoni Moda", "Prata", "Georgia", serif;

  --container: 1180px;
  --radius: 2px;
  --transition: 0.25s ease;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
}
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 6px; }
h3 { font-size: 1.3rem; }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #7D2838;
  margin-bottom: 8px;
}
.eyebrow--light { color: #7D2838; }
.contact__header .eyebrow { color: #D8C7B8; }
.services__header .eyebrow { color: #D8C7B8; }
.faq__header .eyebrow { color: #2B211D; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}
/* Shine sweep on hover */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: linear-gradient(45deg, transparent 25%, rgba(245,241,237,0.55) 50%, transparent 75%, transparent 100%);
  background-size: 250% 250%;
  background-position: 200% 0;
  background-repeat: no-repeat;
  transition: background-position 1s ease;
  pointer-events: none;
}
.btn:hover::before {
  background-position: -100% 0;
}
.btn--primary {
  background: var(--espresso);
  color: var(--off-white);
}
.btn--primary:hover {
  background: var(--mocha);
}
.hero .btn--primary {
  background: #C17C3A;
}
.hero .btn--primary:hover {
  background: #A4692F;
}
.btn--ghost {
  border-color: var(--off-white);
  color: var(--off-white);
}
.btn--ghost:hover {
  background: var(--off-white);
  color: var(--espresso);
}
.btn--ghost::before {
  background-image: linear-gradient(45deg, transparent 25%, rgba(43,33,29,0.35) 50%, transparent 75%, transparent 100%);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  pointer-events: none;
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 76px;
}
.header__inner > * { pointer-events: auto; }
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}

/* Pill nav */
.pill-nav {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: var(--off-white);
  padding: 4px;
}
.pill-nav__cursor {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  width: 0;
  border-radius: 999px;
  background: var(--espresso);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease;
}
.pill-nav__link {
  position: relative;
  z-index: 1;
  display: block;
  padding: 10px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  mix-blend-mode: difference;
  white-space: nowrap;
}

.header__cta { flex-shrink: 0; background: #7D2838; }
.header__cta:hover { background: #6A2230; }

/* Mobile menu toggle (animated hamburger -> close) */
.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--espresso);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  padding: 8px;
}
.menu-icon {
  width: 22px;
  height: 22px;
  color: var(--off-white);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__toggle.is-open .menu-icon { transform: rotate(-45deg); }
.menu-icon__top {
  stroke-dasharray: 12 63;
  stroke-dashoffset: 0;
  transition: stroke-dasharray 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__toggle.is-open .menu-icon__top {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,33,29,0.15) 0%, rgba(43,33,29,0.65) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 96px;
  text-align: center;
  margin: 0 auto;
}
.hero__tagline {
  font-family: var(--font-serif);
  color: var(--off-white);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: #7D2838;
  padding: 11px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.marquee__group span {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(0.72rem, 0.9vw, 0.85rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 0 14px;
}
.marquee__dot {
  color: var(--champagne);
  font-size: 0.7em;
  padding: 0 !important;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ---------- About ---------- */
.about { padding: 120px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}
.about__photo {
  position: relative;
  padding: 4px;
  border-radius: 50%;
  background: var(--off-white);
  box-shadow: 22px 22px 50px rgba(161,142,131,0.32),
              -18px -18px 44px rgba(255,255,255,0.9);
  overflow: hidden;
  isolation: isolate;
  animation: about-photo-float 4.5s ease-in-out infinite;
}
@keyframes about-photo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .about__photo { animation: none; }
}
.about__photo-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 75%;
  margin-top: -37.5%;
  margin-left: -37.5%;
  border-radius: 999px;
  background: linear-gradient(135deg, #B17E88, #7D2838 55%, #4A1520);
  filter: blur(20px);
  opacity: 0.9;
  z-index: 0;
  animation: about-blob-move 8s linear infinite;
}
@keyframes about-blob-move {
  0%   { transform: translate(-55%, -55%); }
  25%  { transform: translate(55%, -55%); }
  50%  { transform: translate(55%, 55%); }
  75%  { transform: translate(-55%, 55%); }
  100% { transform: translate(-55%, -55%); }
}
.about__photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(43,33,29,0.18);
}
.about__text p { margin-bottom: 18px; color: var(--mocha); max-width: 540px; }

/* ---------- Scroll reveal ---------- */
.reveal-group > * {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 0.8, 0.24, 1);
}
.reveal-group.is-visible > * {
  opacity: 1;
  transform: translateX(0);
}
.reveal-group > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-group > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Services ---------- */
.services {
  background: var(--espresso);
  color: var(--off-white);
  padding: 120px 0;
}
.services > .container { max-width: 1240px; }
.services__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.services__header p { color: var(--champagne); margin-top: 4px; white-space: nowrap; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.service-card { cursor: pointer; }
.service-card:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}
.service-card__img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card h3 {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--off-white);
}
.service-card__plus {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--off-white);
  color: var(--espresso);
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition: transform 0.3s ease, background 0.3s ease;
}
.service-card__plus svg { width: 18px; height: 18px; }
.service-card:hover .service-card__plus,
.service-card:focus-visible .service-card__plus {
  transform: scale(1.1) rotate(90deg);
}

/* ---------- Service modal (FLIP shared-image transition) ---------- */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.service-modal.is-visible { visibility: visible; pointer-events: auto; }
body.service-modal-open { overflow: hidden; }
.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 33, 29, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-modal.is-open .service-modal__backdrop { opacity: 1; }
.service-modal__dialog {
  position: fixed;
  overflow: hidden;
  background: var(--off-white);
  box-shadow: 0 30px 80px rgba(43,33,29,0.35);
  display: flex;
  flex-direction: column;
  transition: top 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              border-radius 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-modal__img {
  display: block;
  flex: 0 0 62%;
  width: 100%;
  height: 62%;
  object-fit: cover;
}
.service-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 20px 28px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
}
.service-modal.is-open .service-modal__body {
  opacity: 1;
  transform: translateY(0);
}
.service-modal__body h3 {
  font-size: 1.25rem;
  color: var(--espresso);
  margin-bottom: 6px;
}
.service-modal__body p {
  color: var(--mocha);
  font-size: 0.88rem;
  line-height: 1.5;
}
.service-modal__price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--champagne);
}
.service-modal__price-line {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--espresso);
}
.service-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(245,241,237,0.9);
  color: var(--espresso);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease 0.1s, background 0.2s ease;
}
.service-modal.is-open .service-modal__close { opacity: 1; }
.service-modal__close:hover { background: var(--off-white); }
.service-modal__close svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .service-modal__dialog { width: 92vw !important; left: 4vw !important; }
}
.services__note {
  text-align: center;
  color: var(--taupe);
  font-size: 0.8rem;
  margin-top: 40px;
}
.services__cta {
  text-align: center;
  margin-top: 24px;
}
.services__cta .btn--primary { background: #F06F6A; }
.services__cta .btn--primary:hover { background: #CC5E5A; }

/* ---------- Results ---------- */
.results { padding: 120px 0; }
.results__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.results__header p { color: var(--mocha); margin-top: 4px; }

/* Sticky-column masonry gallery (desktop) */
.results__masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.results__col {
  display: grid;
  gap: 20px;
  align-content: start;
}
.results__col--sticky {
  position: sticky;
  top: 110px;
  height: calc(100vh - 150px);
}
.results__figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(43,33,29,0.12);
}
.results__figure img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.results__figure:hover img { transform: scale(1.06); }
.results__col--sticky .results__figure { height: 100%; }
.results__col--sticky .results__figure img { height: 100%; }

@media (max-width: 960px) {
  .results__col--sticky { top: 96px; height: calc(100vh - 130px); }
}

/* Vertical drag/scroll card stack (mobile only) */
.results__stack {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  height: 560px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.results__stack-viewport {
  position: relative;
  width: 300px;
  height: 460px;
  perspective: 1200px;
}
.stack-card {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -230px 0 0 -150px;
  width: 300px;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(43,33,29,0.28);
  cursor: grab;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease;
  touch-action: none;
}
.stack-card:active { cursor: grabbing; }
.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.stack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,33,29,0.35), transparent 45%);
}

.results__stack-counter {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.results__stack-counter .current {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--espresso);
}
.results__stack-counter .rule {
  width: 28px;
  height: 1px;
  background: rgba(43,33,29,0.25);
  margin: 8px 0;
}
.results__stack-counter .total {
  font-size: 0.85rem;
  color: var(--mocha);
}

.results__stack-dots {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.results__stack-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(43,33,29,0.25);
  cursor: pointer;
  padding: 0;
  transition: height 0.3s ease, background 0.3s ease;
}
.results__stack-dots button.is-active { height: 24px; background: var(--espresso); }

.results__stack-hint {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--mocha);
}
.results__stack-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.results__stack-hint svg { width: 16px; height: 16px; }
.results__stack-hint .arrow-up { animation: hint-up 1.6s ease-in-out infinite; }
.results__stack-hint .arrow-down { animation: hint-down 1.6s ease-in-out infinite; }
@keyframes hint-up { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes hint-down { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (prefers-reduced-motion: reduce) {
  .stack-card { transition: opacity 0.3s ease; }
  .results__stack-hint .arrow-up, .results__stack-hint .arrow-down { animation: none; }
}

@media (max-width: 760px) {
  .results__masonry { display: none; }
  .results__stack { display: flex; flex-direction: column; height: auto; padding: 0 16px; gap: 20px; }
  .results__stack-viewport { width: 240px; height: 460px; overflow: hidden; }
  .stack-card { width: 240px; height: 380px; margin: -190px 0 0 -120px; }
  .results__stack-counter { position: static; flex-direction: row; transform: none; }
  .results__stack-counter .rule { width: 1px; height: 14px; margin: 0 8px; }
  .results__stack-dots { position: static; flex-direction: row; transform: none; }
  .results__stack-dots button.is-active { width: 24px; height: 8px; }
  .results__stack-hint { display: none; }
}

/* ---------- Dúvidas (FAQ accordion) ---------- */
.faq {
  background: var(--champagne);
  padding: 120px 0;
}
.faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.faq__header p {
  color: var(--mocha);
  margin-top: 6px;
  max-width: 360px;
}

.accordion-item {
  border-bottom: 1px solid rgba(43,33,29,0.18);
}
.accordion-item:first-child { border-top: 1px solid rgba(43,33,29,0.18); }
.accordion-item h3 { margin: 0; }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--espresso);
  cursor: pointer;
}
.accordion-trigger:hover span:first-child { color: var(--mocha); }

.accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(43,33,29,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--espresso);
}
.accordion-icon svg { width: 14px; height: 14px; }
.accordion-icon__v {
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.accordion-item.is-open .accordion-icon__v {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}
.accordion-panel__inner {
  overflow: hidden;
  min-height: 0;
}
.accordion-panel p {
  padding-bottom: 24px;
  color: var(--mocha);
  max-width: 560px;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--mocha);
  color: var(--off-white);
  padding: 120px 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.contact__header h2 { margin-top: 8px; margin-bottom: 32px; }
.contact__visit { margin-top: 36px; background: #C17C3A; }
.contact__visit:hover { background: #A4692F; }

.contact__channels { display: grid; gap: 26px; }
.contact__channels li {
  display: flex;
  align-items: center;
  gap: 18px;
}
.contact__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(245,241,237,0.08);
  border: 1px solid rgba(245,241,237,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__icon svg { width: 20px; height: 20px; }
.contact__channels a,
.contact__channels li > span:last-child {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--off-white);
}
.contact__channels a { border-bottom: 1px solid rgba(245,241,237,0.35); }
.contact__channels a:hover { color: var(--champagne); border-color: var(--champagne); }

.contact__hours {
  width: 100%;
  border-collapse: collapse;
}
.contact__hours tr { border-bottom: 1px solid rgba(245,241,237,0.18); }
.contact__hours tr:last-child { border-bottom: none; }
.contact__hours th,
.contact__hours td {
  padding: 14px 0;
  font-weight: 400;
}
.contact__hours th {
  text-align: left;
  font-family: var(--font-serif);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--off-white);
}
.contact__hours td {
  text-align: right;
  color: var(--champagne);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(380px, 45vw, 680px);
}
.cta-banner__photo {
  overflow: hidden;
  position: relative;
}
.cta-banner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
  display: block;
}
.cta-banner__card {
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 36px 40px;
}
.cta-banner__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 1.2vw + 1rem, 1.8rem);
  line-height: 1.35;
  color: var(--espresso);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--espresso);
  color: var(--taupe);
  padding: 32px 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.footer__logo {
  height: 46px;
  width: auto;
  display: block;
  justify-self: start;
}
.footer p { font-size: 0.8rem; justify-self: center; text-align: center; }
.footer .footer__credit {
  justify-self: end;
  text-align: right;
  font-size: 0.72rem;
  opacity: 0.75;
}
.footer__credit a {
  color: var(--taupe);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.footer__credit a:hover { color: var(--champagne); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__photo { max-width: 280px; margin: 0 auto; }
  .faq__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-banner { grid-template-columns: 1fr; height: auto; }
  .cta-banner__photo { height: 200px; }
  .cta-banner__card { padding: 36px 24px; }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    transform: none;
    background: var(--espresso);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .nav.is-open { max-height: 400px; }
  .pill-nav {
    display: block;
    width: 100%;
    border: none;
    border-radius: 0;
    background: none;
    padding: 0;
  }
  .pill-nav__cursor { display: none; }
  .pill-nav__link {
    padding: 16px 24px;
    color: var(--champagne);
    mix-blend-mode: normal;
    border-bottom: 1px solid rgba(245,241,237,0.08);
  }
  .header__cta { display: none; }
  .nav__toggle { display: flex; }
  .about, .services, .results, .contact { padding: 80px 0; }
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services__header p { white-space: normal; }
  .contact__visit { display: block; width: max-content; margin: 36px auto 0; }
  .footer__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer__logo, .footer p, .footer .footer__credit { justify-self: center; text-align: center; }
}

@media (max-width: 560px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
