:root {
  --forest: #173d2b;
  --forest-2: #24563c;
  --leaf: #6f8f69;
  --sage: #aebfa6;
  --sand: #e9dfca;
  --cream: #f8f4eb;
  --paper: #fffdf8;
  --earth: #8a6747;
  --ink: #1b241e;
  --muted: #667269;
  --line: rgba(23, 61, 43, 0.12);
  --shadow: 0 24px 60px rgba(35, 51, 40, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(174, 191, 166, 0.22), transparent 28%),
    var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 235, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 61, 43, 0.07);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 61, 43, 0.18);
  border-radius: 50%;
  color: var(--forest);
  background: var(--paper);
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.1em;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: -2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav > a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.93rem;
  color: #34443a;
  transition: 0.25s ease;
}

.main-nav > a:hover { background: rgba(23, 61, 43, 0.07); }
.main-nav .nav-cta {
  background: var(--forest);
  color: white;
  padding-inline: 18px;
}
.main-nav .nav-cta:hover { background: var(--forest-2); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(23,61,43,.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest);
  margin: 4px auto;
  transition: 0.25s ease;
}

.section-shell {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 80px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--earth);
}

.hero h1,
.section-heading h2,
.profile-copy h2,
.statement h2,
.contact h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--forest);
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 7.2rem);
  letter-spacing: 0.03em;
  line-height: 0.92;
  margin: 24px 0 18px;
}

.hero-subtitle {
  margin: 0 0 26px;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  color: #53635a;
  max-width: 590px;
}

.professional-card.compact {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 14px 32px rgba(35, 51, 40, 0.07);
}

.professional-card strong { color: var(--forest); font-size: 1.03rem; }
.professional-card span:last-child { color: var(--muted); font-size: 0.94rem; }
.card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--earth);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.94rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 14px 30px rgba(23, 61, 43, 0.18);
}
.btn-primary:hover { background: var(--forest-2); }
.btn-ghost {
  border: 1px solid rgba(23, 61, 43, 0.18);
  background: rgba(255,255,255,.35);
  color: var(--forest);
}
.btn-large { min-height: 60px; padding-inline: 28px; }

.hero-visual {
  min-height: 490px;
  display: grid;
  place-items: center;
  position: relative;
}

.visual-card {
  width: min(420px, 100%);
  aspect-ratio: 0.86;
  border-radius: 180px 180px 46px 46px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.44), rgba(255,255,255,.1)),
    linear-gradient(160deg, #dce7d7 0%, #a8bea1 45%, #7a9b75 100%);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.5);
  overflow: hidden;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: inherit;
}

.center-symbol {
  width: 125px;
  height: 125px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(23,61,43,.25);
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 4.4rem;
  background: rgba(255,255,255,.28);
  position: relative;
  z-index: 3;
}

.visual-name {
  position: relative;
  z-index: 3;
  margin-top: 24px;
  font-family: Georgia, serif;
  letter-spacing: .15em;
  color: var(--forest);
  font-size: 1rem;
}
.visual-tagline {
  position: relative;
  z-index: 3;
  font-size: .8rem;
  color: #34503b;
  margin-top: 5px;
}

.leaf {
  position: absolute;
  width: 120px;
  height: 52px;
  border-radius: 100% 0 100% 0;
  border: 1px solid rgba(23,61,43,.3);
  background: rgba(255,255,255,.15);
}
.leaf-a { top: 95px; left: 40px; transform: rotate(-30deg); }
.leaf-b { right: 40px; bottom: 120px; transform: rotate(22deg) scale(.9); }
.leaf-c { left: 90px; bottom: 55px; transform: rotate(8deg) scale(.65); }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}
.orb-back {
  width: 350px;
  height: 350px;
  background: rgba(233, 223, 202, .72);
  right: -50px;
  bottom: 10px;
  z-index: -1;
}

.decor { position: absolute; border-radius: 50%; }
.decor-one {
  width: 360px;
  height: 360px;
  background: rgba(174,191,166,.22);
  top: -130px;
  left: -140px;
}
.decor-two {
  width: 220px;
  height: 220px;
  border: 1px solid rgba(23,61,43,.08);
  right: 4vw;
  top: 70px;
}

.section { padding: 100px 0; }
.section-heading { max-width: 620px; margin-bottom: 42px; }
.section-heading h2 { font-size: clamp(2.6rem, 5vw, 4.6rem); margin: 12px 0 6px; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.1rem; }

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.identity-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(35,51,40,.06);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.identity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.identity-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(174,191,166,.22);
  right: -70px;
  top: -60px;
}
.identity-number {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: .74rem;
  font-weight: 800;
  color: var(--earth);
  letter-spacing: .1em;
}
.identity-icon {
  position: relative;
  z-index: 1;
  font-size: 3.2rem;
  color: var(--forest-2);
  margin-bottom: 34px;
}
.identity-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--forest);
}

.section-profile {
  background: linear-gradient(180deg, rgba(255,253,248,.5), rgba(255,253,248,.88));
  border-block: 1px solid rgba(23,61,43,.07);
}
.profile-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
.profile-art {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}
.profile-monogram {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: white;
  font-family: Georgia, serif;
  font-size: 4.2rem;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.profile-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(23,61,43,.14);
}
.ring-one { width: 330px; height: 330px; }
.ring-two { width: 420px; height: 420px; border-style: dashed; opacity: .5; }
.profile-copy h2 { font-size: clamp(2.8rem, 5.8vw, 5.2rem); margin: 12px 0; line-height: 1; }
.profile-degree { font-size: 1.25rem; color: var(--earth); margin: 0; }
.profile-line { width: 110px; height: 1px; background: rgba(23,61,43,.2); margin: 32px 0; }
.profile-brand { font-family: Georgia, serif; letter-spacing: .13em; color: var(--forest); margin: 0; }
.profile-tagline { color: var(--muted); margin: 4px 0 0; }

.statement {
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(174,191,166,.18), transparent 25%),
    var(--forest);
  color: white;
}
.statement-inner { text-align: center; max-width: 880px; }
.statement-mark { display: inline-block; font-size: 2.2rem; color: var(--sand); margin-bottom: 10px; }
.statement-small { margin: 0; letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; color: #dbe5d9; }
.statement h2 { color: white; font-size: clamp(2.6rem, 6vw, 5.4rem); line-height: 1.03; margin: 18px 0 30px; }
.statement-person { display: inline-flex; flex-direction: column; gap: 2px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); }
.statement-person span { color: #cbd8cd; }

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(30px, 5vw, 60px);
  border-radius: var(--radius-xl);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact h2 { margin: 10px 0 0; font-size: clamp(2.4rem, 5vw, 4.8rem); }
.contact-number { font-size: 1.25rem; color: var(--muted); margin: 4px 0 0; letter-spacing: .05em; }

.site-footer {
  padding: 36px 0;
  background: #102b1e;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer-grid > div { display: flex; flex-direction: column; gap: 2px; }
.footer-grid strong { font-family: Georgia, serif; font-size: 1rem; }
.footer-grid span, .footer-grid a { color: #c9d5cb; font-size: .86rem; }
.footer-grid a:hover { color: white; }

.floating-whatsapp {
  position: fixed;
  width: 58px;
  height: 58px;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1e7d4c;
  box-shadow: 0 16px 35px rgba(20,70,43,.28);
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.02); }
.floating-whatsapp svg { width: 29px; height: 29px; fill: white; }

.reveal {
  opacity: 1;
  transform: none;
}
.reveal.visible {
  animation: revealIn .65s ease both;
}
@keyframes revealIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 82px 18px auto 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(255,253,248,.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px) scale(.98);
    pointer-events: none;
    transition: .24s ease;
  }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav > a { padding: 13px 14px; }
  .hero { padding-top: 55px; min-height: auto; }
  .hero-grid, .profile-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-subtitle { margin-inline: auto; }
  .professional-card.compact { text-align: left; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 420px; }
  .visual-card { width: min(360px, 88vw); }
  .identity-grid { grid-template-columns: 1fr; }
  .identity-card { min-height: 220px; }
  .profile-grid { text-align: center; }
  .profile-line { margin-inline: auto; }
  .profile-art { min-height: 350px; }
  .ring-one { width: 290px; height: 290px; }
  .ring-two { width: 350px; height: 350px; }
  .contact-card { flex-direction: column; align-items: flex-start; }
  .contact-card .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 72px; }
  .brand small { display: none; }
  .main-nav { inset: 72px 12px auto 12px; }
  .hero { padding: 44px 0 64px; }
  .hero h1 { font-size: clamp(3rem, 18vw, 4.7rem); }
  .hero-subtitle { font-size: 1.08rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 360px; }
  .visual-card { width: 300px; max-width: 92vw; }
  .center-symbol { width: 105px; height: 105px; font-size: 3.6rem; }
  .section { padding: 72px 0; }
  .profile-monogram { width: 170px; height: 170px; font-size: 3.5rem; }
  .ring-one { width: 240px; height: 240px; }
  .ring-two { width: 300px; height: 300px; }
  .statement { padding: 80px 0; }
  .contact-card { padding: 28px 22px; border-radius: 24px; }
  .floating-whatsapp { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

/* Actualización de color: más intenso, fresco y natural */
:root {
  --forest: #07553c;
  --forest-2: #0b7a50;
  --leaf: #39a866;
  --sage: #b9dab5;
  --sand: #efd9a7;
  --cream: #eef7ec;
  --paper: #fffef8;
  --earth: #a55b2a;
  --ink: #143226;
  --muted: #557064;
  --line: rgba(7, 85, 60, 0.14);
  --shadow: 0 24px 60px rgba(6, 79, 55, 0.14);
  --fresh: #77b82a;
  --fresh-soft: #dcefc6;
}

body {
  background:
    radial-gradient(circle at 9% 8%, rgba(119, 184, 42, 0.20), transparent 27%),
    radial-gradient(circle at 90% 28%, rgba(57, 168, 102, 0.14), transparent 24%),
    var(--cream);
}

.site-header {
  background: rgba(238, 247, 236, 0.92);
  border-bottom-color: rgba(7, 85, 60, 0.10);
}

.main-nav .nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  box-shadow: 0 14px 30px rgba(7, 85, 60, 0.22);
}
.main-nav .nav-cta:hover,
.btn-primary:hover { background: linear-gradient(135deg, #064830, #096942); }

.visual-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.38), rgba(255,255,255,.06)),
    linear-gradient(160deg, #dff1cb 0%, #78bd67 45%, #278759 100%);
}

.orb-back { background: rgba(239, 217, 167, .82); }
.decor-one { background: rgba(119, 184, 42, .19); }
.identity-card::before { background: rgba(119, 184, 42, .20); }

.profile-monogram {
  background: linear-gradient(145deg, var(--forest), #0a8555);
}

.statement {
  background:
    radial-gradient(circle at 18% 22%, rgba(119,184,42,.22), transparent 24%),
    radial-gradient(circle at 84% 78%, rgba(57,168,102,.18), transparent 25%),
    linear-gradient(135deg, #06442f, #08754c);
}

.floating-whatsapp {
  background: #16a05d;
  box-shadow: 0 16px 35px rgba(8,112,66,.30);
}

/* Ceremonia */
.ceremony {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 20%, rgba(119,184,42,.17), transparent 25%),
    radial-gradient(circle at 95% 80%, rgba(165,91,42,.11), transparent 26%),
    #f8fbf2;
}
.ceremony::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(7,85,60,.08);
  right: -170px;
  top: 110px;
}
.ceremony-heading {
  max-width: 840px;
  margin-bottom: 44px;
}
.ceremony-heading h2 {
  margin: 12px 0 16px;
  max-width: 800px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--forest);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.04;
}
.ceremony-heading p {
  margin: 0;
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
}
.ceremony-layout {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr;
  gap: 20px;
  align-items: stretch;
}
.ceremony-main,
.ceremony-card {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 28px;
  border: 1px solid rgba(7,85,60,.12);
  background: rgba(255,254,248,.92);
  box-shadow: 0 18px 42px rgba(7,85,60,.07);
  overflow: hidden;
}
.ceremony-main {
  background:
    radial-gradient(circle at 96% 7%, rgba(119,184,42,.17), transparent 25%),
    rgba(255,254,248,.96);
}
.ceremony-card h3,
.ceremony-main h3,
.experience-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest);
  font-weight: 500;
}
.ceremony-card h3,
.ceremony-main h3 {
  margin: 15px 0 14px;
  font-size: 1.7rem;
}
.ceremony-card p,
.ceremony-main p { color: var(--muted); }
.ceremony-step {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--fresh-soft);
  color: var(--forest);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .08em;
}
.ritual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0;
}
.ritual-tags span,
.bring-grid span {
  border: 1px solid rgba(7,85,60,.13);
  background: rgba(220,239,198,.46);
  color: var(--forest);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .86rem;
  font-weight: 750;
}
.ceremony-price {
  color: white;
  border-color: transparent;
  background:
    radial-gradient(circle at 95% 5%, rgba(239,217,167,.21), transparent 28%),
    linear-gradient(145deg, #07553c, #0a7b4e);
}
.ceremony-price h3,
.ceremony-price p { color: white; }
.ceremony-price .ceremony-step {
  background: rgba(255,255,255,.16);
  color: white;
}
.price {
  margin: 12px 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 4.5vw, 4.2rem);
  line-height: 1;
}
.price small {
  display: block;
  margin-top: 8px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .83rem;
  font-weight: 700;
  opacity: .82;
}
.btn-light {
  margin-top: 14px;
  width: 100%;
  background: white;
  color: var(--forest);
}
.btn-light:hover { background: #f4f9ee; }
.ceremony-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.bring-card,
.experience-card {
  border-radius: 28px;
  border: 1px solid rgba(7,85,60,.12);
  padding: clamp(28px, 4vw, 40px);
}
.bring-card {
  background: linear-gradient(145deg, #edf7e3, #f9fbf3);
}
.bring-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.bring-card p { margin: 0; color: var(--muted); }
.experience-card {
  display: flex;
  align-items: center;
  gap: 26px;
  background: var(--paper);
}
.experience-number {
  flex: 0 0 auto;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  color: white;
  background: linear-gradient(145deg, var(--earth), #c1773f);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  box-shadow: 0 18px 36px rgba(126,73,37,.16);
}
.experience-card h3 { margin: 8px 0 6px; font-size: 1.55rem; }
.experience-card p { margin: 0; color: var(--muted); }

/* Ubicación */
.location-section { padding-top: 86px; }
.location-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgba(119,184,42,.30), transparent 28%),
    linear-gradient(135deg, #06412d, #08734b);
  box-shadow: var(--shadow);
}
.location-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  right: -62px;
  bottom: -80px;
}
.location-copy,
.location-actions { position: relative; z-index: 1; }
.location-card .eyebrow { color: #dcefc6; }
.location-card h2 {
  margin: 10px 0 6px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.3vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
}
.location-card p { margin: 3px 0; color: rgba(255,255,255,.83); }
.location-reference { font-size: .93rem; }
.location-actions {
  display: flex;
  flex-direction: column;
  min-width: 260px;
  gap: 10px;
}
.location-card .btn-primary {
  color: var(--forest);
  background: white;
  box-shadow: none;
}
.location-card .btn-primary:hover { background: #f4f9ee; }
.location-card .btn-ghost {
  color: white;
  border-color: rgba(255,255,255,.27);
  background: rgba(255,255,255,.08);
}
.contact-location {
  display: inline-block;
  margin-top: 10px;
  color: var(--forest-2);
  font-size: .9rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 1000px) {
  .ceremony-layout { grid-template-columns: 1fr 1fr; }
  .ceremony-main { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .location-card { grid-template-columns: 1fr; }
  .location-actions { min-width: 0; flex-direction: row; flex-wrap: wrap; }
  .location-actions .btn { flex: 1 1 220px; }
}

@media (max-width: 700px) {
  .ceremony-layout,
  .ceremony-bottom { grid-template-columns: 1fr; }
  .ceremony-main { grid-column: auto; }
  .experience-card { align-items: flex-start; }
}

@media (max-width: 560px) {
  .ceremony-heading h2 { font-size: 2.55rem; }
  .ceremony-main,
  .ceremony-card,
  .bring-card,
  .experience-card { border-radius: 22px; }
  .experience-card { flex-direction: column; }
  .experience-number { width: 94px; height: 94px; border-radius: 28px; font-size: 3rem; }
  .location-actions { flex-direction: column; }
  .location-actions .btn { flex-basis: auto; width: 100%; }
}

/* Ajuste de texto de contacto */
.contact-note {
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: 0.98rem;
}
