/* ===== A&M Eventology — Elegant theme ===== */
:root {
  --ink: #1a1e24; /* Deeper black for better readability */
  --ink-soft: #515965; /* Richer gray */
  --paper: #ffffff;
  
  --paper-alt: #f5f5f7; /* Apple-style light gray for alternating sections */
  --hairline: rgba(0, 0, 0, 0.07); /* Neutral hairline border */

  --blush: #fdf5f2; /* Soft warm glow pink */
  --blush-deep: #fadcd8;
  
  /* Luminous warm accents */
  --terracotta: #e05e46; /* Vibrant coral-terracotta */
  --terracotta-deep: #c4472f;
  --terracotta-glow: rgba(224, 94, 70, 0.15);
  
  --gold: #d4af37; /* Metallic warm gold */
  --gold-glow: rgba(212, 175, 55, 0.15);
  
  --copper: #d97d43; /* Richer warm copper */
  --copper-soft: #e8c6ab;
  
  /* Modern Gradients */
  --grad-hero: linear-gradient(135deg, rgba(224, 94, 70, 0.12) 0%, rgba(212, 175, 55, 0.08) 100%);
  --grad-sunset: linear-gradient(135deg, var(--terracotta) 0%, var(--copper) 100%);
  --grad-gold: linear-gradient(135deg, #f9f1d0 0%, var(--gold) 100%);
  --grad-dark: linear-gradient(145deg, #1d2127 0%, #0d0f12 100%);
  
  --white: #ffffff;
  --radius: 16px; /* Slightly smoother corners */
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 14px 40px rgba(0, 0, 0, 0.10);
  
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Poppins", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink-soft);
  background: var(--paper);
  line-height: 1.75;
}

.container { width: min(1120px, 92%); margin: 0 auto; }

h1, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--ink); }
h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: 0.005em; }
h1 em { font-family: var(--font-script); font-style: normal; font-weight: 400; color: var(--terracotta); font-size: 1.08em; }
h2 {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  margin-bottom: 1.2rem;
}
h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}
.eyebrow::before, .eyebrow::after { content: " — "; color: var(--copper-soft); }

.script-names {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--terracotta);
  line-height: 1.2;
}
.script-inline { margin-bottom: 0.8rem; }

.lede { font-size: 1.05rem; color: var(--ink-soft); max-width: 36rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: var(--grad-sunset);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(224, 94, 70, 0.25);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  z-index: -1;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(224, 94, 70, 0.35);
}
.btn:hover::before {
  left: 125%;
}
.btn-ghost {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
  box-shadow: none;
  padding: 0.8rem 2.1rem;
}
.btn-ghost::before { display: none; }
.btn-ghost:hover {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 8px 25px rgba(224, 94, 70, 0.2);
}
.btn-small { padding: 0.6rem 1.6rem; font-size: 0.82rem; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline);
  transition: all 0.3s ease;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; }
.brand {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--terracotta);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease;
}
.brand:hover {
  transform: scale(1.02);
}
.brand .amp { color: var(--copper); font-weight: 500; }
.brand .brand-word {
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72em;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a:not(.btn) {
  position: relative;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-links a:not(.btn):hover { color: var(--terracotta); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease;
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }

/* Ken Burns — gentle continuous zoom keeps the hero feeling alive */
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 45%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 75%, var(--white) 100%);
}
.hero-inner {
  position: relative;
  padding: clamp(2.5rem, 7vh, 5rem) 0 clamp(2.5rem, 6vh, 4.5rem);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
  max-width: 40rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 20px 50px rgba(26, 30, 36, 0.08),
              inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}
.hero-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-sunset);
}
.hero-copy > * { opacity: 0; animation: hero-rise 0.8s ease forwards; }
.hero-copy > :nth-child(1) { animation-delay: 0.15s; }
.hero-copy > :nth-child(2) { animation-delay: 0.35s; }
.hero-copy > :nth-child(3) { animation-delay: 0.55s; }
.hero-copy > :nth-child(4) { animation-delay: 0.75s; }
.hero-copy > :nth-child(5) { animation-delay: 0.95s; }
.hero-copy > :nth-child(6) { animation-delay: 1.15s; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin-top: 0.2rem;
}
.hero-tags li {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--terracotta-deep);
  background: var(--paper-alt);
  border: 1px solid var(--hairline);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 0.6rem; }

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--paper-alt);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee-scroll 28s linear infinite;
  padding-left: 1.5rem;
}
.marquee-item {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  background: var(--white);
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(224, 94, 70, 0.04);
  border: 1px solid rgba(224, 94, 70, 0.06);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
}
.marquee-item:hover {
  transform: translateY(-2px);
  border-color: var(--terracotta);
  color: var(--white);
  background: var(--grad-sunset);
  box-shadow: var(--shadow-hover);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Pillars strip ===== */
.stats {
  background: var(--paper-alt);
  color: var(--ink);
  padding: 3.5rem 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.2rem;
}
.stat span {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-soft);
}

/* ===== Sections ===== */
.section { padding: clamp(4.5rem, 10vh, 7rem) 0; }
#services {
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}
/* "section-dark" is now a light gray panel (Apple-style alternating section) */
.section-dark {
  background: var(--paper-alt);
  color: var(--ink-soft);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.section-dark h2 { color: var(--ink); }
.section-tint {
  background: var(--paper-alt);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

/* ===== Service cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}
.cards-services { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--hairline);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1.5px;
  background: var(--grad-sunset);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.card:hover::after {
  opacity: 1;
}
.card-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--terracotta);
  border: none;
  box-shadow: 0 0 0 4px var(--blush-deep);
  font-size: 1.6rem;
  margin-bottom: 1.3rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card:hover .card-icon {
  background: var(--grad-sunset);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(224, 94, 70, 0.15);
  transform: rotate(8deg) scale(1.1);
}
.card h3 { transition: color 0.3s; }
.card:hover h3 { color: var(--terracotta); }
.card p { color: var(--ink-soft); font-size: 0.92rem; }

/* ===== Photo service cards ===== */
.card-photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card-photo:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.4rem 1.6rem 1.7rem; }
.card-body h3 { margin-bottom: 0.4rem; }

.group-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--copper-soft), transparent);
}
.group-title + .cards { margin-top: 1.6rem; }

/* ===== Hero trust line ===== */
.hero-trust {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  margin-top: 0.4rem;
}

/* ===== FAQ ===== */
.faqs { max-width: 46rem; margin: 2.5rem auto 0; }
.faqs details {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow);
}
.faqs summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--terracotta);
  line-height: 1;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faqs details[open] summary::after { transform: rotate(45deg); }
.faqs details p { margin-top: 0.8rem; color: var(--ink-soft); font-size: 0.95rem; }

/* ===== How it works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}
.step {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--copper);
}
.step-num {
  display: block;
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.8rem;
  transition: all 0.4s ease;
}
.step:hover .step-num {
  transform: scale(1.1) translateX(3px);
  color: var(--copper);
}
.step h3 { transition: color 0.3s; }
.step:hover h3 { color: var(--terracotta); }
.step p { color: var(--ink-soft); font-size: 0.92rem; }

/* ===== Gallery (mosaic) ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(140px, 20vw, 230px);
  grid-auto-flow: dense;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  cursor: zoom-in;
  border: 1px solid var(--hairline);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.15);
}
.size-big { grid-column: span 2; grid-row: span 2; }
.size-tall { grid-row: span 2; }
.size-wide { grid-column: span 2; }
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tile:hover img { transform: scale(1.08); }
.tile figcaption {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.2rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  transition: all 0.3s ease;
}
.tile-1 { background: linear-gradient(135deg, var(--terracotta), var(--blush-deep)); }
.tile-2 { background: linear-gradient(135deg, var(--copper), var(--copper-soft)); }
.tile-3 { background: linear-gradient(135deg, var(--terracotta-deep), var(--blush-deep)); }
.tile-4 { background: linear-gradient(135deg, var(--ink), var(--ink-soft)); }
.tile-5 { background: linear-gradient(135deg, #e593a4, #fdf5f2); }
.tile-6 { background: linear-gradient(135deg, var(--terracotta-deep), var(--copper)); }
.tile-7 { background: linear-gradient(135deg, var(--copper), var(--copper-soft)); }
.tile-8 { background: linear-gradient(135deg, #5f7d4f, #a7c489); }
.tile-9 { background: linear-gradient(135deg, #7d9b5f, #c4b489); }
.tile-10 { background: linear-gradient(135deg, #4f6d3f, #97b479); }
.tile-11 { background: linear-gradient(135deg, #6d8b4f, #b4c489); }
.gallery-note { margin-top: 1.6rem; font-size: 0.85rem; opacity: 0.6; text-align: center; }

/* ===== Video ===== */
.video-wrap { margin-top: 3.5rem; text-align: center; }
.video-wrap video {
  width: 100%;
  max-width: 860px;
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: block;
  margin: 0 auto;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.video-wrap video:hover {
  border-color: var(--gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35), 0 0 20px rgba(212, 175, 55, 0.1);
}
.video-caption {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-visual { position: relative; min-height: 380px; }
.about-frame {
  position: absolute;
  inset: 0;
  border-radius: 180px 180px var(--radius) var(--radius);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.45), transparent 50%),
    var(--grad-sunset);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.about-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 170px 170px 10px 10px;
  pointer-events: none;
}
.about-visual:hover .about-frame {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-hover);
}
.about-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checklist { list-style: none; margin: 1.4rem 0 1.8rem; }
.checklist li { padding-left: 1.8rem; position: relative; margin-bottom: 0.6rem; color: var(--ink-soft); }
.checklist li::before {
  content: "❦";
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 0.9em;
}

/* ===== Testimonials ===== */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}
blockquote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
blockquote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--hairline);
  line-height: 1;
}
blockquote:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--copper);
}
.quote-photo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--copper);
  box-shadow: 0 0 0 4px rgba(216, 179, 148, 0.25);
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
}
blockquote:hover .quote-photo {
  transform: scale(1.05);
}
blockquote p { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; margin-bottom: 1rem; color: var(--ink); position: relative; z-index: 1; }
blockquote cite { font-style: normal; font-size: 0.85rem; color: var(--ink-soft); font-weight: 500; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-info { list-style: none; margin-top: 1.6rem; }
.contact-info li { margin-bottom: 0.7rem; color: var(--ink-soft); }
.contact-info strong { color: var(--terracotta-deep); display: inline-block; width: 5.5rem; font-weight: 500; }
.contact-info a { color: var(--ink-soft); text-decoration: none; }
.contact-info a:hover { color: var(--terracotta); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  transition: box-shadow 0.4s ease;
}
.contact-form:hover {
  box-shadow: 0 20px 50px rgba(224, 94, 70, 0.06);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(224, 94, 70, 0.15);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px var(--terracotta-glow);
}
.form-note { font-size: 0.78rem; color: var(--ink-soft); opacity: 0.8; }

/* ===== Footer ===== */
.site-footer {
  background: var(--white);
  color: var(--ink-soft);
  padding: 3rem 0;
  border-top: 1px solid var(--hairline);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-inner p { font-size: 0.85rem; opacity: 0.85; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { color: var(--ink-soft); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: var(--terracotta); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(26, 30, 36, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.lightbox-caption { color: var(--white); font-family: var(--font-display); font-size: 1.15rem; font-style: italic; }
.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
}
.lightbox button:hover { background: var(--terracotta); border-color: var(--terracotta); }
.lightbox-close { top: 1.2rem; right: 1.2rem; }
.lightbox-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ===== Floating call button ===== */
.call-fab {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--grad-sunset);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(224, 94, 70, 0.3);
  transition: all 0.3s ease;
}
.call-fab:hover {
  background: var(--grad-sunset);
  box-shadow: 0 15px 35px rgba(224, 94, 70, 0.45);
  transform: translateY(-3px) scale(1.05);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-copy > * { animation: none; opacity: 1; }
  .hero-slide { transition: none; animation: none; }
  .flourish span { animation: none; }
  .nav-links a:not(.btn)::after { transition: none; }
  .stagger > .reveal { transition-delay: 0s !important; }
}

/* ===== Section flourish divider ===== */
.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: clamp(1.5rem, 5vh, 3rem) 0;
}
.flourish::before, .flourish::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 170px;
}
.flourish::before { background: linear-gradient(90deg, transparent, var(--copper-soft)); }
.flourish::after { background: linear-gradient(90deg, var(--copper-soft), transparent); }
.flourish span {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--copper);
  animation: flourish-twinkle 3.2s ease-in-out infinite;
}
@keyframes flourish-twinkle {
  0%, 100% { opacity: 0.55; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.18) rotate(12deg); }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Staggered cascade for grouped items as each row scrolls in */
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.40s; }
.stagger > .reveal:nth-child(7) { transition-delay: 0.48s; }
.stagger > .reveal:nth-child(8) { transition-delay: 0.56s; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 280px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(150px, 30vw, 220px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1.2rem;
    border-bottom: 1px solid rgba(224, 94, 70, 0.1);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.6rem 5%; width: 100%; }
  .gallery { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
