/* ==========================================================================
   Dr. Cordero Med Aesthetics — Design System
   "Lujo Minimalista Clínico" — ver Manual de Marca
   ========================================================================== */

:root {
  --navy: #78939F;
  --gold-deep: #8B8073; /* Clay — acento sobre fondos claros */
  --gold-light: #D9CCB9; /* Bone — acento cálido sobre el azul */
  --cream: #EFEAE3; /* Créme */
  --beige: #D9CCB9; /* Bone */
  --white: #FFFFFF;
  --ink: #453F38; /* texto de lectura — el azul es acento (títulos/botones), no tiene contraste suficiente para párrafos */

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, sans-serif;
  --font-script: 'Great Vibes', cursive;

  --container: 1240px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-soft: 0 4px 24px rgba(120, 147, 159, 0.06);
  --shadow-card: 0 8px 32px rgba(120, 147, 159, 0.08);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.script-accent {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  font-weight: 400;
  line-height: 1;
}

.section-intro {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-intro p { color: rgba(69, 63, 56, 0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  color: var(--white);
  border-color: var(--gold-deep);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 0.72rem; }

/* ---------- Diamond bullets ---------- */
.bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--ink);
}
.bullet-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold-deep);
  font-size: 0.7rem;
}

/* ---------- Ornamental divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 40px auto;
  max-width: 340px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep));
}
.divider::after { background: linear-gradient(90deg, var(--gold-deep), transparent); }
.divider span {
  color: var(--gold-deep);
  font-size: 0.85rem;
  transform: rotate(45deg);
  border: 1px solid var(--gold-deep);
  width: 9px; height: 9px;
  display: inline-block;
}
.divider-left { max-width: none; justify-content: flex-start; }
.divider-left::after { display: none; }

hr.thin {
  border: none;
  border-top: 1px solid rgba(139, 128, 115,0.35);
  margin: 48px 0;
}

/* ---------- Cards ---------- */
.card {
  background: var(--beige);
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius-sm);
  padding: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(139, 128, 115,0.3);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-card .icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  margin-bottom: 20px;
  transform: rotate(0deg);
  transition: transform 0.4s var(--ease);
}
.service-card:hover .icon { transform: rotate(45deg); }
.service-card .service-photo {
  margin: -34px -28px 20px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}
.service-card .service-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-photo img { transform: scale(1.06); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p {
  color: rgba(69, 63, 56, 0.75);
  font-size: 0.92rem;
  flex-grow: 1;
}
.service-card .card-link {
  margin-top: 16px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .card-link::after { content: '→'; transition: transform 0.3s var(--ease); }
.service-card:hover .card-link::after { transform: translateX(4px); }

.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(239, 234, 227, 0.0);
  padding: 26px 0;
  transition: all 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(239, 234, 227, 0.96);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: var(--shadow-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { height: 116px; width: auto; transition: height 0.35s var(--ease); }
.site-header.is-scrolled .site-logo img { height: 96px; }
.site-logo .logo-text-fallback {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 1px;
}
/* El logo trae el wordmark "DR. CORDERO" en navy — invisible sobre el footer
   navy, así que se muestra en blanco/mono ahí (tratamiento estándar de logo
   sobre fondo oscuro). */
.site-logo-img--footer { height: 128px; filter: brightness(0) invert(1); opacity: 0.92; }

.main-nav ul { display: flex; align-items: center; gap: 38px; }
.main-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold-deep);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.current::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 22px; }
.header-cta { }
.lang-switcher { display: flex; align-items: center; gap: 4px; font-size: 0.75rem; letter-spacing: 0.5px; }
.lang-switcher a { color: rgba(69,63,56,0.5); padding: 3px 6px; border-radius: 3px; font-weight: 600; }
.lang-switcher a:hover { color: var(--navy); text-decoration: none; }
.lang-switcher a.is-active { color: var(--navy); background: rgba(120,147,159,0.12); }

/* Pop-up promocional */
.promo-popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(69, 63, 56, 0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: promoFadeIn 0.25s ease;
}
.promo-popup-overlay[hidden] { display: none; }
body.promo-popup-open { overflow: hidden; }
@keyframes promoFadeIn { from { opacity: 0; } to { opacity: 1; } }
.promo-popup {
  position: relative;
  max-width: 840px;
  max-height: 90vh;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  animation: promoPopIn 0.3s var(--ease);
}
@keyframes promoPopIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.promo-popup a { display: block; line-height: 0; }
.promo-popup img { display: block; max-width: 100%; max-height: 90vh; width: auto; height: auto; }
.promo-popup-close {
  position: absolute; top: 10px; right: 10px; z-index: 1;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--ink);
  border: none; font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s var(--ease);
}
.promo-popup-close:hover { background: var(--white); color: var(--navy); }
@media (max-width: 480px) {
  .promo-popup { max-width: 100%; }
  .promo-popup img { max-width: 100%; }
}
.account-icon { display: inline-flex; color: var(--ink); transition: color 0.2s var(--ease); }
.account-icon:hover { color: var(--navy); }
.cart-icon { position: relative; display: inline-flex; color: var(--ink); transition: color 0.2s var(--ease); }
.cart-icon:hover { color: var(--navy); }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--gold-deep); color: var(--white);
  font-size: 0.65rem; width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.menu-toggle {
  display: none;
  background: none; border: none;
  flex-direction: column; gap: 5px;
}
.menu-toggle span { width: 26px; height: 1px; background: var(--navy); display: block; transition: all 0.3s var(--ease); }

@media (max-width: 940px) {
  .main-nav { position: fixed; inset: 0; top: 0; background: var(--cream); flex-direction: column;
    display: flex; align-items: center; justify-content: center;
    transform: translateX(100%); transition: transform 0.4s var(--ease); z-index: 99; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 30px; }
  .main-nav a { font-size: 1rem; }
  .menu-toggle { display: flex; z-index: 101; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 190px 0 120px;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 30%, var(--beige) 0%, var(--cream) 60%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.hero-copy p.lead { font-size: 1.1rem; color: rgba(69, 63, 56, 0.78); max-width: 480px; }
.hero-actions { display: flex; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  border-radius: 4px;
  mask-image: linear-gradient(to bottom, black 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 78%, transparent 100%);
}
.hero-media::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(139, 128, 115,0.15), transparent 70%);
  z-index: -1;
}
@media (max-width: 900px) {
  .hero { padding: 150px 0 80px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 340px; margin-inline: auto; }
}

/* ---------- Membership section (flyer replica) ---------- */
.membership {
  background: var(--navy);
  color: var(--white);
  padding: 110px 0;
  position: relative;
}
.membership .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.membership .script-accent, .membership h2 { color: var(--white); }
.membership .price-tag { display: flex; align-items: baseline; gap: 10px; margin: 18px 0 36px; }
.membership .price-tag .amount { font-family: var(--font-serif); font-size: 5rem; color: var(--gold-light); font-weight: 600; line-height: 1; }
.membership .price-tag .period { font-family: var(--font-serif); font-size: 1.6rem; color: rgba(255,255,255,0.75); }
.membership-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.membership-cards .card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(217, 204, 185,0.4);
}
.membership-cards h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.membership-cards .bullet-list li { color: rgba(255,255,255,0.88); }
.membership-cards .bullet-list li::before { color: var(--gold-light); }
@media (max-width: 900px) {
  .membership .container { grid-template-columns: 1fr; }
  .membership-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .membership-cards { grid-template-columns: 1fr; } }

/* ---------- Sections generic ---------- */
.section { padding: 110px 0; }
.section-alt { background: var(--beige); }
.section-tight { padding: 80px 0; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card .photo {
  width: 100%; aspect-ratio: 1/1.05; object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  filter: grayscale(6%);
}
.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--gold-deep); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; }

/* ---------- Testimonials ---------- */
.testimonials-track {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 10px 10px;
  margin: -4px -10px 0;
  scrollbar-width: none;
  /* Difumina el borde derecho (y el izquierdo cuando hay scroll) en vez de
     cortar el texto de la tarjeta a media palabra — así el "asomo" de la
     siguiente tarjeta se lee como una pista de que se puede deslizar, no
     como un error de layout. */
  mask-image: linear-gradient(to right, transparent 0, black 10px, black calc(100% - 36px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 10px, black calc(100% - 36px), transparent 100%);
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  scroll-snap-align: start;
  /* "width" fijo, no solo "min-width" — si no, una reseña corta que cabe en
     una sola línea estira la tarjeta a lo ancho en vez de mantener el ancho
     normal y bajar de línea, dando cajas de tamaño inconsistente. */
  width: min(420px, 85vw);
  background: var(--white);
  border: 1px solid rgba(139, 128, 115,0.25);
  border-radius: var(--radius-md);
  padding: 36px;
  flex-shrink: 0;
  /* Todas las tarjetas de la fila quedan a la misma altura (por el flex del
     track) — se organiza el contenido en columna para que el nombre del
     paciente se ancle abajo en vez de dejar un vacío cuando la reseña es
     corta. */
  display: flex;
  flex-direction: column;
}
.testimonial-card .stars { color: var(--gold-deep); letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-card p.quote { font-style: italic; color: rgba(69, 63, 56, 0.85); margin-bottom: 0; }
.testimonial-card .author { margin-top: auto; padding-top: 20px; font-weight: 500; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); }
.testimonial-nav { display: flex; justify-content: center; gap: 14px; margin-top: 32px; }
.testimonial-nav button {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--gold-deep); background: transparent; color: var(--gold-deep);
  transition: all 0.3s var(--ease);
}
.testimonial-nav button:hover { background: var(--gold-deep); color: var(--white); }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid rgba(139, 128, 115,0.3);
}
.faq-question {
  width: 100%;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
}
.faq-question .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  margin-left: 20px;
  transition: transform 0.35s var(--ease);
  position: relative;
}
.faq-item.is-open .faq-question .plus { transform: rotate(135deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer-inner { padding: 0 4px 26px; color: rgba(69, 63, 56, 0.8); max-width: 780px; }

/* ---------- Shop teaser / product cards ---------- */
.product-teaser-card {
  background: var(--white);
  border: 1px solid rgba(139, 128, 115,0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.product-teaser-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.product-teaser-card .thumb { aspect-ratio: 1/1; overflow: hidden; background: var(--beige); }
.product-teaser-card .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform 0.5s var(--ease); }
.product-teaser-card:hover .thumb img { transform: scale(1.06); }
.product-teaser-card .info { padding: 20px 22px 26px; }
.product-teaser-card .info .brand { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-deep); }
.product-teaser-card .info h3 { font-size: 1rem; margin: 6px 0 10px; }
.product-teaser-card .info .price { font-family: var(--font-serif); color: var(--navy); font-size: 1.15rem; }

/* ---------- Forms ---------- */
.form-panel {
  background: var(--white);
  border: 1px solid rgba(139, 128, 115,0.3);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 9px;
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(120, 147, 159,0.25);
  background: transparent;
  padding: 11px 2px;
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.82rem; color: rgba(69, 63, 56, 0.65); margin-top: 18px; }
.availability-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.slots-loading { font-size: 0.85rem; color: var(--ink); opacity: 0.6; }
.slot-btn {
  border: 1px solid rgba(120, 147, 159, 0.35);
  background: transparent;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all 0.2s var(--ease);
}
.slot-btn:hover { border-color: var(--navy); }
.slot-btn.slot-selected { background: var(--navy); border-color: var(--navy); color: var(--white); }
#availability-field .form-note { margin-top: 12px; }

.membership-status-card {
  background: var(--white);
  border: 1px solid rgba(139, 128, 115, 0.25);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 30px;
}
.membership-status-card p { margin: 8px 0 0; }
.membership-status-card .muted { color: rgba(69, 63, 56, 0.6); font-size: 0.85rem; }
.status-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-pill.status-active { background: #E3EDF0; color: #3E5D66; }
.status-pill.status-cancelled { background: rgba(139,128,115,0.15); color: var(--gold-deep); }
.status-pill.status-failed { background: #F5E1DE; color: #8B342A; }
.status-pill.status-unknown { background: var(--cream); color: var(--ink); }
.form-success, .form-error {
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: 26px;
  font-size: 0.92rem;
}
.form-success { background: rgba(139, 128, 115,0.12); border: 1px solid var(--gold-deep); color: var(--ink); }
.form-error { background: rgba(178,44,44,0.08); border: 1px solid #b02c2c; color: #7a1f1f; }

/* ---------- Contact / info blocks ---------- */
.info-block { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 30px; }
.info-block .icon-circle {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%; border: 1px solid var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
}
.info-block h4 { margin-bottom: 4px; font-size: 1rem; }
.info-block p { color: rgba(69, 63, 56, 0.75); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 90px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.site-footer .site-logo .logo-text-fallback { color: var(--white); }
.site-footer p { font-size: 0.92rem; }
.footer-links li { margin-bottom: 12px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.footer-bottom {
  margin-top: 70px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Page header (interior pages) ---------- */
.page-header {
  padding: 170px 0 70px;
  text-align: center;
  background: var(--beige);
}
.page-header .eyebrow { }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.color-gold { color: var(--gold-deep); }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--white); padding: 12px 20px; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }
