/* =============================================
   ZACHANDFAH.COM — GLOBAL STYLES
   Lanna-inspired modern wedding aesthetic
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500&family=Noto+Sans+Thai:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --cream:       #FAF7F4;
  --cream-dark:  #F0E5D8;
  --blush:       #C4768A;
  --blush-light: #E8B4C0;
  --blush-pale:  #F5E0E4;
  --sky:         #7BAFC8;
  --sky-light:   #B8D8EA;
  --sky-pale:    #E4F0F7;
  --tan:         #C4A070;
  --tan-dark:    #8C6E45;
  --sand:        #EDE0CC;
  --rose-deep:   #7B4050;
  --charcoal:    #3A2E28;
  --white:       #FFFFFF;

  /* aliases used throughout */
  --gold:       var(--tan);
  --gold-light: #D4B484;
  --gold-muted: var(--tan-dark);
  --red:        var(--blush);
  --red-dark:   var(--rose-deep);
  --teak:       #6B5040;

  --font-serif: 'Cormorant Garant', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
  --font-thai:  'Noto Sans Thai', sans-serif;

  --transition: 0.3s ease;
  --max-width: 1100px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* =============================================
   LANNA GEOMETRIC PATTERNS (SVG data-URIs)
   ============================================= */

/* Diamond lattice — used as subtle section texture */
.lanna-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 4L76 40L40 76L4 40Z' fill='none' stroke='%23C4768A' stroke-width='0.8' opacity='0.2'/%3E%3Cpath d='M40 20L60 40L40 60L20 40Z' fill='none' stroke='%23C4768A' stroke-width='0.6' opacity='0.15'/%3E%3Ccircle cx='40' cy='4' r='1.5' fill='%23C4768A' opacity='0.2'/%3E%3Ccircle cx='76' cy='40' r='1.5' fill='%23C4768A' opacity='0.2'/%3E%3Ccircle cx='40' cy='76' r='1.5' fill='%23C4768A' opacity='0.2'/%3E%3Ccircle cx='4' cy='40' r='1.5' fill='%23C4768A' opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* Lanna bg for hero/dark sections — rose toned */
.lanna-bg-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 4L76 40L40 76L4 40Z' fill='none' stroke='%23F5E0E4' stroke-width='0.8' opacity='0.2'/%3E%3Cpath d='M40 20L60 40L40 60L20 40Z' fill='none' stroke='%23F5E0E4' stroke-width='0.6' opacity='0.12'/%3E%3Ccircle cx='40' cy='4' r='1.5' fill='%23F5E0E4' opacity='0.25'/%3E%3Ccircle cx='76' cy='40' r='1.5' fill='%23F5E0E4' opacity='0.25'/%3E%3Ccircle cx='40' cy='76' r='1.5' fill='%23F5E0E4' opacity='0.25'/%3E%3Ccircle cx='4' cy='40' r='1.5' fill='%23F5E0E4' opacity='0.25'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* =============================================
   LANNA DIVIDER — decorative horizontal rule
   ============================================= */
.lanna-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 3rem;
  max-width: 400px;
}
.lanna-divider::before,
.lanna-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.lanna-divider svg {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(123, 64, 80, 0.96);
  box-shadow: 0 1px 0 rgba(232, 180, 192, 0.2);
}
.nav-brand {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
}
.nav-brand span {
  color: var(--gold-light);
}
.nav-brand:hover { opacity: 0.85; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dark);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold-light);
  transition: right var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { right: 0; }
.nav-links a.active { color: var(--gold-light); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: rgba(28, 18, 8, 0.98);
    padding: 1.5rem 0;
    transform: translateY(-110%);
    transition: transform var(--transition);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 1rem; }
}

/* =============================================
   HERO — shared across pages
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-color: var(--charcoal);
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #C4768A 0%, #9B5868 40%, #7BAFC8 100%);
  opacity: 0.92;
  z-index: 0;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 4L76 40L40 76L4 40Z' fill='none' stroke='%23FAF7F4' stroke-width='0.8' opacity='0.12'/%3E%3Cpath d='M40 20L60 40L40 60L20 40Z' fill='none' stroke='%23FAF7F4' stroke-width='0.6' opacity='0.08'/%3E%3Ccircle cx='40' cy='4' r='1.5' fill='%23FAF7F4' opacity='0.2'/%3E%3Ccircle cx='76' cy='40' r='1.5' fill='%23FAF7F4' opacity='0.2'/%3E%3Ccircle cx='40' cy='76' r='1.5' fill='%23FAF7F4' opacity='0.2'/%3E%3Ccircle cx='4' cy='40' r='1.5' fill='%23FAF7F4' opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
}

/* Kalae ornament — Thai pattern above hero title */
.kalae {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  opacity: 0.88;
  display: block;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-thai {
  font-family: var(--font-thai);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  color: var(--gold-light);
  opacity: 0.75;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}
.hero-date {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  color: var(--cream-dark);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.hero-venue {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
}

/* =============================================
   COUNTDOWN TIMER
   ============================================= */
.countdown-band {
  position: relative;
  z-index: 2;
  margin-top: 3.5rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.countdown-unit {
  text-align: center;
  min-width: 60px;
}
.countdown-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  display: block;
}
.countdown-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
  display: block;
  margin-top: 0.25rem;
}
.countdown-sep {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  align-self: flex-start;
  padding-top: 0.1em;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  animation: cue-bounce 2s ease-in-out infinite;
}
.scroll-cue span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.scroll-cue svg { stroke: var(--gold-light); }
@keyframes cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   SECTIONS — general layout
   ============================================= */
.section {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-full {
  padding: 6rem 2rem;
  width: 100%;
}
.section-header {
  text-align: center;
  margin-bottom: 1rem;
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--red-dark);
  line-height: 1.15;
}
.section-title-thai {
  font-family: var(--font-thai);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--blush);
  opacity: 0.75;
  margin-top: 0.25rem;
  display: block;
}

/* =============================================
   BUTTONS & LINKS
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-align: center;
}
.btn:hover {
  background: var(--gold);
  color: var(--cream);
}
.btn-solid {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream);
}
.btn-solid:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}
.btn-gold:hover {
  background: var(--gold-muted);
  border-color: var(--gold-muted);
  color: var(--cream);
}

/* =============================================
   PHOTO PLACEHOLDER
   ============================================= */
.photo-placeholder {
  background: linear-gradient(135deg, var(--teak) 0%, var(--red-dark) 50%, var(--charcoal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 2L58 30L30 58L2 30Z' fill='none' stroke='%23C09040' stroke-width='0.6' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.photo-placeholder-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-light);
  opacity: 0.5;
  z-index: 1;
  letter-spacing: 0.1em;
}

/* =============================================
   HOME — TEASER STRIP
   ============================================= */
.teaser-strip {
  background-color: var(--rose-deep);
  padding: 5rem 2rem;
  text-align: center;
}
.teaser-strip .section-eyebrow { color: var(--blush-light); }
.teaser-strip .section-title { color: var(--cream); }
.teaser-strip p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--cream-dark);
  max-width: 600px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.8;
  font-style: italic;
}

/* =============================================
   HOME — DETAILS GRID (coming soon)
   ============================================= */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
}
.detail-card {
  background: var(--cream);
  padding: 3rem 2rem;
  text-align: center;
}
.detail-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1.25rem;
  stroke: var(--gold-muted);
  fill: none;
  stroke-width: 1.25;
}
.detail-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--red-dark);
  margin-bottom: 0.5rem;
}
.detail-card p {
  font-size: 0.85rem;
  color: var(--teak);
  line-height: 1.6;
}

/* =============================================
   OUR STORY — TIMELINE
   ============================================= */
.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-muted) 8%, var(--gold-muted) 92%, transparent);
  opacity: 0.4;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 5rem;
  position: relative;
}

/* Node on the center line */
.timeline-node {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
}
.timeline-node-inner {
  width: 14px;
  height: 14px;
  background: var(--gold);
  transform: rotate(45deg);
  position: relative;
  z-index: 1;
}
.timeline-node-inner::before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid var(--gold);
  transform: none;
  opacity: 0.4;
}

/* Content blocks */
.timeline-content {
  padding: 2rem 3rem 2rem 0;
}
.timeline-item.right .timeline-content {
  grid-column: 3;
  padding: 2rem 0 2rem 3rem;
  grid-row: 1;
}
.timeline-item.left .timeline-content {
  grid-column: 1;
}
.timeline-item.left .timeline-node { grid-column: 2; grid-row: 1; }
.timeline-item.right .timeline-node { grid-column: 2; grid-row: 1; }

/* Photo side */
.timeline-photo {
  aspect-ratio: 4/3;
  border-radius: 2px;
}
.timeline-item.left .timeline-photo {
  grid-column: 3;
  grid-row: 1;
}
.timeline-item.right .timeline-photo {
  grid-column: 1;
  grid-row: 1;
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.5rem;
}
.timeline-heading {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--red-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.timeline-body {
  font-size: 0.9rem;
  color: var(--teak);
  line-height: 1.85;
}

@media (max-width: 768px) {
  .timeline::before { left: 28px; }
  .timeline-item {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
  }
  .timeline-node { padding-top: 1.5rem; }
  .timeline-item.left .timeline-content,
  .timeline-item.right .timeline-content {
    grid-column: 2; grid-row: 1;
    padding: 1.5rem 0 1.5rem 1.5rem;
  }
  .timeline-item.left .timeline-node,
  .timeline-item.right .timeline-node { grid-column: 1; grid-row: 1; }
  .timeline-item.left .timeline-photo,
  .timeline-item.right .timeline-photo {
    grid-column: 2; grid-row: 2;
    margin-left: 1.5rem;
  }
}

/* =============================================
   TRIP PAGE — SPECIFIC STYLES
   ============================================= */
.trip-hero {
  min-height: 70vh;
}
.trip-intro {
  background: var(--rose-deep);
  color: var(--cream-dark);
  padding: 5rem 2rem;
  text-align: center;
}
.trip-intro .section-title { color: var(--cream); }
.trip-intro p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  max-width: 680px;
  margin: 1.5rem auto 0;
  line-height: 1.9;
  color: var(--cream-dark);
}

.trip-schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.schedule-card {
  border-top: 2px solid var(--gold);
  padding: 2rem;
  background: var(--white);
}
.schedule-card-day {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.5rem;
}
.schedule-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--red-dark);
  margin-bottom: 0.75rem;
}
.schedule-card ul {
  list-style: none;
  padding: 0;
}
.schedule-card ul li {
  font-size: 0.875rem;
  color: var(--teak);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--cream-dark);
  padding-left: 1rem;
  position: relative;
}
.schedule-card ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.4rem;
  top: 0.65rem;
  color: var(--gold);
}

.pricing-note {
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.75rem;
  margin: 2rem auto;
  max-width: 640px;
  font-size: 0.875rem;
  color: var(--teak);
  line-height: 1.7;
}
.pricing-note strong { color: var(--red-dark); }

/* =============================================
   INTEREST FORM
   ============================================= */
.form-section {
  background-color: var(--sky);
  padding: 6rem 2rem;
}
.form-section .section-title { color: var(--white); }
.form-section .section-eyebrow { color: var(--charcoal); opacity: 0.7; }
.form-section .section-title-thai { color: var(--charcoal); opacity: 0.6; }

.interest-form {
  max-width: 560px;
  margin: 3rem auto 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(58,46,40,0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--white);
  background: rgba(255,255,255,0.4);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--white); color: var(--charcoal); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit-wrap {
  text-align: center;
  margin-top: 2rem;
}
.form-status {
  margin-top: 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--white);
  min-height: 1.5rem;
  text-align: center;
}
.form-status.error { color: #FFDDDD; }
.recaptcha-note {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--rose-deep);
  border-top: 1px solid rgba(232, 180, 192, 0.2);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.footer-brand em { color: var(--gold-light); font-style: italic; }
.footer-date {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--cream-dark);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.footer-pattern {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blush-light), transparent);
  opacity: 0.4;
  margin-bottom: 2rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(250, 240, 232, 0.6);
  letter-spacing: 0.05em;
}

/* =============================================
   GALLERY — horizontal scroller
   ============================================= */
.gallery-section {
  padding: 5rem 0 4rem;
  background: var(--cream);
  overflow: hidden;
}
.gallery-header {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 2.5rem;
}
.gallery-outer {
  position: relative;
}
.gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  /* scroll-snap handled by JS navigation */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 2rem 20px;
  cursor: grab;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.dragging { cursor: grabbing; scroll-snap-type: none; }

.gallery-item {
  flex: 0 0 auto;
  border-radius: 2px;
  overflow: hidden;
  height: 420px;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
/* Widths: portrait, landscape, square mix */
.gallery-item.portrait  { width: 290px; }
.gallery-item.landscape { width: 560px; }
.gallery-item.square    { width: 420px; }

/* Placeholder style until real photos are added */
.gallery-item.placeholder {
  background: linear-gradient(140deg, var(--blush-pale) 0%, var(--sky-pale) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item.placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 2L58 30L30 58L2 30Z' fill='none' stroke='%23C4768A' stroke-width='0.6' opacity='0.15'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
/* Gradient overlays for variety */
.gallery-item.g2 { background: linear-gradient(140deg, var(--sky-pale) 0%, var(--cream-dark) 100%); }
.gallery-item.g3 { background: linear-gradient(140deg, var(--cream-dark) 0%, var(--blush-pale) 100%); }
.gallery-item.g4 { background: linear-gradient(160deg, var(--blush-pale) 0%, #E8D8EA 100%); }
.gallery-item.g5 { background: linear-gradient(140deg, var(--sky-pale) 0%, var(--blush-pale) 100%); }
.gallery-item.g6 { background: linear-gradient(140deg, #EAE0D4 0%, var(--sky-pale) 100%); }
.gallery-item.g7 { background: linear-gradient(160deg, var(--blush-pale) 0%, var(--cream-dark) 100%); }

.gallery-caption {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--blush);
  opacity: 0.7;
}

/* Arrow buttons */
.gallery-arrows {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0 2rem;
}
.gallery-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--blush-light);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  border-radius: 0;
}
.gallery-arrow:hover {
  background: var(--blush);
  border-color: var(--blush);
}
.gallery-arrow:hover svg { stroke: var(--white); }
.gallery-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--blush);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

/* scroll hint dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
}
.gallery-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blush-light);
  transition: background var(--transition), transform var(--transition);
}
.gallery-dot.active {
  background: var(--blush);
  transform: scale(1.4);
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
