/* ============================================================
   HAMS CONSTRUCTIONS — Main Stylesheet (Light Theme)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --orange:        #D95C1A;
  --orange-light:  #F06B2A;
  --orange-pale:   #FDF1EB;
  --orange-dim:    rgba(217,92,26,0.1);
  --orange-border: rgba(217,92,26,0.2);

  --white:   #FFFFFF;
  --bg:      #FAFAF8;
  --bg2:     #F4F2EE;
  --bg3:     #EDE9E2;

  --ink:     #1A1A18;
  --ink2:    #3A3A36;
  --ink3:    #6B6B64;
  --rule:    rgba(26,26,24,0.08);

  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:  8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(26,26,24,0.06);
  --shadow-md: 0 8px 32px rgba(26,26,24,0.1);
  --shadow-lg: 0 20px 60px rgba(26,26,24,0.12);
  --transition: 0.25s ease;
}

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.2px;
  border: 2px solid transparent;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(217,92,26,0.3);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--orange);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  border: 2px solid var(--orange);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--ink);
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-weight: 600; font-size: 0.875rem;
  border: 2px solid var(--rule);
  transition: all var(--transition);
}
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }

/* ─── TYPOGRAPHY ─── */
.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--orange);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-tag::before {
  content: '';
  display: block; width: 20px; height: 2px;
  background: var(--orange);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--ink3);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── SECTION ─── */
section { padding: 6rem 6%; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  height: 72px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: 0 2px 20px rgba(26,26,24,0.08); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  color: var(--ink3);
  font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active-link { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important; color: #fff !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px; font-weight: 600 !important;
  border: none !important; font-size: 0.875rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — Split layout
   ============================================================ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  padding-top: 72px;
  overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 6% 5rem 8%;
  background: var(--white);
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute; top: 10%; bottom: 10%; right: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--rule) 30%, var(--rule) 70%, transparent);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 0.45rem 1rem; border-radius: 50px;
  margin-bottom: 1.8rem;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 800; line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--orange); }

.hero-sub {
  font-size: 1.05rem; color: var(--ink3);
  line-height: 1.8; max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Credentials bar */
.hero-creds {
  display: flex; gap: 0; flex-wrap: nowrap;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-cred-item {
  display: flex; flex-direction: column;
  padding: 0.7rem 1.1rem;
  border-right: 1px solid var(--rule);
  flex: 1;
}
.hero-cred-item:last-child { border-right: none; }
.hero-cred-abbr {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  color: var(--orange); line-height: 1; margin-bottom: 0.2rem;
}
.hero-cred-label {
  font-size: 0.72rem; color: var(--ink3); line-height: 1.4;
}

.hero-right {
  position: relative; overflow: hidden;
  background: var(--bg2);
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(217,92,26,0.15) 0%, transparent 60%);
}
.hero-badge-card {
  position: absolute; bottom: 2.5rem; left: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 1rem;
  min-width: 220px;
}
.hero-badge-icon {
  width: 48px; height: 48px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.hero-badge-text strong {
  display: block; font-size: 1rem; font-weight: 700; color: var(--ink);
}
.hero-badge-text span { font-size: 0.78rem; color: var(--ink3); }

.hero-tag-top {
  position: absolute; top: 2rem; right: 2rem;
  background: var(--orange);
  color: #fff; border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--orange);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex; gap: 0; animation: marquee 30s linear infinite;
}
.marquee-inner span {
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px; text-transform: uppercase;
  padding: 0 2.5rem;
}
.marquee-inner span.dot {
  color: rgba(255,255,255,0.4);
  padding: 0; font-size: 0.6rem; align-self: center;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--bg); }

.services-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange-pale) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange-border); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  background: var(--orange-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  position: relative; z-index: 1;
}
.service-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--ink);
  margin-bottom: 0.6rem; position: relative; z-index: 1;
}
.service-card p {
  font-size: 0.85rem; color: var(--ink3);
  line-height: 1.7; margin-bottom: 1.2rem;
  position: relative; z-index: 1;
}
.service-link {
  font-size: 0.8rem; font-weight: 700; color: var(--orange);
  letter-spacing: 0.5px; position: relative; z-index: 1;
  transition: gap 0.2s;
}
.service-link:hover { text-decoration: underline; }

/* ============================================================
   PACKAGES
   ============================================================ */
#packages { background: var(--white); }

.packages-top {
  text-align: center; margin-bottom: 3.5rem;
}
.packages-top .section-tag { justify-content: center; }
.packages-top .section-tag::before { display: none; }
.packages-top .section-sub { margin: 0 auto 0.5rem; }
.packages-note { font-size: 0.82rem; color: var(--ink3); }
.packages-note a { color: var(--orange); text-decoration: underline; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1200px; margin: 0 auto;
}

.pkg-card {
  background: var(--bg);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange-border); }
.pkg-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: 0.63rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.25rem 0.85rem; border-radius: 50px;
  white-space: nowrap;
}

.pkg-name {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  color: var(--ink); margin-bottom: 0.2rem;
}
.pkg-card.featured .pkg-name { color: #fff; }

.pkg-price {
  font-size: 1.35rem; font-weight: 700;
  color: var(--orange); margin-bottom: 0.2rem;
}
.pkg-price span { font-size: 0.8rem; font-weight: 400; color: var(--ink3); }
.pkg-card.featured .pkg-price span { color: rgba(255,255,255,0.5); }

.pkg-desc {
  font-size: 0.8rem; color: var(--ink3); line-height: 1.6;
  margin: 0.6rem 0 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--rule);
}
.pkg-card.featured .pkg-desc { color: rgba(255,255,255,0.55); border-bottom-color: rgba(255,255,255,0.1); }

.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.pkg-features li {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.82rem; color: var(--ink2); line-height: 1.5;
}
.pkg-card.featured .pkg-features li { color: rgba(255,255,255,0.8); }
.pkg-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

.pkg-btn {
  display: block; margin-top: 1.8rem; text-align: center;
  padding: 0.72rem; border-radius: 50px;
  font-weight: 600; font-size: 0.875rem;
  transition: all 0.2s;
  border: 2px solid var(--orange); color: var(--orange);
}
.pkg-btn:hover { background: var(--orange); color: #fff; }
.pkg-card.featured .pkg-btn { background: var(--orange); color: #fff; border-color: var(--orange); }
.pkg-card.featured .pkg-btn:hover { background: var(--orange-light); }

.packages-cta-row {
  text-align: center; margin-top: 2.5rem;
}

/* ============================================================
   WHY US — Bento grid
   ============================================================ */
#why { background: var(--bg); }

.why-header { text-align: center; margin-bottom: 3rem; }
.why-header .section-tag { justify-content: center; }
.why-header .section-tag::before { display: none; }
.why-header .section-sub { margin: 0 auto; }

.why-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
  max-width: 1100px; margin: 0 auto;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.why-card.big {
  grid-column: span 2;
  background: var(--ink);
  color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 240px;
}
.why-card.orange {
  background: var(--orange);
  color: #fff;
}

.why-card-icon {
  width: 48px; height: 48px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.2rem;
}
.why-card.big .why-card-icon { background: rgba(255,255,255,0.1); }
.why-card.orange .why-card-icon { background: rgba(255,255,255,0.2); }

.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--ink); }
.why-card.big h3,
.why-card.orange h3 { color: #fff; }

.why-card p { font-size: 0.85rem; color: var(--ink3); line-height: 1.7; }
.why-card.big p { color: rgba(255,255,255,0.65); }
.why-card.orange p { color: rgba(255,255,255,0.85); }

.why-experience-cta {
  display: inline-flex; align-items: center;
  margin-top: 1.5rem;
  background: var(--orange);
  color: #fff;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
  width: fit-content;
  transition: background 0.2s, transform 0.2s;
}
.why-experience-cta:hover { background: var(--orange-light); transform: translateY(-2px); }

/* Why header italic */
.why-header .section-title em { font-style: italic; color: var(--orange); }

/* ============================================================
   HOW IT WORKS — Alternating layout
   ============================================================ */
#howitworks { background: var(--white); }

.steps-header { max-width: 560px; margin-bottom: 4rem; }

.steps-list { display: flex; flex-direction: column; gap: 0; }

.step-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2.5rem;
}
.step-row:last-child { padding-bottom: 0; }
.step-row:not(:last-child)::before {
  content: '';
  position: absolute; left: 31px; top: 64px; bottom: 0;
  width: 2px; background: var(--rule);
}

.step-num-wrap {
  width: 64px; height: 64px; flex-shrink: 0;
  border: 2px solid var(--orange-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  position: relative; z-index: 1;
}
.step-num-wrap.active { background: var(--orange); border-color: var(--orange); }
.step-num-wrap.active .step-num-inner { color: #fff; }

.step-num-inner {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--orange);
}

.step-content { padding-top: 0.8rem; }
.step-content h4 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.step-content p { font-size: 0.875rem; color: var(--ink3); line-height: 1.7; max-width: 480px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--bg); }

.testi-header { margin-bottom: 3rem; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.testi-stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-quote { font-size: 1.4rem; color: var(--orange); opacity: 0.3; line-height: 1; margin-bottom: 0.5rem; }
.testi-text {
  font-size: 0.9rem; color: var(--ink2); line-height: 1.8;
  flex: 1; margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.875rem; color: var(--ink); }
.testi-loc { font-size: 0.75rem; color: var(--ink3); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--white); padding: 6rem 6%; }

.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  max-width: 1100px; margin: 0 auto;
}

.contact-left { }
.contact-left .section-sub { margin-bottom: 2.5rem; }

.contact-points { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.contact-point {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--rule);
}
.contact-point-icon {
  width: 40px; height: 40px;
  background: var(--orange-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-point-label { font-size: 0.72rem; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-point-val { font-size: 0.9rem; font-weight: 600; color: var(--ink); }

.contact-form-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  color: var(--ink); margin-bottom: 0.4rem;
}
.contact-form-card p { font-size: 0.85rem; color: var(--ink3); margin-bottom: 1.8rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.9rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; color: var(--ink2); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--ink);
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217,92,26,0.1);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  background: var(--orange); color: #fff; border: none;
  border-radius: 50px; padding: 0.9rem;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; margin-top: 0.5rem;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--orange-light); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  color: #fff;
  padding: 5rem 6% 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem; margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800;
  color: #fff; margin-bottom: 1rem; display: inline-block;
}
.footer-logo span { color: var(--orange); }

.footer-brand p {
  font-size: 0.855rem; color: rgba(255,255,255,0.45);
  line-height: 1.8; max-width: 280px; margin-bottom: 1.5rem;
}
.social-links { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem; font-weight: 700;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--orange); color: var(--orange); }

.footer-col h5 {
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.5); font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 0.8rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-card.featured { transform: none; }
  .why-bento { grid-template-columns: 1fr 1fr; }
  .why-card.big { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 55vw; min-height: 320px; }
  .hero-left { padding: 4rem 6%; }
  .hero-left::after { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links { display: none; flex-direction: column; position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white); padding: 2rem 6%; gap: 1.5rem;
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  section { padding: 4rem 5%; }
  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .why-bento { grid-template-columns: 1fr; }
  .why-card.big { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
  .hero-creds { flex-wrap: wrap; }
  .hero-cred-item { flex: 1 1 45%; border-bottom: 1px solid var(--rule); }
}
