/* =========================================
   HAKHANHNHI WEDDING — Landing Page Styles
   ========================================= */

/* ROOT & RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C9A06A;
  --gold-dark:   #8B6840;
  --gold-light:  #E8D5B7;
  --gold-pale:   #FDF4E9;
  --cream:       #FDF8F3;
  --white:       #FFFFFF;
  --dark:        #1A1208;
  --text:        #3D2E1A;
  --text-muted:  #7A6A55;
  --border:      #EDE0CC;
  --shadow:      rgba(139, 104, 64, 0.12);
  --section-py:  96px;
  --radius:      16px;
  --radius-sm:   8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-sm  { padding: 8px 18px; font-size: 14px; }
.btn-lg  { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; border-radius: var(--radius-sm); }

.btn-gold {
  background: linear-gradient(135deg, #C9A06A 0%, #A07840 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201, 160, 106, 0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 160, 106, 0.55);
}
.btn-gold:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.8);
}

.btn-white {
  background: #fff;
  color: var(--gold-dark);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}

.btn-link {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  padding: 12px;
  transition: color 0.2s;
}
.btn-link:hover { color: var(--gold-dark); }

/* =========================================
   SECTION COMMONS
   ========================================= */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

/* =========================================
   REVEAL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.48s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   HEADER
   ========================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 2px 20px var(--shadow);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}
.header.scrolled .logo { color: var(--dark); }
.logo-heart { color: #e8a0a0; font-size: 22px; }
.logo-text em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); }

.header-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.header-nav a:hover { color: #fff; }
.header.scrolled .header-nav a { color: var(--text-muted); }
.header.scrolled .header-nav a:hover { color: var(--gold-dark); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #3d2a14 0%, #6b4a28 40%, #4a2e10 100%);
  /* Replace with: background-image: url('your-hero-image.jpg'); background-size: cover; background-position: center; */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,10,4,0.45) 0%,
    rgba(20,10,4,0.55) 60%,
    rgba(20,10,4,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.trust-divider { color: rgba(255,255,255,0.3); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* =========================================
   STATS
   ========================================= */
.stats {
  background: var(--dark);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}

.stat-suffix {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
  display: inline-block;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* =========================================
   WHY US
   ========================================= */
.why {
  padding: var(--section-py) 0;
  background: var(--cream);
}

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

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.why-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   GALLERY
   ========================================= */
.gallery {
  padding: var(--section-py) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
  margin-bottom: 16px;
}

.gallery-item { border-radius: var(--radius-sm); overflow: hidden; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.gallery-img {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
  /* If using real images: background-size: cover; background-position: center; */
}
.gallery-img:hover { transform: scale(1.03); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-img:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.gallery-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* =========================================
   PROCESS
   ========================================= */
.process {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.process-track { position: relative; }
.process-line {
  position: absolute;
  top: 36px;
  left: calc(12.5% - 1px);
  right: calc(12.5% - 1px);
  height: 2px;
  background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-light));
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.process-step {
  text-align: center;
  padding: 0 16px;
}

.step-bubble {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(201,160,106,0.4);
}

.step-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: var(--section-py) 0;
}

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

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.stars {
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.author-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =========================================
   FAQ
   ========================================= */
.faq {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--gold-pale); }
.faq-q[aria-expanded="true"] { color: var(--gold-dark); }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-a.open { display: block; }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: linear-gradient(135deg, #3d2a14 0%, #6b4a28 100%);
  padding: 80px 0;
}

.cta-banner-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-urgency {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* =========================================
   BOOKING SECTION
   ========================================= */
.booking-section {
  padding: var(--section-py) 0;
  background: var(--gold-pale);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left: Info */
.booking-info .section-tag { display: block; margin-bottom: 12px; }

.booking-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.booking-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.booking-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.booking-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.b-icon {
  width: 22px; height: 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.booking-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.trust-icon { font-size: 24px; }
.trust-title { font-size: 14px; font-weight: 600; color: var(--dark); }
.trust-desc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* Right: Card */
.booking-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 8px 40px var(--shadow);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* Form Fields */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.required { color: #e05252; }

input[type="text"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,160,106,0.2);
}
input.error, select.error, textarea.error {
  border-color: #e05252;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A6A55' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 80px; }

.field-error {
  font-size: 12px;
  color: #e05252;
  min-height: 16px;
}

.form-security {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* QR Section */
.qr-header {
  text-align: center;
  margin-bottom: 24px;
}
.success-check {
  width: 56px; height: 56px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.qr-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--dark);
}
.order-id-txt {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.qr-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 20px;
}
.qr-instruction {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.qr-image-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
.qr-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto;
  background: #fff;
  padding: 8px;
  border: 1px solid var(--border);
}
.qr-amount-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  margin-top: 8px;
}

.bank-info-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.bank-row:last-child { border-bottom: none; }
.bi-label { color: var(--text-muted); flex-shrink: 0; }
.bi-value { font-weight: 600; color: var(--dark); text-align: right; }
.bi-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  flex: 1;
}
.copy-btn {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--gold-light);
  color: var(--gold-dark);
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.copy-btn:hover { background: var(--gold); color: #fff; }
.highlight-row { background: var(--gold-pale); border-radius: 4px; padding: 10px 8px; }
.amount-big { font-size: 18px; color: var(--gold-dark); }

.qr-warn {
  text-align: center;
  font-size: 12px;
  color: #b45309;
  margin-top: 12px;
  background: #fef3c7;
  padding: 8px 12px;
  border-radius: 6px;
}

/* Done Section */
.done-box { text-align: center; }
.done-emoji { font-size: 64px; margin-bottom: 16px; }
.done-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 12px;
}
.done-box > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.done-steps {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 24px;
  text-align: left;
}
.done-steps-title { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.done-steps ul { display: flex; flex-direction: column; gap: 8px; }
.done-steps li { font-size: 14px; color: var(--text-muted); }
.done-order {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { margin-bottom: 14px; color: var(--white); }
.footer-brand p { font-size: 14px; line-height: 1.7; }

.footer-contact h4,
.footer-links h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--gold); }

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  :root { --section-py: 72px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .g-tall, .g-wide { grid-row: auto; grid-column: auto; }
  .process-line { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .booking-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-nav { display: none; }
}

@media (max-width: 600px) {
  :root { --section-py: 56px; }

  .hero-cta { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; gap: 8px; text-align: center; }
  .trust-divider { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-num { font-size: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 200px; }
  .process-steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .booking-card { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand, .footer-links { display: none; }
}
