/* ============================================================
   LA PIZZA DE PAPA — Main Stylesheet
   ============================================================ */

:root {
  --red:        #C8102E;
  --red-dark:   #8B0B1F;
  --red-light:  #E8294A;
  --white:      #FAFAF8;
  --off-white:  #F2EFE9;
  --cream:      #EDE7DC;
  --dark:       #111111;
  --text:       #1A1A1A;
  --text-muted: #666666;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

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

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Loader ── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--red);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  letter-spacing: 0.05em;
}
.loader-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  overflow: hidden;
}
#loader-bar {
  height: 100%;
  background: var(--white);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 4vw;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(250, 250, 248, 0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.01em;
}
nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-size: 0.8rem !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--off-white);
  padding: 10vh 6vw 6vh;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 55vw;
}
.hero-bg-circle {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.06;
  pointer-events: none;
}
.hero-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 12rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.hero-heading .word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
  margin-right: 0.15em;
  opacity: 0;
  transform: translateY(60px);
}
.hero-heading .italic { font-style: italic; color: var(--red); }
.hero-tagline {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.25s;
  opacity: 0;
  transform: translateY(20px);
}
.hero-cta:hover { background: var(--red-dark); transform: translateY(-2px) !important; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 6vw;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.scroll-arrow::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--red);
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ── Marquee ── */
.marquee-section {
  overflow: hidden;
  padding: 1.5rem 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  transform: translateZ(0);
}
.marquee-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--red);
  padding-right: 2rem;
  flex-shrink: 0;
}

/* ── Sections base ── */
.section {
  padding: 10vh 6vw;
}
.section-inner {
  max-width: 100%;
}
.align-left .section-inner  { max-width: 42vw; }
.align-right .section-inner { max-width: 42vw; margin-left: auto; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-heading em { font-style: italic; color: var(--red); }
.section-body {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 1rem;
}
.section-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  border-left: 2px solid var(--red);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

/* ── Menu Section ── */
.section-menu {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
}

/* Photo column */
.menu-photo-col {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
.menu-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: translateZ(0);
}
.menu-photo-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.55);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}
.menu-photo-caption sup { font-size: 0.55rem; vertical-align: super; }

/* Content column */
.menu-content-col {
  padding: 8vh 5vw;
  display: flex;
  flex-direction: column;
}
.menu-intro { margin-bottom: 1.5rem; }

.menu-grid {
  display: grid;
  gap: 0;
  flex: 1;
}
.menu-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(20px);
}
.menu-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
}
.menu-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.menu-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
}
.menu-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.menu-see-all {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  transition: opacity 0.2s;
}
.menu-see-all:hover { opacity: 0.7; }

/* ── Stats Section ── */
.section-stats {
  position: relative;
  background: var(--red-dark);
  padding: 12vh 6vw;
  overflow: hidden;
}
.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--dark) 100%);
  opacity: 0.95;
}
.stats-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4vw;
  text-align: center;
}
.stat { opacity: 0; transform: translateY(40px); }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--red-light);
  margin-left: 0.1em;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
}

/* ── Intro Text Block ── */
.text-block-intro {
  background: var(--white);
  padding: 10vh 6vw;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.text-block-inner { max-width: 1100px; }
.text-block-lead {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
  max-width: 800px;
}
.text-block-lead em { font-style: italic; color: var(--red); }
.text-block-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 2rem;
}
.text-block-columns p {
  font-size: clamp(0.925rem, 1.1vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.85;
}

/* ── Histoire Section ── */
.section-histoire {
  background: var(--off-white);
  padding: 12vh 6vw;
}
.histoire-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 8vw;
  align-items: start;
}
.histoire-left { position: sticky; top: 120px; }
.histoire-body { padding-top: 0.25rem; }
.histoire-p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.histoire-quote {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--white);
  border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}
.histoire-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}
.histoire-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  transition: opacity 0.2s;
}
.histoire-link:hover { opacity: 0.7; }

/* ── Savoir-Faire Section ── */
.section-savoir {
  background: var(--white);
  padding: 12vh 6vw;
}
.savoir-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 3.5rem;
}
.savoir-intro {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--text-muted);
  line-height: 1.85;
  padding-bottom: 0.25rem;
}
.savoir-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(0,0,0,0.08);
}
.savoir-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 2rem 2rem 2.5rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(20px);
}
.savoir-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.5;
  letter-spacing: 0.05em;
}
.savoir-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.savoir-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CTA Section ── */
.section-cta {
  background: var(--red);
  padding: 16vh 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vw;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content .section-label { color: rgba(255,255,255,0.6); justify-content: center; }
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 9rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.cta-heading em { font-style: italic; color: rgba(255,255,255,0.7); }
.cta-body {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 3rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.cta-button:hover { transform: translateY(-2px); }
.cta-button.primary {
  background: var(--white);
  color: var(--red);
}
.cta-button.primary:hover { background: var(--off-white); }
.cta-button.secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.cta-button.secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  padding: 5vh 6vw;
  color: rgba(255,255,255,0.55);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.footer-info p {
  font-size: 0.875rem;
  line-height: 1.8;
}
.footer-copy {
  font-size: 0.75rem;
  text-align: right;
  letter-spacing: 0.04em;
}

/* ── Animation Initial States ── */
[data-animation] { opacity: 0; }
[data-animation="fade-up"]    { transform: translateY(40px); }
[data-animation="slide-left"] { transform: translateX(-60px); }
[data-animation="slide-right"]{ transform: translateX(60px); }
[data-animation="scale-up"]   { transform: scale(0.88); }
[data-animation="clip-reveal"]{ clip-path: inset(100% 0 0 0); }
[data-animation="stagger-up"] { transform: translateY(50px); }

/* ── Photo + Text Section ── */
.photo-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.photo-text-image {
  position: relative;
  overflow: hidden;
}
.photo-text-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: translateZ(0);
}
.photo-text-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.55);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}
.photo-text-caption sup { font-size: 0.55rem; vertical-align: super; }
.photo-text-content {
  background: var(--off-white);
  padding: 8vh 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.photo-text-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.photo-text-body {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 460px;
}
.photo-text-links {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.photo-text-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  transition: opacity 0.2s;
}
.photo-text-link:hover { opacity: 0.7; }

/* ── Reservation Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.6);
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--white);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: 3rem;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: none;
}
.modal-overlay.is-open .modal { transform: translateY(0); }
.modal::-webkit-scrollbar { display: none; }

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--off-white); color: var(--text); }
.modal-close svg { width: 18px; height: 18px; }

.modal-header { margin-bottom: 2rem; }
.modal-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.modal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.modal-title em { font-style: italic; color: var(--red); }

/* Form */
.modal-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--red); }
.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid { border-color: #e05c5c; }
.form-field textarea { resize: vertical; min-height: 80px; }

/* Guests stepper */
.guests-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
  background: var(--off-white);
  overflow: hidden;
  width: fit-content;
}
.stepper-btn {
  width: 2.75rem;
  height: 2.75rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stepper-btn:hover { background: var(--cream); color: var(--red); }
.stepper-value {
  min-width: 3rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  border-left: 1px solid rgba(0,0,0,0.08);
  border-right: 1px solid rgba(0,0,0,0.08);
  padding: 0.5rem 0;
}

.form-submit {
  margin-top: 0.5rem;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }

/* Success state */
.modal-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.modal-success.is-visible { display: block; }
.success-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.modal-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.modal-success p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto 0.5rem;
}
.success-contact a { color: var(--red); font-weight: 600; }

/* ── Mobile ── */
@media (max-width: 900px) {
  /* Photo+text: stack */
  .photo-text { grid-template-columns: 1fr; }
  .photo-text-image { min-height: 55vw; max-height: 420px; }
  nav a:not(.nav-cta) { display: none; }
  .hero-content { max-width: 90vw; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-copy { text-align: left; }
}
@media (max-width: 600px) {
  .photo-text-content { padding: 5vh 5vw; }
  .modal { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
