:root {
  --ivory: #f7f3ed;
  --cream: #ece3d7;
  --paper: #fbf8f2;
  --charcoal: #252421;
  --ink: #191815;
  --terracotta: #a55e49;
  --terracotta-dark: #844532;
  --wine: #743e47;
  --olive: #66705b;
  --line: rgba(37, 36, 33, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
}

h2 {
  color: var(--ink);
  font-size: clamp(2.45rem, 3.35vw, 4rem);
  line-height: 0.92;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid #d7aa74;
  outline-offset: 3px;
}

.eyebrow {
  margin-bottom: 15px;
  color: #5b564f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  text-align: center;
  transition: background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

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

.button:active {
  transform: translateY(0);
}

.button--terracotta {
  background: var(--terracotta);
  color: #fff;
}

.button--terracotta:hover {
  background: var(--terracotta-dark);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(18, 17, 15, 0.22);
  color: #fff;
}

.button--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button--arrow::after {
  content: "→";
  font-size: 1.08rem;
  font-weight: 400;
  transition: transform 220ms var(--ease);
}

.button--arrow:hover::after,
.text-link:hover span {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #783e2d;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link span {
  display: inline-block;
  text-decoration: none;
  transition: transform 220ms var(--ease);
}

.section-rule {
  border-top: 1px solid rgba(91, 74, 55, 0.12);
}

.site-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  height: 104px;
  grid-template-columns: minmax(240px, 1.2fr) minmax(580px, 3.3fr) minmax(150px, 0.8fr);
  align-items: center;
  padding: 0 30px 0 44px;
  color: #fff;
  transition: height 220ms var(--ease), background-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.site-header.is-scrolled {
  position: fixed;
  height: 78px;
  background: rgba(25, 24, 21, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.brand {
  position: relative;
  display: grid;
  width: max-content;
  min-height: 72px;
  padding-left: 68px;
  align-content: center;
  color: #fff;
}

.brand__branch {
  position: absolute;
  top: -35px;
  left: -17px;
  width: 105px;
  height: 132px;
  object-fit: contain;
  object-position: 64% center;
  opacity: 0.94;
  transform: rotate(-29deg);
}

.brand__kicker {
  margin-bottom: 3px;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand__name {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 0.82;
}

.brand__tag {
  margin-top: 8px;
  max-width: 235px;
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}



/* Ajuste branding sticky 2026-09-14 */
@media (min-width: 981px) {
  .site-header.is-scrolled {
    height: 92px;
    grid-template-columns: minmax(260px, 1.2fr) minmax(540px, 3.2fr) minmax(150px, 0.8fr);
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .site-header.is-scrolled .brand {
    min-height: 82px;
    padding-left: 62px;
    align-content: center;
  }

  .site-header.is-scrolled .brand__branch {
    top: -24px;
    left: -16px;
    width: 92px;
    height: 112px;
    object-position: 62% center;
  }

  .site-header.is-scrolled .brand__kicker {
    margin-bottom: 2px;
    font-size: 0.42rem;
    letter-spacing: 0.22em;
    line-height: 1.15;
  }

  .site-header.is-scrolled .brand__name {
    font-size: 1.62rem;
    line-height: 0.86;
  }

  .site-header.is-scrolled .brand__tag {
    margin-top: 5px;
    max-width: 205px;
    font-size: 0.40rem;
    letter-spacing: 0.105em;
    line-height: 1.18;
  }
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 30px);
  font-size: 0.75rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  min-width: 152px;
}

.menu-toggle,
.mobile-menu,
.mobile-whatsapp {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 610px;
  grid-template-columns: 1fr;
  background: #131311;
  color: #fff;
}

.hero__main,
.hero__aside {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  min-width: 0;
  overflow: hidden;
}

.hero__main {
  min-height: 610px;
}

.hero__picture,
.hero__image {
  width: 100%;
  height: 100%;
}

.hero__picture {
  position: absolute;
  inset: 0;
}

.hero__image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 47% 56%;
  transform: scale(1.015);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 15, 13, 0.71) 0%, rgba(16, 15, 13, 0.34) 37%, rgba(16, 15, 13, 0.25) 64%, rgba(16, 15, 13, 0.44) 100%),
    linear-gradient(180deg, rgba(10, 10, 9, 0.46) 0%, rgba(10, 10, 9, 0.03) 42%, rgba(10, 10, 9, 0.59) 100%);
}

.hero__content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(980px, calc(100% - 360px));
  text-align: center;
  transform: translate(-50%, -38%);
}

.hero__content.reveal {
  transform: translate(-50%, -35%);
}

.hero__content.reveal.is-visible {
  transform: translate(-50%, -38%);
}

.hero h1 {
  color: #fff;
  font-size: clamp(3.5rem, 5.3vw, 6.25rem);
  line-height: 0.82;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.38);
}

.hero__intro {
  width: min(700px, 100%);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  line-height: 1.25;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.hero__actions .button {
  min-width: 210px;
}

.play-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.58rem;
  padding-left: 2px;
}

.hero__side-note {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 48px;
  padding-bottom: 27px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.65;
  text-transform: uppercase;
  transform: translateY(-5%);
}

.hero__side-note::after,
.hero__aside p::after,
.weddings__image p::after,
.weddings__detail p::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero__aside {
  min-height: 610px;
  border: 0;
  pointer-events: none;
}

.hero__aside-veil {
  display: none;
}

.hero__aside p {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 30px;
  padding-bottom: 22px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.55;
  text-align: right;
  text-transform: uppercase;
}

.hero__aside p::after {
  right: 0;
  left: auto;
}

.essence {
  display: grid;
  min-height: 330px;
  grid-template-columns: 23% 30% 19% 28%;
  background: var(--paper);
}

.essence__visual {
  position: relative;
  min-height: 330px;
  padding: 26px 20px 22px 56px;
}

.essence__paper {
  position: absolute;
  inset: 48px 52px 20px 18px;
  background: #73755f;
  transform: rotate(-1deg);
}

.essence__visual img {
  position: relative;
  z-index: 2;
  width: 90%;
  height: 190px;
  margin-left: auto;
  object-fit: cover;
  object-position: center 58%;
}

.essence__visual > p {
  position: absolute;
  z-index: 3;
  bottom: 42px;
  left: 40px;
  color: #f8f2e8;
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  line-height: 0.95;
  transform: rotate(-7deg);
}

.essence__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 48px;
}

.essence__copy h2 {
  font-size: clamp(3rem, 3.45vw, 4.15rem);
}

.essence__copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-top: 20px;
  color: #4e4a45;
  font-size: 0.88rem;
  line-height: 1.52;
}

.essence__copy .text-link {
  margin-top: 4px;
  align-self: flex-start;
}

.essence__quote {
  display: grid;
  min-height: 70%;
  place-content: center;
  align-self: center;
  border-left: 1px solid var(--line);
  text-align: center;
}

.essence__quote p {
  color: #49443f;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 2.05vw, 2.5rem);
  font-style: italic;
  line-height: 0.96;
}

.essence__quote cite {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.essence__collage {
  display: grid;
  min-height: 330px;
  grid-template-columns: 58% 42%;
  gap: 5px;
  padding: 26px 18px 24px 0;
}

.essence__collage img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.essence__collage img:first-child {
  object-position: 50% center;
}

.essence__collage img:last-child {
  object-position: 40% center;
}

.services {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(5, minmax(150px, 1fr));
  background: var(--ivory);
}

.services__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 46px;
}

.services__intro h2 {
  font-size: clamp(2.8rem, 3.2vw, 4rem);
}

.services__intro > p:not(.eyebrow) {
  max-width: 260px;
  margin-top: 12px;
  color: #5b554f;
  font-size: 0.82rem;
}

.short-rule {
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 17px;
  background: var(--terracotta);
}

.services__intro .text-link {
  margin-top: 4px;
  align-self: flex-start;
}

.service-card {
  min-width: 0;
  border-left: 1px solid rgba(100, 80, 60, 0.1);
  background: var(--paper);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition: filter 320ms var(--ease), transform 420ms var(--ease);
}

.service-card:hover img {
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.015);
}

.service-card:nth-of-type(2) img {
  object-position: center 32%;
}

.service-card > div {
  min-height: 104px;
  padding: 14px 16px 18px;
}

.service-card h3 {
  font-size: 1.55rem;
  line-height: 1;
}

.service-card p {
  margin-top: 8px;
  color: #635d56;
  font-size: 0.72rem;
  line-height: 1.3;
}

.weddings {
  display: grid;
  min-height: 360px;
  grid-template-columns: 52% 30% 18%;
  background: var(--paper);
}

.weddings__image,
.weddings__detail,
.business__image,
.contact__image {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.weddings__image img,
.weddings__detail img,
.business__image > img,
.contact__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.weddings__image img {
  object-position: center 40%;
}

.weddings__image::after,
.weddings__detail::after,
.contact__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 18, 15, 0.55));
  content: "";
}

.weddings__image p,
.weddings__detail p {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 34px;
  padding-bottom: 20px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.48;
  text-transform: uppercase;
}

.weddings__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 46px;
}

.weddings__copy h2 {
  font-size: clamp(2.9rem, 3.4vw, 4.15rem);
}

.weddings__copy > p:not(.eyebrow) {
  margin-top: 20px;
  color: #5b554e;
  font-size: 0.82rem;
}

.weddings__copy .button {
  margin-top: 20px;
  align-self: flex-start;
}

.weddings__detail img {
  object-position: 50% center;
}

.weddings__detail p {
  right: 22px;
  left: auto;
  text-align: right;
}

.weddings__detail p::after {
  right: 0;
  left: auto;
}

.business {
  display: grid;
  min-height: 355px;
  grid-template-columns: 30% 27% 43%;
  background: var(--paper);
}

.business__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 42px;
}

.business__copy h2 {
  font-size: clamp(2.5rem, 3.15vw, 3.8rem);
}

.business__copy > p:not(.eyebrow) {
  margin-top: 18px;
  color: #59534d;
  font-size: 0.82rem;
}

.business__copy .button {
  margin-top: 18px;
  align-self: flex-start;
}

.business__image > img {
  object-position: center;
}

.paper-note {
  position: absolute;
  right: -6px;
  bottom: 0;
  display: grid;
  width: 155px;
  height: 146px;
  place-content: center;
  background: rgba(247, 243, 237, 0.94);
  color: #766356;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 0.95;
  text-align: center;
  transform: rotate(-3deg);
}

.gallery-preview {
  padding: 34px 34px 24px 44px;
  background:
    radial-gradient(circle at 92% 3%, rgba(102, 112, 91, 0.13), transparent 26%),
    var(--paper);
}

.gallery-preview__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 21px;
}

.gallery-preview__heading .eyebrow {
  margin-bottom: 8px;
}

.gallery-preview__heading h2 {
  font-size: clamp(2.1rem, 2.7vw, 3.2rem);
}

.gallery-open {
  white-space: nowrap;
}

.gallery-preview__grid {
  display: grid;
  height: 175px;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
}

.gallery-preview__grid button {
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #ddd;
}

.gallery-preview__grid button:first-child,
.gallery-preview__grid button:nth-child(3) {
  grid-row: span 2;
}

.gallery-preview__grid button:last-child {
  grid-column: 4;
}

.gallery-preview__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms var(--ease), filter 350ms var(--ease);
}

.gallery-preview__grid button:hover img {
  filter: brightness(0.92);
  transform: scale(1.035);
}

.contact {
  position: relative;
  display: grid;
  min-height: 300px;
  grid-template-columns: 36% 44% 20%;
  overflow: hidden;
  background: var(--ivory);
}

.contact__branch {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.contact__branch--left {
  bottom: -235px;
  left: -110px;
  width: 420px;
  opacity: 0.28;
  transform: rotate(19deg);
}

.contact__intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 28px 34px 112px;
}

.contact__intro h2 {
  font-size: clamp(2.7rem, 3vw, 3.7rem);
}

.contact__intro > p {
  max-width: 490px;
  color: #69625b;
  font-size: 0.78rem;
}

.contact__facts {
  display: flex;
  gap: 22px;
  margin-top: 28px;
}

.contact__facts > a,
.contact__facts > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.contact__facts svg,
.mobile-whatsapp svg,
.floating-whatsapp svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact__facts svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--terracotta-dark);
}

.contact__facts a:first-child svg {
  color: #22a85a;
}

.contact__facts span {
  display: flex;
  flex-direction: column;
}

.contact__facts small {
  font-size: 0.59rem;
}

.contact__facts strong {
  font-size: 0.69rem;
  font-weight: 700;
}

.quote-form {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  padding: 30px 34px;
  border-left: 1px solid var(--line);
}

.field {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(37, 36, 33, 0.16);
  background: rgba(255, 255, 255, 0.35);
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 12px;
  color: #776f66;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 18px 11px 5px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 0.78rem;
}

.field textarea {
  min-height: 56px;
  resize: vertical;
}

.field:focus-within {
  border-color: var(--terracotta);
  box-shadow: inset 0 0 0 1px var(--terracotta);
}

.field.is-invalid {
  border-color: #a63a31;
}

.form-status {
  min-height: 20px;
  align-self: center;
  color: #a63a31;
  font-size: 0.7rem;
}

.quote-form > .button {
  justify-self: end;
}

.contact__image {
  min-height: 300px;
}

.contact__image > img {
  object-position: center 48%;
}

.contact__image > span {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 50%;
  width: 90%;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.1vw, 2.6rem);
  font-style: italic;
  line-height: 0.92;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62);
  transform: translate(-50%, -50%) rotate(-4deg);
}

.site-footer {
  display: grid;
  min-height: 125px;
  grid-template-columns: 30% 31% 19% 20%;
  align-items: center;
  padding: 20px 48px;
  background: #1f1f1d;
  color: #f4eee4;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand img {
  width: 62px;
  height: 72px;
  object-fit: contain;
  opacity: 0.7;
  transform: rotate(-26deg);
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.05;
  font-weight: 500;
}

.footer-brand small,
.footer-words {
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.site-footer > p:not(.footer-words) {
  color: #bcb6ae;
  font-size: 0.72rem;
}

.site-footer > p span {
  color: #f4eee4;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-words {
  justify-self: end;
  padding-right: 45px;
  color: #c5beb5;
  line-height: 1.65;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: none;
  min-height: 50px;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  border-radius: 999px;
  background: #1fa85b;
  color: #fff;
  box-shadow: 0 10px 28px rgba(20, 90, 52, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
}

.lightbox {
  width: min(1120px, calc(100vw - 44px));
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(16, 15, 13, 0.92);
  backdrop-filter: blur(6px);
}

.lightbox figure {
  display: grid;
  justify-items: center;
}

.lightbox figure img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.lightbox figcaption {
  margin-top: 10px;
  font-size: 0.78rem;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(20, 19, 17, 0.58);
  color: #fff;
  font-size: 1.4rem;
}

.lightbox__close {
  top: -58px;
  right: 0;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: -68px;
}

.lightbox__nav--next {
  right: -68px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: minmax(210px, 1fr) 3fr minmax(140px, 0.8fr);
    padding-left: 24px;
  }

  .brand {
    padding-left: 56px;
  }

  .brand__name {
    font-size: 1.65rem;
  }

  .brand__branch {
    left: -25px;
    width: 90px;
  }

  .desktop-nav {
    gap: 14px;
    font-size: 0.67rem;
  }

  .hero__content {
    left: 50%;
    width: min(860px, calc(100% - 300px));
  }

  .hero__side-note {
    left: 26px;
  }

  .services {
    grid-template-columns: minmax(235px, 1.2fr) repeat(5, minmax(135px, 1fr));
  }

  .services__intro,
  .weddings__copy,
  .business__copy {
    padding-right: 28px;
    padding-left: 28px;
  }

  .service-card img {
    height: 210px;
  }

  .contact__intro {
    padding-left: 48px;
  }

  .contact__facts {
    gap: 12px;
  }

  .contact__facts small {
    display: none;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header,
  .site-header.is-scrolled {
    position: fixed;
    display: grid;
    height: 76px;
    grid-template-columns: 1fr auto auto;
    padding: 0 16px 0 18px;
    background: rgba(24, 23, 20, 0.9);
    backdrop-filter: blur(10px);
  }

  .brand {
    min-height: 60px;
    padding-left: 46px;
  }

  .brand__branch {
    top: -12px;
    left: -18px;
    width: 66px;
    height: 82px;
  }

  .brand__name {
    font-size: 1.45rem;
  }

  .brand__kicker {
    font-size: 0.38rem;
    letter-spacing: 0.16em;
  }

  .brand__tag {
    display: block;
    margin-top: 4px;
    max-width: 175px;
    font-size: 0.34rem;
    letter-spacing: 0.06em;
    line-height: 1.15;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-whatsapp,
  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    background: transparent;
    color: #fff;
  }

  .mobile-whatsapp {
    margin-right: 5px;
    color: #65d58f;
  }

  .mobile-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .menu-toggle {
    position: relative;
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    left: 10px;
    width: 26px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms var(--ease), top 220ms var(--ease);
  }

  .menu-toggle span:first-child {
    top: 17px;
  }

  .menu-toggle span:nth-child(2) {
    top: 28px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 23px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    top: 23px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 95;
    inset: 76px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 24px;
    background: rgba(30, 29, 26, 0.985);
    color: #fff;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > a:not(.button) {
    display: grid;
    min-height: 48px;
    place-items: center;
    font-family: var(--serif);
    font-size: 1.65rem;
  }

  .mobile-menu .button {
    width: min(300px, 100%);
    margin-top: 18px;
  }

  .hero {
    min-height: 680px;
    grid-template-columns: 1fr;
  }

  .hero__main {
    min-height: 680px;
  }

  .hero__aside {
    display: none;
  }

  .hero__content {
    top: 50%;
    left: 50%;
    width: min(650px, calc(100% - 60px));
    transform: translate(-50%, -34%);
  }

  .hero__content.reveal {
    transform: translate(-50%, -31%);
  }

  .hero__content.reveal.is-visible {
    transform: translate(-50%, -34%);
  }

  .hero__side-note {
    display: none;
  }

  .hero__image {
    object-position: 58% 46%;
  }

  .essence {
    grid-template-columns: 44% 56%;
  }

  .essence__visual,
  .essence__copy,
  .essence__quote,
  .essence__collage {
    min-height: 320px;
  }

  .essence__copy {
    padding: 32px;
  }

  .essence__quote {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .essence__collage {
    padding: 18px;
  }

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

  .services__intro {
    min-height: 320px;
  }

  .service-card {
    border-top: 1px solid rgba(100, 80, 60, 0.1);
  }

  .service-card img {
    height: 280px;
  }

  .weddings {
    grid-template-columns: 58% 42%;
  }

  .weddings__image,
  .weddings__copy {
    min-height: 440px;
  }

  .weddings__detail {
    grid-column: 1 / -1;
    height: 300px;
  }

  .business {
    grid-template-columns: 48% 52%;
  }

  .business__copy,
  .business__image {
    min-height: 400px;
  }

  .gallery-preview {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .gallery-preview__grid {
    height: 230px;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact__intro {
    padding: 50px 46px 28px;
  }

  .contact__facts small {
    display: block;
  }

  .quote-form {
    padding: 25px 46px 46px;
    border-left: 0;
  }

  .contact__image {
    height: 300px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-height: 190px;
  }

  .footer-words,
  .socials {
    justify-self: end;
  }
}

@media (max-width: 700px) {
  h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .mobile-menu {
    inset-block-start: 72px;
  }

  .brand__name {
    font-size: 1.25rem;
  }

  .hero,
  .hero__main {
    min-height: 790px;
  }

  .hero__image {
    object-position: 52% center;
    transform: none;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(15, 14, 12, 0.62) 0%, rgba(15, 14, 12, 0.17) 41%, rgba(15, 14, 12, 0.16) 63%, rgba(15, 14, 12, 0.72) 100%),
      linear-gradient(90deg, rgba(15, 14, 12, 0.38), transparent 80%);
  }

  .hero__content {
    top: 154px;
    left: 24px;
    width: calc(100% - 48px);
    text-align: left;
    transform: none;
  }

  .hero__content.reveal,
  .hero__content.reveal.is-visible {
    transform: none;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(3.3rem, 15vw, 4.6rem);
    line-height: 0.86;
  }

  .hero__intro {
    max-width: 330px;
    margin: 20px 0 0;
    font-size: 1.07rem;
    line-height: 1.28;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
  }

  .hero__actions .button {
    width: min(270px, 100%);
  }

  .essence {
    grid-template-columns: 1fr;
  }

  .essence__visual {
    min-height: 330px;
    padding: 24px 24px 20px 48px;
  }

  .essence__visual img {
    width: 88%;
    height: 235px;
  }

  .essence__copy {
    min-height: auto;
    padding: 48px 24px 44px;
  }

  .essence__copy h2 {
    font-size: clamp(3.35rem, 15vw, 4.4rem);
  }

  .essence__copy > p:not(.eyebrow) {
    font-size: 0.92rem;
  }

  .essence__quote {
    min-height: 230px;
    margin-inline: 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .essence__collage {
    min-height: 360px;
    padding: 24px;
  }

  .essence__collage img {
    min-height: 300px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .services__intro {
    min-height: auto;
    padding: 52px 24px 44px;
  }

  .services__intro h2 {
    font-size: clamp(3.2rem, 15vw, 4.25rem);
  }

  .service-card {
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 205px;
  }

  .service-card:nth-child(even) {
    grid-template-columns: 48% 52%;
  }

  .service-card:nth-child(even) img {
    order: 2;
  }

  .service-card img {
    height: 100%;
    min-height: 205px;
  }

  .service-card > div {
    display: flex;
    min-height: 205px;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
  }

  .service-card h3 {
    font-size: 1.85rem;
  }

  .service-card p {
    font-size: 0.76rem;
  }

  .weddings {
    grid-template-columns: 1fr;
  }

  .weddings__image {
    min-height: 470px;
  }

  .weddings__copy {
    min-height: auto;
    padding: 48px 24px 52px;
  }

  .weddings__copy h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .weddings__copy > p:not(.eyebrow),
  .business__copy > p:not(.eyebrow) {
    font-size: 0.92rem;
  }

  .weddings__detail {
    grid-column: auto;
    height: 360px;
  }

  .business {
    grid-template-columns: 1fr;
  }

  .business__copy {
    min-height: auto;
    padding: 50px 24px;
  }

  .business__copy h2 {
    font-size: clamp(2.85rem, 13vw, 4rem);
  }

  .business__image {
    min-height: 400px;
  }

  .paper-note {
    width: 145px;
    height: 136px;
    font-size: 1.35rem;
  }

  .gallery-preview {
    grid-column: auto;
    min-height: auto;
    padding: 48px 18px 24px;
  }

  .gallery-preview__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-preview__heading h2 {
    font-size: clamp(2.75rem, 13vw, 3.8rem);
  }

  .gallery-preview__grid {
    height: 470px;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(4, 1fr);
  }

  .gallery-preview__grid button:first-child {
    grid-row: span 2;
  }

  .gallery-preview__grid button:nth-child(3) {
    grid-row: span 2;
  }

  .gallery-preview__grid button:nth-child(4) {
    grid-row: span 2;
  }

  .gallery-preview__grid button:last-child {
    grid-column: auto;
  }

  .contact__intro {
    padding: 52px 24px 28px;
  }

  .contact__intro h2 {
    font-size: clamp(3rem, 13vw, 3.8rem);
  }

  .contact__intro > p {
    font-size: 0.86rem;
  }

  .contact__facts {
    flex-direction: column;
    gap: 14px;
  }

  .contact__facts > a,
  .contact__facts > div {
    min-height: 44px;
  }

  .contact__facts small {
    font-size: 0.63rem;
  }

  .contact__facts strong {
    font-size: 0.78rem;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 12px 24px 50px;
  }

  .field--wide {
    grid-column: auto;
  }

  .quote-form > .button {
    width: 100%;
    justify-self: stretch;
  }

  .contact__image {
    height: 380px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    min-height: 330px;
    padding: 35px 24px 90px;
    text-align: center;
  }

  .footer-brand,
  .socials,
  .footer-words {
    justify-self: center;
  }

  .footer-words {
    padding-right: 0;
  }

  .floating-whatsapp {
    display: flex;
  }

  .lightbox {
    width: calc(100vw - 24px);
  }

  .lightbox__close {
    top: -58px;
  }

  .lightbox__nav {
    top: auto;
    bottom: -62px;
    transform: none;
  }

  .lightbox__nav--prev {
    left: calc(50% - 58px);
  }

  .lightbox__nav--next {
    right: calc(50% - 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Internal SEO navigation */
.footer-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1rem;
  max-width: 34rem;
  align-content: center;
}
.footer-seo-links a {
  color: inherit;
  opacity: .72;
  font-size: .72rem;
  text-decoration: none;
  transition: opacity .2s ease;
}
.footer-seo-links a:hover, .footer-seo-links a:focus-visible { opacity: 1; text-decoration: underline; }
@media (max-width: 700px) {
  .footer-seo-links { justify-content: center; max-width: 100%; }
}

/* SEO service navigation */
.service-card__link{display:inline-flex;align-items:center;gap:7px;margin-top:12px;color:var(--terracotta);font-size:.7rem;font-weight:800;letter-spacing:.08em;text-decoration:none;text-transform:uppercase}.service-card__link span{transition:transform .2s ease}.service-card__link:hover span,.service-card__link:focus-visible span{transform:translateX(4px)}.service-directory{grid-column:1/-1;display:flex;align-items:center;justify-content:center;gap:18px;flex-wrap:wrap;padding:18px 24px 20px;border-top:1px solid rgba(100,80,60,.12);background:#f1e9df}.service-directory span{font-size:.68rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#6d6258}.service-directory a{font-family:"Cormorant Garamond",Georgia,serif;font-size:1.05rem;text-decoration:none;border-bottom:1px solid rgba(165,94,73,.35)}.service-directory a:hover,.service-directory a:focus-visible{color:var(--terracotta);border-color:var(--terracotta)}.section-page-link{display:inline-flex;margin-top:18px}.section-page-links{display:flex;gap:18px;flex-wrap:wrap;margin-top:18px}.section-page-links .text-link{margin:0}@media(max-width:700px){.service-directory{justify-content:flex-start;gap:10px 16px;padding:22px 24px}.service-directory span{flex:0 0 100%}.service-directory a{font-size:1.15rem}.service-card > div{justify-content:center}.service-card__link{font-size:.66rem}}

/* SEO: event-intent navigation */
.intent-directory{grid-column:1/-1;display:flex;align-items:center;justify-content:center;gap:10px 18px;flex-wrap:wrap;padding:22px 26px 24px;background:#252421;color:#f7f3ed;border-top:1px solid rgba(255,255,255,.08)}.intent-directory span{flex:0 0 100%;text-align:center;font-size:.66rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#c7b9aa}.intent-directory a{font-family:"Cormorant Garamond",Georgia,serif;font-size:1.1rem;color:#fff;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.25)}.intent-directory a:hover,.intent-directory a:focus-visible{color:#e1b9a9;border-color:#e1b9a9}@media(max-width:700px){.intent-directory{justify-content:flex-start;padding:24px}.intent-directory span{text-align:left}.intent-directory a{font-size:1.15rem}}


/* Lightweight, horizontally browsable real-work gallery */
.gallery-preview__intro {
  max-width: 570px;
  margin: 10px 0 0;
  color: #6c655d;
  font-size: .72rem;
  line-height: 1.65;
}

.gallery-preview__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 13px;
}

.gallery-preview__arrows {
  display: flex;
  gap: 7px;
}

.gallery-scroll {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(37,36,33,.25);
  border-radius: 50%;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.gallery-scroll:hover,
.gallery-scroll:focus-visible {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fff;
}

.gallery-preview__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(160px, 26vw, 255px);
  gap: 7px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-preview__rail::-webkit-scrollbar { display: none; }

.gallery-preview__rail button {
  position: relative;
  height: 215px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #ded8d0;
  cursor: zoom-in;
  scroll-snap-align: start;
}

.gallery-preview__rail button:nth-child(3n + 2) { height: 190px; align-self: end; }
.gallery-preview__rail button:nth-child(4n) { height: 205px; }

.gallery-preview__rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease), filter 420ms var(--ease);
}

.gallery-preview__rail button:hover img,
.gallery-preview__rail button:focus-visible img {
  filter: brightness(.91);
  transform: scale(1.035);
}

.gallery-preview__hint {
  margin: 8px 0 0;
  color: #81786f;
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lightbox__counter {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-size: .65rem;
  text-align: center;
}

@media (max-width: 700px) {
  .gallery-preview__actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .gallery-preview__rail {
    margin-right: -18px;
    grid-auto-columns: min(74vw, 280px);
    padding-right: 18px;
  }
  .gallery-preview__rail button,
  .gallery-preview__rail button:nth-child(3n + 2),
  .gallery-preview__rail button:nth-child(4n) {
    height: 330px;
    align-self: auto;
  }
  .gallery-preview__rail button:nth-child(even) { height: 285px; }
}

/* Responsive hardening */
.business__copy,
.business__image,
.business__picture,
.service-card > div,
.weddings__copy,
.gallery-preview,
.contact__intro,
.quote-form {
  min-width: 0;
}

.business__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.business__picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
  }

  main,
  main > section,
  .business,
  .business__copy,
  .business__image,
  .gallery-preview,
  .services,
  .weddings,
  .contact {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .business__copy {
    padding: 46px 22px 42px;
    overflow: hidden;
  }

  .business__copy .eyebrow {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .business__copy h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.25rem, 10.4vw, 3.05rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .business__copy h2 br {
    display: none;
  }

  .business__copy > p:not(.eyebrow) {
    width: 100%;
    max-width: 34rem;
    margin-top: 18px;
    font-size: 0.91rem;
    line-height: 1.65;
    overflow-wrap: break-word;
  }

  .business__copy .button {
    width: min(100%, 340px);
    max-width: 100%;
    min-height: 52px;
    padding-inline: 20px;
    white-space: normal;
  }

  .section-page-links {
    width: 100%;
    max-width: 100%;
    gap: 8px 20px;
  }

  .section-page-links .text-link {
    max-width: 100%;
    white-space: normal;
  }

  .business__image {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ddd4cb;
  }

  .business__picture,
  .business__picture > img {
    width: 100%;
    height: 100%;
  }

  .business__picture > img {
    object-fit: cover;
    object-position: center center;
  }

  .paper-note {
    right: 10px;
    bottom: 10px;
    width: 112px;
    height: 102px;
    padding: 8px;
    font-size: 1rem;
    line-height: 0.98;
  }

  .service-card,
  .service-card > div,
  .service-card img {
    min-width: 0;
  }

  .service-card h3,
  .service-card p,
  .service-card__link,
  .service-directory a,
  .intent-directory a,
  .footer-seo-links a {
    overflow-wrap: break-word;
  }

  .weddings__copy h2,
  .essence__copy h2,
  .services__intro h2,
  .gallery-preview__heading h2,
  .contact__intro h2 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .button,
  .text-link {
    max-width: 100%;
  }

  img,
  picture,
  svg,
  video {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .business__copy {
    padding-inline: 20px;
  }

  .business__copy h2 {
    font-size: clamp(2.15rem, 10vw, 2.7rem);
  }

  .section-page-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .business__image {
    aspect-ratio: 1.28 / 1;
  }
}

@media (max-width: 360px) {
  .business__copy {
    padding: 40px 18px 38px;
  }

  .business__copy h2 {
    font-size: 2.08rem;
    line-height: 1;
  }

  .business__copy .button {
    width: 100%;
    font-size: 0.8rem;
  }

  .service-card,
  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even) img {
    order: 0;
  }

  .service-card img {
    width: 100%;
    height: 220px;
    min-height: 0;
  }

  .service-card > div {
    min-height: 0;
    padding: 22px 18px 24px;
  }
}


/* Ajuste branding home 2026-09-14 v4 */
.site-header {
  grid-template-columns: minmax(340px, 1.7fr) minmax(500px, 3fr) minmax(150px, 0.9fr);
}

.brand {
  min-height: 82px;
  padding-left: 68px;
  row-gap: 4px;
}

.brand__top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.brand__main {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 0.82;
}

.brand__side {
  align-self: center;
  max-width: 170px;
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 0.94;
}

.brand__bottom {
  display: block;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1.2;
}

@media (min-width: 981px) {
  .site-header.is-scrolled {
    height: 86px;
    grid-template-columns: minmax(320px, 1.6fr) minmax(500px, 3fr) minmax(145px, 0.85fr);
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .site-header.is-scrolled .brand {
    min-height: 74px;
    padding-left: 62px;
    row-gap: 3px;
  }

  .site-header.is-scrolled .brand__branch {
    top: -24px;
    left: -16px;
    width: 92px;
    height: 112px;
    object-position: 62% center;
  }

  .site-header.is-scrolled .brand__top {
    gap: 12px;
  }

  .site-header.is-scrolled .brand__main {
    font-size: 1.68rem;
    line-height: 0.83;
  }

  .site-header.is-scrolled .brand__side {
    max-width: 145px;
    font-size: 0.82rem;
    line-height: 0.95;
  }

  .site-header.is-scrolled .brand__bottom {
    font-size: 0.40rem;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: minmax(290px, 1.45fr) 3fr minmax(130px, 0.75fr);
    padding-left: 24px;
  }

  .brand {
    padding-left: 56px;
    row-gap: 3px;
  }

  .brand__top {
    gap: 12px;
  }

  .brand__main {
    font-size: 1.68rem;
  }

  .brand__side {
    max-width: 132px;
    font-size: 0.78rem;
  }

  .brand__bottom {
    font-size: 0.40rem;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 980px) {
  .site-header,
  .site-header.is-scrolled {
    height: 82px;
  }

  .brand {
    min-height: 68px;
    max-width: 248px;
    padding-left: 46px;
    row-gap: 2px;
  }

  .brand__top {
    gap: 8px;
  }

  .brand__main {
    font-size: 1.3rem;
    line-height: 0.84;
  }

  .brand__side {
    max-width: 88px;
    margin-top: 2px;
    font-size: 0.56rem;
    line-height: 1;
  }

  .brand__bottom {
    font-size: 0.31rem;
    letter-spacing: 0.12em;
    line-height: 1.15;
  }

  .mobile-menu {
    inset-block-start: 82px;
  }
}

@media (max-width: 700px) {
  .site-header,
  .site-header.is-scrolled {
    height: 78px;
  }

  .brand {
    max-width: 228px;
  }

  .brand__main {
    font-size: 1.14rem;
  }

  .brand__side {
    max-width: 80px;
    font-size: 0.48rem;
  }

  .brand__bottom {
    font-size: 0.27rem;
    letter-spacing: 0.11em;
  }

  .mobile-menu {
    inset-block-start: 78px;
  }
}

/* Coverage copy update 2026-09-14 */


.button--soft-outline {
  border-color: rgba(60, 48, 38, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button--soft-outline:hover {
  border-color: rgba(60, 48, 38, 0.42);
  background: rgba(255, 255, 255, 0.95);
}

.wedding-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  padding: 68px clamp(22px, 4vw, 56px);
  background: linear-gradient(180deg, #fbf8f3 0%, #f6f1e9 100%);
}

.wedding-editorial__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.wedding-editorial__intro {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wedding-editorial__branch {
  width: 58px;
  opacity: 0.78;
}

.wedding-editorial__copy h2 {
  margin-top: 8px;
  max-width: 9ch;
  font-size: clamp(3.2rem, 4.6vw, 5.25rem);
  line-height: 0.92;
}

.wedding-editorial__lead {
  max-width: 31rem;
  margin-top: 22px;
  color: #4f4a44;
  font-size: 1rem;
  line-height: 1.56;
}

.wedding-editorial__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.wedding-editorial__actions .button {
  min-width: 220px;
}

.wedding-editorial__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(88, 71, 56, 0.15);
  border-bottom: 1px solid rgba(88, 71, 56, 0.15);
}

.wedding-editorial__features article {
  min-width: 0;
  padding: 18px 18px 18px 0;
}

.wedding-editorial__features article:not(:last-child) {
  border-right: 1px solid rgba(88, 71, 56, 0.15);
  padding-right: 18px;
  margin-right: 18px;
}

.wedding-editorial__features strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.05;
}

.wedding-editorial__features span {
  display: block;
  margin-top: 10px;
  color: #6f675f;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.wedding-editorial__quote {
  margin-top: 40px;
  color: #6f5c4e;
}

.wedding-editorial__quote p {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 0.95;
}

.wedding-editorial__quote cite {
  display: inline-block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(111, 92, 78, 0.35);
  color: #6e635b;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.wedding-editorial__visual {
  position: relative;
  min-height: 760px;
  min-width: 0;
}

.wedding-editorial__hero,
.wedding-editorial__mini {
  margin: 0;
  overflow: hidden;
  background: #ddd0c0;
  box-shadow: 0 24px 60px rgba(48, 35, 23, 0.12);
}

.wedding-editorial__hero {
  position: absolute;
  inset: 0 0 170px 0;
}

.wedding-editorial__hero img,
.wedding-editorial__mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wedding-editorial__hero img {
  object-position: center;
}

.wedding-editorial__words {
  position: absolute;
  top: 34px;
  right: 28px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.wedding-editorial__words li {
  position: relative;
  padding-left: 26px;
}

.wedding-editorial__words li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
  content: "";
}

.wedding-editorial__mini--table {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: min(56%, 390px);
  aspect-ratio: 1.08 / 0.82;
}

.wedding-editorial__mini--table .wedding-editorial__note--in-table {
  position: absolute;
  top: 18px;
  right: 18px;
  left: auto;
  bottom: auto;
  z-index: 2;
  width: auto;
  max-width: 154px;
  padding: 13px 14px 13px 16px;
  border: 1px solid rgba(105, 91, 77, 0.14);
  border-left: 2px solid rgba(92, 79, 65, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(250, 247, 242, 0.70), rgba(250, 247, 242, 0.42));
  color: #595149;
  box-shadow: 0 14px 28px rgba(48, 35, 23, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.6;
  text-transform: uppercase;
}

.wedding-editorial__mini--flowers {
  position: absolute;
  right: 8px;
  bottom: 164px;
  width: min(34%, 230px);
  aspect-ratio: 0.72 / 1;
  border: 10px solid rgba(255, 255, 255, 0.9);
}

.wedding-editorial__tag {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46%, 275px);
  min-height: 170px;
  padding: 28px 26px 24px;
  background: #6d755f;
  color: #fffaf2;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
  line-height: 0.92;
  box-shadow: 0 18px 42px rgba(52, 63, 45, 0.22);
}

.wedding-editorial__tag::after {
  position: absolute;
  right: 14px;
  bottom: 10px;
  width: 54px;
  height: 54px;
  background: url('./assets/olive-branch.png?v=20260913-1823') center / contain no-repeat;
  opacity: 0.55;
  content: "";
}

@media (max-width: 1280px) {
  .wedding-editorial {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .wedding-editorial__copy h2,
  .wedding-editorial__lead {
    max-width: 100%;
  }

  .wedding-editorial__visual {
    min-height: 820px;
  }
}

@media (max-width: 980px) {
  .wedding-editorial {
    padding: 54px 24px;
  }

  .wedding-editorial__features {
    grid-template-columns: 1fr;
  }

  .wedding-editorial__features article {
    padding: 16px 0;
  }

  .wedding-editorial__features article:not(:last-child) {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(88, 71, 56, 0.15);
  }

  .wedding-editorial__visual {
    min-height: 760px;
  }

  .wedding-editorial__hero {
    inset: 0 0 220px 0;
  }

  .wedding-editorial__mini--table {
    width: min(62%, 380px);
  }

  .wedding-editorial__mini--flowers {
    width: min(38%, 220px);
    bottom: 206px;
  }
}

@media (max-width: 700px) {
  .wedding-editorial {
    gap: 28px;
    padding: 46px 20px;
  }

  .wedding-editorial__copy h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .wedding-editorial__lead {
    font-size: 0.94rem;
  }

  .wedding-editorial__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wedding-editorial__actions .button {
    width: 100%;
    min-width: 0;
  }

  .wedding-editorial__quote p {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .wedding-editorial__visual {
    min-height: 660px;
  }

  .wedding-editorial__hero {
    inset: 0 0 212px 0;
  }

  .wedding-editorial__words {
    top: 18px;
    right: 18px;
    gap: 12px;
    font-size: 0.66rem;
  }

  .wedding-editorial__mini--table {
    bottom: 108px;
    left: 0;
    width: min(74%, 300px);
  }

  .wedding-editorial__mini--flowers {
    right: 0;
    bottom: 246px;
    width: min(40%, 160px);
    border-width: 7px;
  }

  .wedding-editorial__note {
    left: 16px;
    bottom: 18px;
    max-width: 145px;
    padding-left: 14px;
    font-size: 0.68rem;
    line-height: 1.65;
  }

  .wedding-editorial__tag {
    width: min(52%, 210px);
    min-height: 126px;
    padding: 18px 16px;
    font-size: clamp(1.3rem, 6.8vw, 1.8rem);
  }

  .wedding-editorial__tag::after {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .wedding-editorial__branch {
    width: 44px;
  }

  .wedding-editorial__visual {
    min-height: 590px;
  }

  .wedding-editorial__hero {
    inset: 0 0 188px 0;
  }

  .wedding-editorial__mini--table {
    width: min(76%, 260px);
  }

  .wedding-editorial__mini--flowers {
    width: min(43%, 138px);
    bottom: 220px;
  }

  .wedding-editorial__tag {
    width: min(58%, 198px);
  }
}


.wedding-editorial__hero img {
  object-position: center center;
}

.wedding-editorial__mini--table img {
  object-position: center center;
}

.wedding-editorial__mini--flowers img {
  object-position: center top;
}


/* Expo Eventos & Bodas 2026 */
.expo-showcase {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: clamp(64px, 7vw, 104px) clamp(22px, 5vw, 72px);
  background: #24231f;
  color: #f7f3ed;
}
.expo-showcase__copy{min-width:0}.expo-showcase .eyebrow{color:#d3b7a1}.expo-showcase h2{max-width:9ch;color:#fff;font-size:clamp(3.1rem,5.3vw,5.5rem);line-height:.91}.expo-showcase__lead{max-width:34rem;margin-top:24px;color:#d9d3cc;font-size:.98rem;line-height:1.72}.expo-showcase__facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0;margin-top:36px;border-top:1px solid rgba(255,255,255,.14);border-bottom:1px solid rgba(255,255,255,.14)}.expo-showcase__facts>div{padding:20px 18px 20px 0;min-width:0}.expo-showcase__facts>div+div{padding-left:18px;border-left:1px solid rgba(255,255,255,.14)}.expo-showcase__facts span{display:block;margin-bottom:8px;color:#b7aea5;font-size:.62rem;font-weight:800;letter-spacing:.17em;text-transform:uppercase}.expo-showcase__facts strong{display:block;color:#f7f3ed;font-family:var(--serif);font-size:1.12rem;font-weight:500;line-height:1.08}.expo-showcase__actions{display:flex;align-items:center;gap:22px;flex-wrap:wrap;margin-top:30px}.expo-showcase__actions .text-link{color:#e7d4c5}.expo-showcase__video{min-width:0}.expo-showcase__frame{position:relative;overflow:hidden;aspect-ratio:16/9;background:#111;box-shadow:0 28px 70px rgba(0,0,0,.35)}.expo-showcase__frame iframe{position:absolute;inset:0;width:100%;height:100%;border:0}.expo-showcase__caption{display:flex;justify-content:space-between;gap:20px;align-items:center;padding:16px 0 0;border-top:1px solid rgba(255,255,255,.14);margin-top:16px}.expo-showcase__caption span{color:#a99f96;font-size:.62rem;font-weight:800;letter-spacing:.18em;text-transform:uppercase}.expo-showcase__caption strong{font-family:var(--serif);font-size:1.2rem;font-weight:500}
@media(max-width:1080px){.expo-showcase{grid-template-columns:1fr}.expo-showcase h2{max-width:13ch}.expo-showcase__lead{max-width:46rem}}
@media(max-width:700px){.expo-showcase{padding:54px 20px;gap:34px}.expo-showcase h2{font-size:clamp(2.75rem,12vw,4rem)}.expo-showcase__facts{grid-template-columns:1fr}.expo-showcase__facts>div{padding:16px 0}.expo-showcase__facts>div+div{padding-left:0;border-left:0;border-top:1px solid rgba(255,255,255,.12)}.expo-showcase__actions{align-items:flex-start;flex-direction:column;gap:16px}.expo-showcase__actions .button{width:100%}.expo-showcase__caption{align-items:flex-start;flex-direction:column;gap:3px}.expo-showcase__caption strong{font-size:1.08rem}}


/* Centro de Eventos El Valle — sección editorial V19 */
.venue-showcase{
  position:relative;
  display:grid;
  grid-template-columns:minmax(360px,.78fr) minmax(0,1.45fr);
  grid-template-rows:auto auto;
  min-height:900px;
  overflow:hidden;
  background:linear-gradient(110deg,#fbf8f2 0%,#f7f3eb 58%,#fbf8f2 100%);
  isolation:isolate;
}
.venue-showcase__branch{position:absolute;z-index:0;pointer-events:none;opacity:.13;filter:grayscale(1)}
.venue-showcase__branch--top{top:-42px;left:-24px;width:210px;transform:rotate(9deg)}
.venue-showcase__branch--bottom{right:-16px;bottom:-35px;width:240px;transform:rotate(176deg)}
.venue-showcase__copy{position:relative;z-index:2;padding:90px 42px 70px clamp(48px,5.4vw,92px)}
.venue-showcase__eyebrow{display:flex;align-items:center;gap:22px;color:#344034;font-size:.73rem;font-weight:700;letter-spacing:.36em;text-transform:uppercase;white-space:nowrap}
.venue-showcase__eyebrow i{display:block;width:56px;height:1px;background:#756654}
.venue-showcase__copy h2{margin-top:30px;max-width:8.4ch;font-size:clamp(4rem,5.6vw,6.4rem);line-height:.82;letter-spacing:-.052em}
.venue-showcase__lead{max-width:520px;margin-top:30px;color:#3f3b35;font-size:1.08rem;line-height:1.55}
.venue-showcase__button{display:inline-flex;align-items:center;justify-content:space-between;gap:36px;min-width:335px;margin-top:34px;padding:17px 22px 17px 30px;border-radius:999px;background:#31402d;color:#fff;font-size:.94rem;font-weight:600;box-shadow:0 10px 26px rgba(49,64,45,.13);transition:transform .2s ease,background .2s ease}
.venue-showcase__button:hover{transform:translateY(-2px);background:#263523}
.venue-showcase__button span{display:grid;width:30px;height:30px;place-items:center;border:1px solid rgba(255,255,255,.7);border-radius:50%;font-size:1.1rem}
.venue-showcase__signature{display:flex;align-items:flex-end;gap:28px;margin-top:42px;color:#6e6256}
.venue-showcase__signature em{font-family:var(--serif);font-size:2rem;line-height:.9;font-weight:500;transform:rotate(-5deg)}
.venue-showcase__signature>span{width:1px;height:64px;background:#c9bfb2}
.venue-showcase__signature p{margin:0;color:#8a7d70;font-size:.66rem;font-weight:700;letter-spacing:.28em;line-height:1.8;text-transform:uppercase}
.venue-showcase__visual{position:relative;z-index:1;min-height:640px;padding-top:42px}
.venue-showcase__hero{position:relative;width:100%;height:640px;margin:0;overflow:hidden;clip-path:polygon(2% 4%,100% 0,100% 100%,0 96%);background:#d9d0c3}
.venue-showcase__hero::after{position:absolute;inset:0;background:linear-gradient(90deg,transparent 52%,rgba(22,28,19,.26) 100%);content:""}
.venue-showcase__hero img{width:100%;height:100%;object-fit:cover;object-position:center 50%}
.venue-showcase__hero figcaption{position:absolute;z-index:2;right:48px;top:70px;color:#fff;font:italic 500 2rem/.95 var(--serif);text-shadow:0 2px 14px rgba(0,0,0,.42);transform:rotate(-6deg)}
.venue-showcase__hero figcaption span{display:block;width:44px;height:1px;margin-top:16px;background:#fff}
.venue-showcase__seal{position:absolute;z-index:3;right:32px;bottom:6px;display:flex;width:160px;height:160px;align-items:center;justify-content:center;flex-direction:column;border:1px solid rgba(47,53,43,.38);border-radius:50%;background:rgba(250,248,243,.92);box-shadow:0 8px 28px rgba(28,28,23,.16);color:#414536;text-align:center;text-transform:uppercase}
.venue-showcase__seal::before,.venue-showcase__seal::after{position:absolute;inset:9px;border:1px solid rgba(47,53,43,.24);border-radius:50%;content:""}.venue-showcase__seal::after{inset:22px;border-top-color:transparent;border-bottom-color:transparent}
.venue-showcase__seal small{font-size:.48rem;font-weight:700;letter-spacing:.32em}.venue-showcase__seal strong{margin-top:12px;font-family:var(--serif);font-size:1.55rem;font-weight:500;letter-spacing:.06em}.venue-showcase__seal span{margin-top:8px;font-size:.46rem;font-weight:700;letter-spacing:.34em}
.venue-showcase__collage{position:relative;z-index:3;grid-column:1/2;display:grid;grid-template-columns:1.45fr .88fr;align-items:end;margin-top:-46px;padding-left:0}
.venue-showcase__collage figure{position:relative;margin:0;overflow:hidden;background:#d8d0c5}
.venue-showcase__outdoor{height:270px;clip-path:polygon(0 9%,100% 0,100% 100%,0 100%)}
.venue-showcase__outdoor::after{position:absolute;inset:0;background:linear-gradient(0deg,rgba(15,19,12,.42),transparent 55%);content:""}
.venue-showcase__outdoor img{width:100%;height:100%;object-fit:cover;object-position:center 62%}
.venue-showcase__outdoor figcaption{position:absolute;z-index:2;left:44px;bottom:30px;color:#fff;font:italic 500 1.55rem/.98 var(--serif);transform:rotate(-4deg);text-shadow:0 2px 12px rgba(0,0,0,.26)}
.venue-showcase__outdoor figcaption span{display:block;width:42px;height:1px;margin-top:15px;background:#fff}
.venue-showcase__table{height:226px;margin-left:-24px!important;border:7px solid rgba(250,248,243,.92)}
.venue-showcase__table img{width:100%;height:100%;object-fit:cover;object-position:center 55%}
.venue-showcase__features{position:relative;z-index:2;grid-column:2/3;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));align-self:start;min-height:174px;margin-top:0;padding:36px 36px 34px;background:rgba(251,248,242,.95)}
.venue-showcase__features article{display:flex;min-width:0;align-items:center;justify-content:center;flex-direction:column;gap:13px;padding:0 20px;text-align:center}
.venue-showcase__features article:not(:last-child){border-right:1px solid #d7cfc3}
.venue-showcase__features svg{width:40px;height:40px;fill:none;stroke:#222620;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}
.venue-feature-icon{display:block;width:52px;height:52px;object-fit:contain;opacity:.98}
.venue-feature-icon--distance{width:58px;height:58px}
.venue-showcase__features strong{font-family:var(--sans);font-size:.86rem;font-weight:500;color:#33362e}
.venue-showcase__footerline{position:absolute;z-index:2;right:19%;bottom:22px;margin:0;color:#9b8d7d;font-size:.65rem;font-weight:700;letter-spacing:.36em;line-height:1.6;text-transform:uppercase}.venue-showcase__footerline span{display:inline-block;width:78px;height:1px;margin-left:22px;vertical-align:middle;background:#a69b8c}

@media(max-width:1200px){
  .venue-showcase{grid-template-columns:minmax(330px,.85fr) minmax(0,1.25fr)}
  .venue-showcase__copy{padding-left:42px;padding-right:30px}
  .venue-showcase__copy h2{font-size:clamp(3.55rem,5.6vw,5rem)}
  .venue-showcase__lead{font-size:.96rem}
  .venue-showcase__signature em{font-size:1.6rem}
  .venue-showcase__hero{height:590px}
  .venue-showcase__visual{min-height:590px}
  .venue-showcase__seal{width:135px;height:135px}
  .venue-showcase__features{padding-inline:16px}
  .venue-showcase__features article{padding-inline:10px}
}

@media(max-width:980px){
  .venue-showcase{grid-template-columns:1fr;grid-template-rows:auto;min-height:0}
  .venue-showcase__copy{grid-column:1;padding:64px 28px 38px}
  .venue-showcase__copy h2{max-width:10ch;font-size:clamp(3.6rem,9vw,5rem)}
  .venue-showcase__lead{max-width:650px}
  .venue-showcase__visual{grid-column:1;min-height:560px;padding-top:0}
  .venue-showcase__hero{height:560px;clip-path:none}
  .venue-showcase__hero figcaption{right:30px;top:40px}
  .venue-showcase__collage{grid-column:1;margin-top:-36px;width:min(82%,700px);padding-left:0}
  .venue-showcase__features{grid-column:1;grid-template-columns:repeat(4,1fr);min-height:150px;margin-top:26px}
  .venue-showcase__footerline{position:relative;right:auto;bottom:auto;grid-column:1;margin:34px 28px 46px;text-align:center}
}

@media(max-width:700px){
  .venue-showcase__branch--top{width:130px;top:-24px;left:-38px}
  .venue-showcase__copy{padding:52px 20px 34px}
  .venue-showcase__eyebrow{gap:12px;font-size:.6rem;letter-spacing:.24em;white-space:normal}
  .venue-showcase__eyebrow i{width:34px;flex:0 0 34px}
  .venue-showcase__copy h2{margin-top:22px;font-size:clamp(3.25rem,14vw,4.5rem)}
  .venue-showcase__lead{margin-top:22px;font-size:.92rem;line-height:1.62}
  .venue-showcase__button{width:100%;min-width:0;margin-top:26px;padding-left:22px}
  .venue-showcase__signature{gap:18px;margin-top:32px}
  .venue-showcase__signature em{font-size:1.45rem}
  .venue-showcase__signature p{font-size:.56rem;letter-spacing:.2em}
  .venue-showcase__visual{min-height:420px}
  .venue-showcase__hero{height:420px}
  .venue-showcase__hero img{object-position:center center}
  .venue-showcase__hero figcaption{right:18px;top:24px;font-size:1.45rem}
  .venue-showcase__seal{right:12px;bottom:10px;width:112px;height:112px}
  .venue-showcase__seal small{font-size:.37rem}.venue-showcase__seal strong{font-size:1.15rem}.venue-showcase__seal span{font-size:.35rem}
  .venue-showcase__collage{width:94%;grid-template-columns:1.35fr .9fr;margin-top:-16px}
  .venue-showcase__outdoor{height:220px}
  .venue-showcase__outdoor figcaption{left:18px;bottom:20px;font-size:1.25rem}
  .venue-showcase__table{height:180px;margin-left:-14px!important;border-width:5px}
  .venue-showcase__features{grid-template-columns:1fr 1fr;padding:10px 20px 24px}
  .venue-showcase__features article{min-height:110px;padding:18px 10px;border-right:0!important;border-bottom:1px solid #d7cfc3}
  .venue-showcase__features article:nth-child(odd){border-right:1px solid #d7cfc3!important}
  .venue-showcase__features article:nth-last-child(-n+2){border-bottom:0}
  .venue-showcase__features svg{width:34px;height:34px}
  .venue-showcase__features strong{font-size:.78rem}
  .venue-showcase__footerline{margin:26px 20px 38px;font-size:.56rem;letter-spacing:.24em}
  .venue-showcase__footerline span{display:block;margin:16px auto 0}
}


/* V26 - mejora de legibilidad del texto editorial sobre imagen */
.wedding-editorial__note{
  z-index:8;
  max-width:190px;
  padding:16px 18px 16px 20px;
  border-left:2px solid rgba(92,79,65,.42);
  background:rgba(249,246,240,.92);
  color:#514940;
  box-shadow:0 10px 26px rgba(49,39,29,.08);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

@media (min-width:981px){
  .wedding-editorial__note{
    bottom:62px;
  }
}

@media (max-width:700px){
  .wedding-editorial__note{
    z-index:8;
    max-width:155px;
    padding:12px 12px 12px 14px;
    background:rgba(249,246,240,.94);
  }
}


/* Directorio SEO interno completo - V27 */
.seo-directory{
  background:#f1e9df;
  border-top:1px solid rgba(100,80,60,.12);
}
.seo-directory__shell{
  display:grid;
  grid-template-columns:minmax(260px,.72fr) minmax(0,1.8fr);
  gap:44px;
  padding:46px clamp(24px,4vw,64px) 50px;
}
.seo-directory__intro h2{
  max-width:11ch;
  margin-top:12px;
  font-size:clamp(2.35rem,3.4vw,4rem);
  line-height:.94;
}
.seo-directory__intro>p:not(.eyebrow){
  max-width:390px;
  margin:18px 0 0;
  color:#6f645b;
  font-size:.84rem;
  line-height:1.65;
}
.seo-directory__groups{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px 34px;
}
.seo-directory__group{
  min-width:0;
}
.seo-directory__group--wide{
  grid-column:1/-1;
  padding-top:23px;
  border-top:1px solid rgba(100,80,60,.14);
}
.seo-directory__group h3{
  margin:0 0 13px;
  color:#695e54;
  font-size:.67rem;
  font-weight:800;
  letter-spacing:.17em;
  text-transform:uppercase;
}
.seo-directory__links{
  display:flex;
  flex-wrap:wrap;
  gap:9px 10px;
}
.seo-directory__links a{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:7px 12px 8px;
  border:1px solid rgba(126,102,82,.18);
  border-radius:999px;
  background:rgba(255,255,255,.36);
  color:#403930;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:1rem;
  line-height:1;
  transition:border-color .18s ease,background .18s ease,color .18s ease,transform .18s ease;
}
.seo-directory__links a:hover,.seo-directory__links a:focus-visible{
  border-color:rgba(165,94,73,.65);
  background:#fffaf5;
  color:var(--terracotta);
  transform:translateY(-1px);
}
@media(max-width:1050px){
  .seo-directory__shell{grid-template-columns:1fr;gap:30px}
  .seo-directory__intro h2{max-width:15ch}
  .seo-directory__intro>p:not(.eyebrow){max-width:650px}
}
@media(max-width:760px){
  .seo-directory__shell{padding:38px 20px 42px}
  .seo-directory__groups{grid-template-columns:1fr;gap:24px}
  .seo-directory__group--wide{grid-column:auto}
  .seo-directory__group:not(:first-child){padding-top:20px;border-top:1px solid rgba(100,80,60,.12)}
  .seo-directory__links{gap:8px}
  .seo-directory__links a{font-size:1.06rem}
}


/* Video Expo: YouTube bloquea reproducción embebida por derechos musicales; usar póster enlazado */
.expo-video-link{display:block;position:relative;color:#fff;text-decoration:none;cursor:pointer}
.expo-video-link>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 45%;transition:transform .45s ease,filter .45s ease}
.expo-video-link__shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,14,12,.08),rgba(15,14,12,.58));transition:background .3s ease}
.expo-video-link__play{position:absolute;top:50%;left:50%;display:grid;width:82px;height:82px;place-items:center;border:1px solid rgba(255,255,255,.78);border-radius:50%;background:rgba(20,18,16,.46);backdrop-filter:blur(8px);transform:translate(-50%,-50%);transition:transform .25s ease,background .25s ease}
.expo-video-link__play span{margin-left:5px;font-size:1.55rem}
.expo-video-link__label{position:absolute;left:24px;bottom:22px;display:grid;gap:4px;text-shadow:0 2px 12px rgba(0,0,0,.42)}
.expo-video-link__label small{font-size:.61rem;font-weight:800;letter-spacing:.18em;text-transform:uppercase}
.expo-video-link__label strong{font-family:var(--serif);font-size:1.55rem;font-weight:500}
.expo-video-link:hover>img{transform:scale(1.025);filter:brightness(.92)}
.expo-video-link:hover .expo-video-link__shade{background:linear-gradient(180deg,rgba(15,14,12,.13),rgba(15,14,12,.68))}
.expo-video-link:hover .expo-video-link__play{background:rgba(171,98,75,.92);transform:translate(-50%,-50%) scale(1.06)}
@media(max-width:700px){.expo-video-link__play{width:64px;height:64px}.expo-video-link__label{left:18px;bottom:16px}.expo-video-link__label strong{font-size:1.25rem}}


/* Vimeo aftermovie embed */
.expo-vimeo-frame{aspect-ratio:auto!important;overflow:hidden;background:#090909;box-shadow:0 28px 70px rgba(0,0,0,.35)}
.expo-vimeo-frame .vimeo-embed{width:100%;margin:0}
.expo-vimeo-frame iframe{display:block}

/* Ajuste final 2026-09-15: tarjeta editorial translúcida sobre fotografía */
.wedding-editorial__note {
  left: auto !important;
  right: clamp(18px, 3vw, 26px) !important;
  top: 22px !important;
  bottom: auto !important;
  z-index: 9 !important;
  width: auto !important;
  max-width: 154px !important;
  padding: 13px 14px 13px 16px !important;
  border: 1px solid rgba(105, 91, 77, 0.14) !important;
  border-left: 2px solid rgba(92, 79, 65, 0.34) !important;
  border-radius: 8px !important;
  background: linear-gradient(
    135deg,
    rgba(250, 247, 242, 0.70),
    rgba(250, 247, 242, 0.42)
  ) !important;
  color: #595149 !important;
  box-shadow: 0 14px 28px rgba(48, 35, 23, 0.10) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.17em !important;
  line-height: 1.6 !important;
}

@media (max-width: 700px) {
  .wedding-editorial__mini--table .wedding-editorial__note--in-table {
    top: 12px;
    right: 12px;
    max-width: 126px;
    padding: 10px 10px 10px 12px;
    background: linear-gradient(
      135deg,
      rgba(250, 247, 242, 0.72),
      rgba(250, 247, 242, 0.46)
    );
    font-size: 0.60rem;
    letter-spacing: 0.14em;
    line-height: 1.55;
  }
}



/* Bloque destacado de redes bajo galería */
.social-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 4.6vw, 72px);
  align-items: center;
  padding: clamp(58px, 6vw, 92px) clamp(22px, 4.6vw, 62px);
  background: linear-gradient(180deg, #fbf8f3 0%, #f6f1e9 100%);
  overflow: hidden;
}

.social-spotlight::before,
.social-spotlight::after {
  content: "";
  position: absolute;
  inset: auto auto 18px 48%;
  width: 320px;
  height: 320px;
  background: url('./assets/familia-icono-hoja.webp?v=20260915-1930') center/contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.social-spotlight::before {
  top: 26px;
  left: 33%;
  right: auto;
  bottom: auto;
  transform: rotate(-7deg);
}

.social-spotlight::after {
  right: 8%;
  left: auto;
  bottom: 16px;
  transform: rotate(17deg) scale(1.04);
}

.social-spotlight > * {
  position: relative;
  z-index: 1;
}

.social-spotlight__content {
  min-width: 0;
}

.social-spotlight__intro {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.social-spotlight__line {
  width: 54px;
  height: 1px;
  background: rgba(91, 74, 55, 0.44);
}

.social-spotlight .eyebrow {
  margin: 0;
  color: #68705f;
}

.social-spotlight h2 {
  max-width: 8ch;
  font-size: clamp(3rem, 5.25vw, 5.35rem);
  line-height: 0.92;
}

.social-spotlight h2 em {
  font-style: italic;
  font-weight: 500;
}

.social-spotlight__content > p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: 24px;
  color: #4f4a44;
  font-size: 1.04rem;
  line-height: 1.72;
}

.social-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.social-spotlight__button {
  min-width: 216px;
  justify-content: space-between;
  gap: 14px;
  padding-inline: 22px;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(44, 33, 22, 0.08);
}

.social-spotlight__button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.social-spotlight__button span {
  flex: 1 1 auto;
  text-align: left;
}

.social-spotlight__button::after {
  content: "→";
  font-size: 1.12rem;
  font-weight: 500;
}

.social-spotlight__footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(58px, 9vw, 96px);
  color: #7a776d;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.social-spotlight__footer-mark img {
  width: 24px;
  opacity: 0.88;
}

.social-spotlight__footer-mark::after {
  content: "";
  width: 46px;
  height: 1px;
  background: rgba(91, 74, 55, 0.35);
}

.social-spotlight__visual {
  min-width: 0;
}

/* Collage editorial montado: proporciones y solapes inspirados en el mockup */
.social-spotlight__collage {
  position: relative;
  width: min(100%, 760px);
  margin-left: auto;
  aspect-ratio: 700 / 590;
  isolation: isolate;
}

.social-spotlight__card {
  position: absolute;
  overflow: hidden;
  background: #e8e0d7;
  border: clamp(5px, .55vw, 8px) solid #fffdf9;
  box-shadow: 0 22px 48px rgba(49, 37, 25, 0.13);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.social-spotlight__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms var(--ease);
}

.social-spotlight__card:hover,
.social-spotlight__card:focus-visible {
  z-index: 8;
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(49, 37, 25, 0.18);
}

.social-spotlight__card:hover img,
.social-spotlight__card:focus-visible img {
  transform: scale(1.025);
}

/* Foto vertical izquierda */
.social-spotlight__card--a {
  left: 5.5%;
  top: 5.5%;
  width: 28.2%;
  height: 57.2%;
  z-index: 2;
}

/* Foto principal de matrimonio */
.social-spotlight__card--b {
  left: 36.1%;
  top: 1.3%;
  width: 38.2%;
  height: 67.8%;
  z-index: 3;
}

/* Foto vertical derecha del salón */
.social-spotlight__card--c {
  right: 0;
  bottom: 3%;
  width: 25.5%;
  height: 42%;
  z-index: 5;
}

/* Foto horizontal inferior izquierda */
.social-spotlight__card--d {
  left: 1.5%;
  bottom: 0;
  width: 47.5%;
  height: 32%;
  z-index: 4;
}

/* Foto vertical inferior central */
.social-spotlight__card--e {
  left: 47.8%;
  bottom: 0;
  width: 25%;
  height: 36%;
  z-index: 6;
}

.social-spotlight__card--a img { object-position: 52% center; }
.social-spotlight__card--b img { object-position: 50% 50%; }
.social-spotlight__card--c img { object-position: 52% 48%; }
.social-spotlight__card--d img { object-position: 50% 47%; }
.social-spotlight__card--e img { object-position: 50% 48%; }

/* Sello y lettering ocupan el espacio negativo de la esquina derecha */
.social-spotlight__badge {
  position: absolute;
  top: 3.8%;
  right: 1.1%;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 23.6%;
  pointer-events: none;
}

.social-spotlight__badge-ring {
  width: clamp(112px, 10.2vw, 154px);
  aspect-ratio: 1;
  border: 1px solid rgba(104, 96, 85, 0.36);
  border-radius: 50%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 15px;
  background: rgba(251, 248, 242, 0.76);
  color: #777365;
  backdrop-filter: blur(3px);
}

.social-spotlight__badge-ring span {
  max-width: 105px;
  font-size: clamp(.49rem, .55vw, .62rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.social-spotlight__badge-ring img {
  width: 22px;
  opacity: 0.82;
}

.social-spotlight__badge-copy {
  width: 132%;
  max-width: 230px;
  display: block;
  margin-top: 23px;
  opacity: 0.95;
}
@media (max-width: 1120px) {
  .social-spotlight__badge-ring { width: 118px; }
  .social-spotlight__badge-copy { margin-top: 17px; }
}

@media (max-width: 980px) {
  .social-spotlight {
    grid-template-columns: 1fr;
  }

  .social-spotlight h2,
  .social-spotlight__content > p:not(.eyebrow) {
    max-width: none;
  }

  .social-spotlight__collage {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .social-spotlight {
    padding-inline: 20px;
  }

  .social-spotlight::before {
    left: auto;
    right: -28px;
    width: 180px;
    height: 180px;
  }

  .social-spotlight::after {
    display: none;
  }

  .social-spotlight__actions {
    flex-direction: column;
  }

  .social-spotlight__button {
    width: 100%;
    min-width: 0;
  }

  .social-spotlight__collage {
    width: 100%;
    max-width: 620px;
    aspect-ratio: 700 / 760;
    margin: 0 auto;
  }

  .social-spotlight__card { border-width: 4px; }
  .social-spotlight__card--a { left: 1%; top: 4%; width: 34%; height: 49%; }
  .social-spotlight__card--b { left: 37%; top: 1%; width: 43%; height: 57%; }
  .social-spotlight__card--c { right: 0; bottom: 2%; width: 29%; height: 35%; }
  .social-spotlight__card--d { left: 2%; bottom: 2%; width: 48%; height: 30%; }
  .social-spotlight__card--e { left: 51%; bottom: 1%; width: 26%; height: 31%; }

  .social-spotlight__badge {
    top: 4%;
    right: 0;
    width: 20%;
  }

  .social-spotlight__badge-ring {
    width: 88px;
    padding: 10px;
    gap: 5px;
  }

  .social-spotlight__badge-ring span {
    font-size: .38rem;
    letter-spacing: .1em;
  }

  .social-spotlight__badge-ring img { width: 16px; }
  .social-spotlight__badge-copy { width: 155%; margin-top: 10px; }

  .social-spotlight__footer-mark {
    margin-top: 48px;
  }
}



/* Tres accesos sociales en la sección editorial */
.social-spotlight__actions { gap:10px; }
.social-spotlight__button { flex:1 1 155px; min-width:0; padding-inline:16px; font-size:.78rem; }
.social-spotlight__button--valle { border-color:rgba(102,112,91,.38); color:#59624e; background:rgba(249,247,241,.88); }
.social-spotlight__button--valle:hover { border-color:rgba(102,112,91,.62); background:#f4f2ea; }
@media (max-width:700px) { .social-spotlight__button { flex-basis:auto; } }
