/* ═══════════════════════════════════════════════════════════
   TOR SIGNATURE EVENTS — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
  --clr-bg:        #faf8f5;
  --clr-surface:   #ffffff;
  --clr-text:      #2c2620;
  --clr-text-mute: #7a6f68;
  --clr-accent:    #c9a96e;    /* warm gold */
  --clr-accent-dk: #a8844a;
  --clr-blush:     #f0e4db;
  --clr-sage:      #8a9e8a;
  --clr-dark:      #1a1410;

  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Jost', system-ui, sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:     4px;
  --shadow-sm:  0 2px 12px rgba(44,38,32,.07);
  --shadow-md:  0 8px 40px rgba(44,38,32,.12);
  --shadow-lg:  0 20px 60px rgba(44,38,32,.18);
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── Utilities ──────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 110px 0; }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  font-family: var(--ff-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--clr-text);
}
.section-title em {
  font-style: italic;
  color: var(--clr-accent);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--ff-sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--clr-accent);
  color: #fff;
  border: 1.5px solid var(--clr-accent);
}
.btn-primary:hover {
  background: var(--clr-accent-dk);
  border-color: var(--clr-accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.35);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--clr-accent-dk);
  border: 1.5px solid #fff;
}
.btn-light:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.full-width { width: 100%; text-align: center; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(250,248,245,.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 1.1rem;
  color: var(--clr-accent);
  transition: transform .4s;
}
.logo:hover .logo-icon { transform: rotate(90deg); }

.logo-text {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: #fff;
  transition: color var(--transition);
}
.logo-text em { font-style: italic; color: var(--clr-accent); }

.navbar.scrolled .logo-text { color: var(--clr-text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }

.navbar.scrolled .nav-links a {
  color: var(--clr-text-mute);
}
.navbar.scrolled .nav-links a:hover { color: var(--clr-text); }

.nav-cta {
  background: var(--clr-accent) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius);
}
.nav-cta:hover {
  background: var(--clr-accent-dk) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,169,110,.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--clr-text); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/splash.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,20,16,.72) 0%,
    rgba(26,20,16,.45) 60%,
    rgba(26,20,16,.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
  animation: heroFadeUp .9s ease both;
}

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

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--clr-accent);
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  max-width: 540px;
  margin: 0 auto 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .5; }
  50%       { transform: scaleY(.6); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   INTRO BAND
   ═══════════════════════════════════════════════════════════ */
.intro-band {
  background: var(--clr-text);
  padding: 48px 40px;
}

.band-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.band-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 120px;
}

.stat-num {
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--clr-accent);
  line-height: 1;
}
.stat-num sup { font-size: 1.2rem; }

.stat-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.band-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services { background: var(--clr-bg); }

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

.service-card {
  position: relative;
  padding: 44px 36px;
  background: var(--clr-surface);
  border: 1px solid rgba(44,38,32,.08);
  border-radius: 8px;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card.featured {
  background: var(--clr-text);
  border-color: transparent;
}
.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-icon { color: #fff; }
.service-card.featured .service-link  { color: var(--clr-accent); }

.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--clr-accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
}

.service-icon {
  font-size: 1.6rem;
  color: var(--clr-accent);
  margin-bottom: 20px;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-card p {
  font-size: .9rem;
  color: var(--clr-text-mute);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  transition: letter-spacing var(--transition);
}
.service-link:hover { letter-spacing: .18em; }

/* ─── Package Cards ─────────────────────────────────────── */
.section-subtitle {
  font-size: .95rem;
  color: var(--clr-text-mute);
  margin-top: 16px;
}

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

.package-card {
  position: relative;
  background: var(--clr-surface);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(44,38,32,.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.package-card.featured {
  border: 2px solid var(--clr-accent);
  box-shadow: var(--shadow-md);
}
.package-card.featured:hover {
  box-shadow: var(--shadow-lg);
}

.package-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}
.package-card:hover .package-img img {
  transform: scale(1.06);
}

.package-body {
  padding: 36px 32px 40px;
}

.package-label {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 10px;
}

.package-body h3 {
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--clr-text);
}

.package-body p {
  font-size: .9rem;
  color: var(--clr-text-mute);
  line-height: 1.75;
  margin-bottom: 22px;
}

.package-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.package-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: var(--clr-text-mute);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about { background: var(--clr-blush); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 580px;
}

.about-img {
  position: absolute;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}

.about-img-1 {
  width: 72%;
  height: 78%;
  top: 0; left: 0;
  background-image: url('assets/tee.JPG');
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-img-2 {
  width: 54%;
  height: 55%;
  bottom: 0; right: 0;
  background-image: url('assets/LOGO.png');
  box-shadow: var(--shadow-md);
  border: 6px solid var(--clr-blush);
  z-index: 3;
}

.about-badge {
  position: absolute;
  bottom: 60px; left: -20px;
  z-index: 4;
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-style: italic;
  padding: 18px 28px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.about-content .section-title { text-align: left; }
.about-content .section-tag   { text-align: left; }

.about-body {
  font-size: .95rem;
  color: var(--clr-text-mute);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-em {
  font-style: italic;
  color: var(--clr-accent);
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 400;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 28px 0 24px;
  padding: 24px 28px;
  background: var(--clr-surface);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-num {
  font-family: var(--ff-serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--clr-accent);
  line-height: 1;
}
.about-stat-num sup { font-size: 1.1rem; }

.about-stat-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-text-mute);
}

.about-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(44,38,32,.15);
  flex-shrink: 0;
}

.about-quote {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--clr-text);
  border-left: 3px solid var(--clr-accent);
  padding: 4px 0 4px 20px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.about-list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
}

.check {
  color: var(--clr-accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ─── Package Card Links ────────────────────────────────── */
.package-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ═══════════════════════════════════════════════════════════
   PACKAGE DETAIL PAGES
   ═══════════════════════════════════════════════════════════ */

/* ─── Package Hero ──────────────────────────────────────── */
.pkg-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pkg-hero-img {
  position: absolute;
  inset: 0;
}

.pkg-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,20,16,.7) 0%,
    rgba(26,20,16,.4) 50%,
    rgba(26,20,16,.65) 100%
  );
  z-index: 1;
}

.pkg-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
  animation: heroFadeUp .9s ease both;
}

.pkg-hero-content .section-tag {
  color: var(--clr-accent);
  margin-bottom: 16px;
}

.pkg-hero-content .featured-badge {
  position: static;
  display: inline-block;
  margin-bottom: 20px;
}

.pkg-hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.pkg-hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Package Details Grid ──────────────────────────────── */
.pkg-details { background: var(--clr-bg); }

.pkg-details-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}

.pkg-description .section-title {
  text-align: left;
  margin-bottom: 32px;
}

.pkg-description p {
  font-size: .95rem;
  color: var(--clr-text-mute);
  line-height: 1.85;
  margin-bottom: 18px;
}

.pkg-sidebar {
  position: sticky;
  top: 100px;
}

.pkg-ideal-for {
  background: var(--clr-surface);
  border: 1px solid rgba(44,38,32,.08);
  border-radius: 10px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.pkg-ideal-for h3 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 14px;
}

.pkg-ideal-for p {
  font-size: .9rem;
  color: var(--clr-text-mute);
  line-height: 1.75;
}

/* ─── What's Included Section ───────────────────────────── */
.pkg-includes-section { background: var(--clr-surface); }

.pkg-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.pkg-include-item {
  padding: 0;
}

.pkg-include-icon {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--clr-blush);
  line-height: 1;
  margin-bottom: 14px;
}

.pkg-include-item h4 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 10px;
}

.pkg-include-item p {
  font-size: .88rem;
  color: var(--clr-text-mute);
  line-height: 1.75;
}

/* ─── Other Packages Section ────────────────────────────── */
.pkg-others { background: var(--clr-bg); }

.pkg-others-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pkg-other-card {
  display: block;
  background: var(--clr-surface);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(44,38,32,.08);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pkg-other-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pkg-other-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.pkg-other-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.pkg-other-card:hover .pkg-other-img img {
  transform: scale(1.06);
}

.pkg-other-body {
  padding: 28px 28px 32px;
}

.pkg-other-body h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--clr-text);
}

.pkg-other-body p {
  font-size: .88rem;
  color: var(--clr-text-mute);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════ */
.gallery { background: var(--clr-bg); padding-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px;
  margin-top: 60px;
}

.gallery-item {
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,20,16,0);
  transition: background var(--transition);
}
.gallery-item:hover::after {
  background: rgba(26,20,16,.25);
}

.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}

/* ═══════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════ */
.process { background: var(--clr-surface); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 28px;
}

.step-num {
  font-family: var(--ff-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--clr-blush);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.step p {
  font-size: .88rem;
  color: var(--clr-text-mute);
  line-height: 1.7;
}

.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: var(--clr-accent);
  margin-top: 28px;
  opacity: .4;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials { background: var(--clr-bg); }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 100%);
  gap: 0;
  overflow: hidden;
  width: 100%;
}

.testimonial-card {
  padding: 48px;
  background: var(--clr-surface);
  border-radius: 8px;
  border: 1px solid rgba(44,38,32,.07);
  width: calc(25% - 12px);
  flex-shrink: 0;
  transition: var(--transition);
}

/* JS-driven slider container */
.testimonials-track {
  display: flex;
  transition: transform .5s cubic-bezier(0.4,0,0.2,1);
}

.stars {
  color: var(--clr-accent);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.quote {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--clr-text);
  margin-bottom: 28px;
}

.couple {
  display: flex;
  align-items: center;
  gap: 16px;
}

.couple-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
}

.couple strong {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.couple span {
  font-size: .78rem;
  color: var(--clr-text-mute);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.t-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(44,38,32,.2);
  background: transparent;
  font-size: 1rem;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.t-btn:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}

.t-dots { display: flex; gap: 8px; }

.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(44,38,32,.2);
  transition: background var(--transition), width var(--transition);
  cursor: pointer;
}
.t-dot.active {
  background: var(--clr-accent);
  width: 22px;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: 120px 40px;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,20,16,.65);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.25;
}

.cta-content p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  margin-bottom: 40px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact { background: var(--clr-surface); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { text-align: left; font-size: 2.4rem; }
.contact-info .section-tag   { text-align: left; }
.contact-info > p {
  color: var(--clr-text-mute);
  font-size: .95rem;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
}

.detail-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--clr-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(44,38,32,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--clr-text-mute);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-text-mute);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid rgba(44,38,32,.12);
  border-radius: var(--radius);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: .92rem;
  font-weight: 300;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(44,38,32,.3); }

.form-group textarea { resize: vertical; min-height: 130px; }

.form-note {
  font-size: .75rem;
  color: var(--clr-text-mute);
  text-align: center;
  opacity: .7;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 60px 40px;
  display: none;
}
.form-success.visible { display: block; }
.form-success h3 {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 12px;
}
.form-success p { color: var(--clr-text-mute); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--clr-dark);
  padding-top: 80px;
}

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

.footer-brand .logo-text { color: #fff; }
.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin-top: 14px;
  max-width: 240px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links h4 {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 6px;
}

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--clr-accent); }

.footer-newsletter h4 {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 10px;
}
.footer-newsletter p {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}

.newsletter-form {
  display: flex;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: none;
  color: #fff;
  font-size: .85rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }

.newsletter-form button {
  padding: 12px 18px;
  background: var(--clr-accent);
  color: #fff;
  font-size: 1rem;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--clr-accent-dk); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--clr-accent); }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .about-grid    { grid-template-columns: 1fr; gap: 60px; }
  .about-images  { height: 420px; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.tall, .gallery-item.wide { grid-column: auto; grid-row: auto; }
  .gallery-item  { height: 280px; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 60px; }
  .pkg-details-grid { grid-template-columns: 1fr; gap: 40px; }
  .pkg-includes-grid { grid-template-columns: 1fr; }
  .pkg-others-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section   { padding: 80px 0; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 280px;
    background: var(--clr-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -20px 0 60px rgba(44,38,32,.12);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--clr-text-mute) !important; font-size: .9rem; }
  .nav-cta { background: var(--clr-accent) !important; }

  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2.4rem, 9vw, 3.8rem); }
  .pkg-hero { height: 50vh; min-height: 360px; }
  .pkg-hero-title { font-size: clamp(2rem, 8vw, 3rem); }

  .band-inner { justify-content: center; }
  .band-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-img { height: 220px; }
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .step-connector { width: 1px; height: 40px; margin: 0; }

  .testimonial-card { min-width: 90vw; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .about-images { height: 340px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 240px; }
}
