:root {
  --ivory: #fbf7f1;
  --ivory-2: #fffdf9;
  --ink: #2a2019;
  --ink-soft: #6b5d4f;
  --gold: #b08d5f;
  --gold-deep: #8c6b42;
  --gold-light: #d9bd8c;
  --blush: #f1dfcf;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  line-height: 1.65;
  position: relative;
}
/* subtle tactile grain — boutique warmth, not a flat digital slab */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
h1,
h2,
h3,
.serif {
  font-family: "Fraunces", serif;
  font-weight: 400;
  color: var(--ink);
}
a {
  text-decoration: none;
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 6vw;
}

/* ---------- NAV ---------- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 6vw;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand svg {
  width: 30px;
  height: auto;
}
.brand span {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.nav-links a {
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--gold-deep);
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--ink);
  color: var(--ivory-2);
  border-radius: 100px;
  font-size: 0.86rem;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.btn-pill:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  padding: 11px 22px;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  border-radius: 100px;
  font-size: 0.86rem;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--ivory-2);
}

/* ---------- HERO (full-bleed photo) ---------- */
.hero-photo {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  animation: heroZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.09);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo-bg img {
    animation: none;
  }
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(20, 14, 8, 0.75) 0%,
    rgba(20, 14, 8, 0.42) 42%,
    rgba(20, 14, 8, 0.12) 72%
  );
}
.hero-nav {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 6vw;
}
.hero-nav .brand {
  color: var(--ivory);
}
.hero-nav .nav-links {
  color: rgba(253, 247, 241, 0.85);
  justify-self: center;
}
.hero-nav .nav-links a:hover {
  color: var(--gold-light);
}
.hero-nav .btn-pill {
  background: var(--ivory);
  color: var(--ink);
}
.hero-nav .btn-pill:hover {
  background: var(--gold);
  color: var(--ivory);
}
.nav-toggle {
  display: none;
  position: relative;
  justify-self: end;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 21;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition:
    top 0.25s ease,
    transform 0.25s ease,
    opacity 0.2s ease;
}
.nav-toggle span:nth-child(1) {
  top: 0;
}
.nav-toggle span:nth-child(2) {
  top: 9px;
}
.nav-toggle span:nth-child(3) {
  top: 18px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0s linear 0.35s;
}
.mobile-menu.is-open {
  opacity: 0.99;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0s linear 0s;
}
.mobile-menu a {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--ivory-2);
  transition: color 0.2s ease;
}
.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--gold-light);
}

.hero-photo-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0 6vw 9vh;
  max-width: 640px;
  color: var(--ivory);
}
.hero-photo-content .eyebrow {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: block;
}
.hero-photo-content h1 {
  font-family: "Fraunces", serif;
  color: var(--ivory);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 400;
  max-width: 11ch;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0;
}
.hero-divider span {
  flex: 1;
  height: 1px;
  background: rgba(253, 247, 241, 0.35);
  max-width: 64px;
}
.hero-divider i {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  transform: rotate(45deg);
  display: block;
  flex-shrink: 0;
}
.hero-photo-content p {
  color: rgba(253, 247, 241, 0.9);
  font-size: 1rem;
  max-width: 46ch;
}
.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-cta-photo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ivory);
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 0.92rem;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.hero-cta-photo:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}
.hero-cta-photo svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(253, 247, 241, 0.55);
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 0.92rem;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.hero-cta-secondary:hover {
  background: rgba(253, 247, 241, 0.12);
  border-color: var(--ivory);
}
.hero-cta-secondary svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* ---------- MARQUEE — the one signature motion moment ---------- */
.marquee-wrap {
  margin-top: 0;
  border-top: 1px solid rgba(176, 141, 95, 0.35);
  border-bottom: 1px solid rgba(176, 141, 95, 0.35);
  overflow: hidden;
  padding: 18px 0;
}
.marquee {
  display: flex;
  width: max-content;
  animation: scroll 32s linear infinite;
}
.marquee span {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-deep);
  padding: 0 2.2vw;
  white-space: nowrap;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none;
  }
}

/* ---------- SCISSORS SCROLL SCENE ---------- */
.scissors-scene {
  position: relative;
  height: 340vh;
}
.scissors-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
}
.scissors-visual {
  position: relative;
  width: min(760px, 92vw);
  height: 96vh;
  z-index: 1;
  will-change: transform;
  transform-origin: 50% 78%;
}
.scissors-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(43, 32, 24, 0.25));
  will-change: opacity;
}
.scissors-visual .frame-b {
  opacity: 0;
}
.scissors-copy-1 {
  position: absolute;
  left: 50%;
  top: 27%;
  transform: translate(-50%, -50%);
  max-width: 560px;
  text-align: center;
  z-index: 2;
  will-change: opacity;
}
.scissors-copy-1 .eyebrow {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 18px;
}
.scissors-copy-1 h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.1;
}
.scissors-copy-1 p {
  margin: 26px auto 0;
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 1.15rem;
}
.scissors-copy-2 {
  position: absolute;
  left: 50%;
  bottom: 16vh;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  opacity: 0;
  will-change: opacity;
}
.scissors-copy-2 h3 {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--ink);
  text-shadow:
    0 2px 24px rgba(251, 247, 241, 0.9),
    0 2px 24px rgba(251, 247, 241, 0.9);
}
.scissors-copy-2 .btn-pill {
  margin-top: 22px;
}
.scissors-hint {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 13vh 6vw;
}
.services-head {
  max-width: 52ch;
  margin: 0 auto 8vh;
  text-align: center;
}
.services-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
}
.services-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* ---------- PROCEDURE CARDS / INFINITE CAROUSEL ---------- */
.proc-carousel {
  --proc-per-view: 3;
  --proc-gap: 1.8rem;
  position: relative;
  background: var(--blush);
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.proc-viewport {
  /* overflow:hidden clips at the padding edge of whichever element it's
     on — putting it here (with no padding of its own) instead of on
     .proc-carousel means clipping happens exactly where the cards end,
     with no sliver of the next card visible in .proc-carousel's padding */
  overflow: hidden;
}
.proc-track {
  display: flex;
  gap: var(--proc-gap);
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.proc-track.is-dragging {
  cursor: grabbing;
}
.proc-card {
  flex: 0 0
    calc(
      (100% - (var(--proc-per-view) - 1) * var(--proc-gap)) /
        var(--proc-per-view)
    );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.proc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--ivory-2);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.proc-arrow svg {
  width: 20px;
  height: 20px;
}
.proc-arrow:hover {
  background: var(--gold);
  color: var(--ivory-2);
  transform: translateY(calc(-50% - 1px));
}
.proc-arrow-prev {
  left: 6px;
}
.proc-arrow-next {
  right: 6px;
}
.proc-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.proc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(176, 141, 95, 0.32);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.proc-dot.is-active {
  background: var(--gold-deep);
  transform: scale(1.35);
}
.proc-img {
  width: 100%;
  aspect-ratio: 4/5;
  min-height: 220px;
  border-radius: 10px;
  background:
    radial-gradient(
      120% 100% at 22% 18%,
      rgba(176, 141, 95, 0.32),
      transparent 62%
    ),
    linear-gradient(155deg, var(--blush), var(--ivory-2) 125%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.proc-img svg {
  width: 52%;
  opacity: 0.8;
}
.proc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
}
.proc-card h3 {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  margin-top: 20px;
}
.proc-card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 30ch;
}
.proc-card .btn-ghost {
  margin-top: auto;
  padding: 9px 20px;
  font-size: 0.82rem;
}

.services-more {
  margin-top: 8vh;
  padding-top: 6vh;
  border-top: 1px solid rgba(176, 141, 95, 0.25);
  text-align: center;
}
.services-more .eyebrow {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 16px;
}
.more-list {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 2;
}
.more-list .sep {
  color: var(--gold);
  font-style: italic;
  margin: 0 12px;
}
.more-note {
  margin-top: 26px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.more-whatsapp {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--ivory);
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.86rem;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.more-whatsapp:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}
.more-whatsapp svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* ---------- CLUBE DA ESCOVA (subscription) — scroll-grow scene ---------- */
.club-scene {
  position: relative;
  height: 388vh;
}
.club-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
}
.club-grow {
  position: relative;
  width: 56vw;
  height: 31.5vw;
  border-radius: 20px;
  overflow: hidden;
  will-change: width, height, border-radius;
  box-shadow: 0 40px 90px -24px rgba(43, 32, 24, 0.4);
}
.club-grow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.club-scrim-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 14, 9, 0.58) 0%,
    rgba(20, 14, 9, 0.24) 32%,
    rgba(20, 14, 9, 0) 58%
  );
  opacity: 0;
  will-change: opacity;
}
.club-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 14, 9, 0.8) 0%,
    rgba(20, 14, 9, 0.38) 42%,
    rgba(20, 14, 9, 0) 68%
  );
  opacity: 0;
  will-change: opacity;
}
.club-tag {
  position: absolute;
  top: 4vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ivory);
  background: rgba(20, 14, 9, 0.5);
  padding: 8px 24px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.club-heading {
  position: absolute;
  top: 15%;
  left: 6vw;
  max-width: 40ch;
  text-align: left;
  z-index: 2;
  opacity: 0;
  will-change: opacity;
}
.club-heading h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  color: var(--ivory-2);
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.35),
    0 1px 3px rgba(0, 0, 0, 0.3);
}
.club-intro {
  position: absolute;
  top: 32%;
  right: 9vw;
  width: min(380px, 34vw);
  text-align: left;
  z-index: 2;
  opacity: 0;
  will-change: opacity;
}
.club-intro p {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.club-copy-2 {
  position: absolute;
  left: 50%;
  bottom: 6vh;
  transform: translateX(-50%);
  width: min(880px, 88vw);
  text-align: center;
  z-index: 3;
  opacity: 0;
  will-change: opacity;
}
.club-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 4vh;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.club-plan {
  padding: 20px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.club-plan:first-child {
  border-left: none;
}
.club-plan h3 {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.club-plan p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
}

/* ---------- DUAS FACES. UMA IDENTIDADE. (coin scroll scene) ---------- */
.coin-scene {
  position: relative;
  height: 300vh;
}
.coin-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
}
.coin-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2.4vw, 26px);
  will-change: transform;
}
.coin-line-break {
  height: clamp(28px, 6vw, 72px);
}
.coin-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
  font-family: "Fraunces", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.3rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  color: var(--ink);
  white-space: nowrap;
}
.coin-line-l,
.coin-line-r {
  flex: 0 0 auto;
}
.coin-line-gap {
  flex: 0 0 auto;
  width: 0;
}
.coin-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(96px, 12vw, 210px);
  aspect-ratio: 1 / 1;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 20px 36px rgba(43, 32, 24, 0.35));
}
.coin-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  will-change: opacity;
}
.coin-visual .coin-frame-b {
  opacity: 0;
}
.coin-hint {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  opacity: 0.7;
  z-index: 2;
  transition: opacity 0.3s ease;
}

/* ---------- PHILOSOPHY / ABOUT ---------- */
.philosophy {
  background: var(--ivory);
  padding: 14vh 6vw;
}
.philosophy-box {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.philosophy-photo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 280px;
  margin-right: -70px;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 22px 48px -16px rgba(43, 32, 24, 0.45);
}
.philosophy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.philosophy-content {
  flex: 1;
  background: var(--blush);
  border-radius: 4px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8vh 6vw 8vh 12vw;
}
.philosophy-content > * {
  max-width: 600px;
}
.philosophy blockquote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.24;
}
.philosophy .credentials {
  margin-top: 32px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}
.philosophy .credentials strong {
  color: var(--ink);
  font-weight: 500;
}

/* ---------- LOCATION ---------- */
.location {
  padding: 10vh 6vw 13vh;
}
.location-box {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
  background: var(--ink);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gold-deep);
  box-shadow: 0 30px 60px -30px rgba(43, 32, 24, 0.45);
}
.location-info {
  padding: 7vh 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info .eyebrow {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 14px;
}
.location-info h2 {
  color: var(--ivory);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.22;
  max-width: 14ch;
}
.location-lead {
  margin-top: 16px;
  color: rgba(253, 247, 241, 0.75);
  font-size: 0.98rem;
  max-width: 40ch;
}
.location-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ivory);
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.88rem;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.btn-whatsapp:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}
.btn-whatsapp svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(253, 247, 241, 0.4);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.btn-outline-dark:hover {
  background: rgba(253, 247, 241, 0.1);
  border-color: var(--ivory);
}
.btn-outline-dark svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.location-details {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(176, 141, 95, 0.18);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-icon svg {
  width: 19px;
  height: 19px;
}
.detail-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253, 247, 241, 0.55);
  margin-bottom: 4px;
}
.location-details p {
  color: var(--ivory);
  font-size: 0.96rem;
  line-height: 1.5;
}
.detail-link {
  color: var(--ivory);
  border-bottom: 1px solid rgba(253, 247, 241, 0.4);
  transition: border-color 0.2s ease;
}
.detail-link:hover {
  border-color: var(--ivory);
}
.location-map {
  position: relative;
  min-height: 440px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  filter: sepia(12%) saturate(85%) brightness(97%);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 11vh 6vw 5vh;
  text-align: center;
}
footer h2 {
  color: var(--ivory);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 14ch;
  margin: 0 auto 34px;
}
footer .btn-pill {
  background: var(--gold);
  color: var(--ink);
}
footer .btn-pill:hover {
  background: var(--ivory-2);
}

footer .foot-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(216, 216, 216, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.76rem;
  color: #a99a86;
  text-align: left;
  flex-wrap: wrap;
}

@media (max-width: 840px) {
  nav {
    padding: 22px 6vw;
  }
  .hero-nav {
    grid-template-columns: auto 1fr;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .hero-photo {
    min-height: 100vh;
  }
  .hero-photo-bg img {
    /* the storefront entrance sits right-of-center in the source photo;
       on narrow crops the default center position cuts it off */
    object-position: 65% center;
  }
  .hero-photo-overlay {
    background: linear-gradient(
      180deg,
      rgba(20, 14, 8, 0.55) 0%,
      rgba(20, 14, 8, 0.35) 40%,
      rgba(20, 14, 8, 0.78) 100%
    );
  }
  .hero-photo-content {
    padding: 0 6vw 6vh;
    max-width: none;
  }
  .hero-photo-content h1 {
    max-width: none;
    font-size: clamp(2.1rem, 8vw, 2.8rem);
  }
  .brand span {
    display: none;
  }
  .location {
    padding: 8vh 6vw 10vh;
  }
  .location-box {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }
  .location-info {
    padding: 6vh 7vw;
  }
  .location-map {
    min-height: 320px;
  }
  .scissors-scene {
    height: 340vh;
  }
  .scissors-visual {
    width: min(480px, 94vw);
    height: 70vh;
  }
  .scissors-copy-1 {
    left: 50%;
    max-width: 86vw;
    padding: 0 4vw;
  }
  .scissors-copy-1 h2 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }
  .scissors-copy-1 p {
    font-size: 1rem;
  }
  .scissors-copy-2 {
    max-width: 88vw;
    padding: 0 6vw;
    bottom: 5vh;
  }
  .scissors-hint {
    display: none;
  }
  .location-map {
    min-height: 260px;
  }
  .more-list {
    font-size: 1rem;
    line-height: 2.1;
  }
  .club-scene {
    height: 316vh;
  }
  .club-grow {
    width: 78vw;
    height: 43.9vw;
  }
  .club-tag {
    top: 3vh;
    font-size: 1.05rem;
    padding: 6px 18px;
  }
  .club-heading {
    left: 50%;
    right: auto;
    top: 14%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 86vw;
    padding: 0 4vw;
  }
  .club-heading h2 {
    width: 16ch;
    font-size: clamp(1.5rem, 6.5vw, 1.9rem);
  }
  .club-intro {
    left: 50%;
    right: auto;
    top: 35%;
    width: 86vw;
    transform: translateX(-50%);
    text-align: center;
  }
  .club-intro p {
    font-size: 0.92rem;
  }
  .club-copy-2 {
    bottom: 4vh;
  }
  .club-plans {
    grid-template-columns: 1fr;
    margin-bottom: 3vh;
  }
  .club-plan {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 0;
  }
  .club-plan:first-child {
    border-top: none;
    padding-top: 0;
  }
  .coin-scene {
    height: 260vh;
  }
  .coin-text {
    gap: 12px;
  }
  .coin-line {
    font-size: clamp(1.05rem, 6.6vw, 1.6rem);
  }
  .coin-visual {
    width: clamp(76px, 20vw, 120px);
  }
  .philosophy-box {
    flex-direction: column;
  }
  .philosophy-photo {
    position: relative;
    width: 140px;
    margin-right: 0;
    margin-bottom: -40px;
    box-shadow: 0 22px 48px -16px rgba(43, 32, 24, 0.45);
  }
  .philosophy-content {
    padding: 8vh 6vw 6vh;
  }

  .proc-carousel {
    --proc-per-view: 2;
    --proc-gap: 14px;
    padding: 18px 20px;
  }
  .proc-arrow {
    width: 38px;
    height: 38px;
  }
  .proc-arrow-prev {
    left: 4px;
  }
  .proc-arrow-next {
    right: 4px;
  }
  footer .foot-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .proc-carousel {
    --proc-per-view: 1;
    --proc-gap: 12px;
    padding: 16px 16px 20px;
  }
  .proc-arrow-prev {
    left: 0;
  }
  .proc-arrow-next {
    right: 0;
  }
}
