*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
nav, header, footer { border: none; outline: none; }

:root {
  --forest:     #1E2D1F;
  --maroon:     #6B1A1A;
  --gold:       #C8A96E;
  --gold-light: #E8D5A3;
  --cream:      #F4EEE2;
  --cream-dark: #EBE2D0;
  --warm-white: #FAF7F2;
  --charcoal:   #2C2418;
  --text-body:  #4A3F33;
  --text-muted: #7A6E62;
  --shadow:     0 8px 32px rgba(30,45,31,0.12);
  --trans:      all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Raleway', sans-serif; background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; line-height: 1.7; }
img  { display: block; width: 100%; object-fit: cover; }
a    { text-decoration: none; color: inherit; cursor: pointer; }

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 0 60px; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--trans);
  border: none;
  outline: none;
  box-shadow: none;
}
.navbar.scrolled {
  background: rgba(30,45,31,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.nav-logo img.nav-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200,169,110,0.55);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.nav-logo:hover img.nav-logo-icon {
  transform: scale(1.06);
  border-color: var(--gold-light);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.nav-logo-text .brand {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  letter-spacing: 10px;
  color: #E8D5A3;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0,0,0,0.85), 0 0px 3px rgba(0,0,0,0.95);
}
.nav-logo-text .sub {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(232,213,163,0.75);
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.nav-logo-text .sub::before,
.nav-logo-text .sub::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(232,213,163,0.55);
}
.nav-links { display: flex; gap: 34px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(244,238,226,0.85); font-weight: 600;
  position: relative; padding-bottom: 3px; transition: var(--trans);
}
.nav-links a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:1px; background:var(--gold); transition:var(--trans); }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { background:var(--gold)!important; color:var(--forest)!important; padding:10px 22px!important; border-radius:2px; font-weight:700!important; }
.nav-cta:hover { background:var(--gold-light)!important; }
.nav-cta::after { display:none!important; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; z-index:1001; }
.hamburger span { display:block; width:26px; height:2px; background:var(--gold-light); transition: var(--trans); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display:flex; position:fixed; top:80px; left:0; right:0;
  background: var(--forest); z-index:999;
  padding:0 36px; flex-direction:column; gap:0;
  max-height:0; overflow:hidden;
  border-top: 1px solid rgba(200,169,110,0.2);
  transition: max-height 0.45s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.35s ease;
}
.mobile-menu a { font-family:'Cinzel',serif; font-size:14px; letter-spacing:3px; color:var(--gold-light); padding:13px 0; border-bottom:1px solid rgba(200,169,110,0.15); transition:var(--trans); }
.mobile-menu a:hover { color:var(--gold); }
.mobile-menu a:last-child { border-bottom:none; }
.mobile-menu.open { max-height:520px; padding:20px 36px 32px; }

/* ── HERO BANNER ─────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 10s ease;
}
.hero:hover .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,45,31,0.5) 0%, rgba(30,45,31,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 5;
  text-align: center; padding: 0 40px;
  animation: fadeUp 1s 0.2s both;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content:''; width:36px; height:1px; background:var(--gold); }
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300; color: var(--cream);
  line-height: 1.0; margin-bottom: 22px;
}
.hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-content p {
  font-size: 15px; color: rgba(244,238,226,0.75);
  max-width: 520px; margin: 0 auto; line-height: 1.8;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(244,238,226,0.5); font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
}
.scroll-line { width:1px; height:48px; background:linear-gradient(to bottom, rgba(200,169,110,0.8), transparent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ── SHARED UTILITIES ────────────────────────────── */
.section { padding: 90px 80px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 16px;
}
.eyebrow::before, .eyebrow::after { content:''; width:28px; height:1px; background:var(--gold); }
.btn-primary {
  background: var(--gold); color: var(--forest);
  padding: 14px 36px; font-family: 'Raleway', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 700; border: none; cursor: pointer;
  border-radius: 2px; transition: var(--trans); display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── BLOG GRID ───────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

/* Featured post */
.blog-featured {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  transition: var(--trans);
}
.blog-featured:hover { box-shadow: 0 20px 60px rgba(30,45,31,0.18); }
.blog-featured-img { height: 380px; overflow: hidden; }
.blog-featured-img img { height: 100%; transition: transform 0.7s ease; }
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-body { padding: 36px 40px; }
.blog-tag {
  display: inline-block;
  background: var(--cream-dark); color: var(--maroon);
  font-size: 9px; letter-spacing: 2px; padding: 5px 14px;
  border-radius: 20px; text-transform: uppercase; font-weight: 700; margin-bottom: 14px;
}
.blog-featured-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 500; color: var(--forest);
  line-height: 1.25; margin-bottom: 12px;
}
.blog-meta { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 16px; }
.blog-featured-body p { font-size: 14px; color: var(--text-body); line-height: 1.85; margin-bottom: 20px; }
.read-more {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--forest); font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px; transition: var(--trans);
}
.read-more:hover { color: var(--maroon); gap: 14px; }

/* Post cards grid */
.blog-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.blog-card {
  background: #fff; border-radius: 4px;
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--trans);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(30,45,31,0.15); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { height: 100%; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px 26px; }
.blog-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; color: var(--forest);
  line-height: 1.3; margin-bottom: 10px; margin-top: 8px;
}
.blog-card-body p { font-size: 13px; color: var(--text-body); line-height: 1.75; margin-bottom: 14px; }
.blog-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--text-muted); padding-top: 14px;
  border-top: 1px solid var(--cream-dark);
}

/* ── SIDEBAR ─────────────────────────────────────── */
.sidebar-widget {
  background: var(--cream); border-radius: 4px;
  padding: 28px; margin-bottom: 28px;
}
.sidebar-widget h3 {
  font-family: 'Cinzel', serif; font-size: 12px;
  letter-spacing: 2.5px; color: var(--forest);
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-dark);
}
.category-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.category-list li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-body);
  padding: 10px 0; border-bottom: 1px solid var(--cream-dark);
  cursor: pointer; transition: var(--trans);
}
.category-list li:last-child { border-bottom: none; }
.category-list li:hover { color: var(--maroon); padding-left: 6px; }
.cat-count {
  background: var(--cream-dark); padding: 2px 10px;
  border-radius: 10px; font-size: 10px; color: var(--text-muted);
}
.recent-post { display: flex; gap: 12px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--cream-dark); }
.recent-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.recent-post img { width: 58px; height: 58px; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
.recent-post h5 { font-size: 13px; font-weight: 600; color: var(--forest); line-height: 1.35; margin-bottom: 4px; transition: var(--trans); }
.recent-post h5:hover { color: var(--maroon); }
.recent-post span { font-size: 10px; color: var(--text-muted); }
.newsletter-input {
  width: 100%; padding: 12px 16px;
  background: #fff; border: 1px solid var(--cream-dark); border-radius: 2px;
  font-family: 'Raleway', sans-serif; font-size: 13px; color: var(--charcoal);
  outline: none; transition: var(--trans); margin-bottom: 12px;
}
.newsletter-input:focus { border-color: var(--forest); }
.newsletter-note { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }

/* ── FOOTER ──────────────────────────────────────── */
footer { background: var(--charcoal); color: var(--cream); padding: 72px 80px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 52px; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo img.footer-logo-icon { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(200,169,110,0.4); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.footer-logo .name { font-family: 'Cinzel', serif; font-size: 15px; letter-spacing: 3px; color: var(--gold-light); }
.footer-brand p { font-size: 13px; color: rgba(244,238,226,0.55); line-height: 1.8; margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px; border: 1px solid rgba(200,169,110,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--gold); cursor: pointer; transition: var(--trans);
}
.social-link:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.footer-col h4 {
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px; color: var(--gold);
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(200,169,110,0.2);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(244,238,226,0.55); transition: var(--trans); cursor: pointer; }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(244,238,226,0.1); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(244,238,226,0.35); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  background: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest-light);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.1);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6E62' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--warm-white);
  border-radius: 6px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  animation: modalIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  background: var(--forest);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header-brand { display: flex; align-items: center; gap: 16px; }
.modal-header-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(244,238,226,0.35); box-shadow: 0 2px 8px rgba(0,0,0,0.35); flex-shrink: 0; }
.modal-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
}
.modal-header p { font-size: 12px; color: rgba(244,238,226,0.6); letter-spacing: 1px; margin-top: 4px; }
.modal-close {
  width: 36px; height: 36px;
  border: 1px solid rgba(244,238,226,0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.modal-close:hover { background: rgba(255,255,255,0.1); }
.modal-body { padding: 40px; }
.modal-package-info {
  background: var(--cream);
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-package-info .pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
}
.modal-package-info .pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--maroon);
}
.modal-package-info .pkg-price span { font-size: 13px; color: var(--text-muted); }
.modal-success {
  text-align: center;
  padding: 30px 20px;
  display: none;
}
.modal-success.show { display: block; }
.modal-success-logo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(200,169,110,0.4); margin: 0 auto 18px; display: block; box-shadow: 0 4px 14px rgba(0,0,0,0.18); animation: modalSuccessPop 0.5s ease; }
@keyframes modalSuccessPop { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.08); opacity: 1; } 100% { transform: scale(1); } }
.modal-success .success-icon { font-size: 60px; margin-bottom: 16px; }
.modal-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 12px;
}
.modal-success p { font-size: 14px; color: var(--text-body); }
.form-divider {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 24px 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}
/* ── FLOATING BUTTONS ────────────────────────────── */
.floating-socials { position:fixed; bottom:30px; right:26px; z-index:9999; display:flex; flex-direction:column; gap:12px; align-items:flex-end; }
.float-btn {
  display:flex; align-items:center; height:50px; border-radius:28px;
  text-decoration:none; font-size:12px; font-weight:700; letter-spacing:1px; color:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,0.2); overflow:hidden; max-width:50px; white-space:nowrap;
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.float-btn:hover { max-width: 220px; }
.float-btn-icon { width:50px; height:50px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.float-btn-label { padding-right:18px; opacity:0; transition: opacity 0.2s 0.1s; }
.float-btn:hover .float-btn-label { opacity:1; }
.float-instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.float-whatsapp  { background: #25D366; }

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal { opacity:0; transform:translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ──────────────────────────────────── */

/* 1200px – large tablets / small laptops */
@media(max-width:1200px) {
  .navbar { padding: 0 36px; }
  .nav-links { gap: 24px; }
  .section { padding: 80px 52px; }
  footer { padding: 72px 52px 36px; }
}

/* 1024px – tablets landscape */
@media(max-width:1024px) {
  .blog-layout { grid-template-columns: 1fr 260px; gap: 36px; }
  .blog-featured-body { padding: 28px 30px; }
  .blog-featured-body h2 { font-size: 28px; }
}

/* 900px – tablets portrait & mobile */
@media(max-width:900px) {
  /* ── Mobile branding ── */
  .nav-logo { flex-direction: column !important; align-items: center !important; gap: 3px !important; }
  .nav-logo img.nav-logo-icon { width: 34px !important; height: 34px !important; object-fit: cover !important; border-radius: 50% !important; }
  .nav-logo-text { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 4px !important; line-height: 1 !important; }
  .nav-logo-text .brand { font-family: 'Cinzel', serif !important; font-size: 20px !important; letter-spacing: 7px !important; color: #C8A96E !important; font-weight: 600 !important; text-transform: uppercase !important; line-height: 1 !important;   text-shadow: 0 1px 10px rgba(0,0,0,0.85), 0 0px 3px rgba(0,0,0,0.95);
}
  .nav-logo-text .sub { display: flex !important; align-items: center !important; gap: 8px !important; font-family: 'Cinzel', serif !important; font-size: 8px !important; letter-spacing: 3px !important; color: rgba(200,169,110,0.75) !important; font-weight: 400 !important; text-transform: uppercase !important; white-space: nowrap !important; }
  .nav-logo-text .sub::before, .nav-logo-text .sub::after { content: '' !important; display: inline-block !important; width: 22px !important; height: 1px !important; background: rgba(200,169,110,0.6) !important; }
  /* Navbar */
  .navbar {
    padding: 0 22px;
    height: 64px;
    background: var(--forest) !important;
    backdrop-filter: none !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  }
  .navbar.scrolled { background: var(--forest) !important; }
  .nav-links { display: none; }
  .hamburger { display: flex; flex-direction: column; gap: 6px; padding: 6px; }
  .hamburger span { width: 26px; height: 2px; background: var(--gold-light); border-radius: 1px; }
  .mobile-menu { top: 64px; }

  /* Sections */
  .section { padding: 56px 22px; }

  /* Hero */
  .hero-content { padding: 0 22px; }
  .hero-content h1 { font-size: clamp(38px, 10vw, 60px); }
  .hero-content p { font-size: 14px; max-width: 420px; }
  .hero-scroll { display: none; }

  /* Blog layout: sidebar drops below main */
  .blog-layout { grid-template-columns: 1fr; gap: 40px; }
  .blog-cards  { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Featured post */
  .blog-featured-img { height: 280px; }
  .blog-featured-body { padding: 26px 28px; }
  .blog-featured-body h2 { font-size: 26px; }

  /* Sidebar goes full-width row */
  .blog-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .sidebar-widget { margin-bottom: 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  footer { padding: 56px 22px 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Modal */
  .modal-header { padding: 24px 26px; }
  .modal-header h2 { font-size: 22px; }
  .modal-body { padding: 26px; }
  .modal-package-info { flex-direction: column; align-items: flex-start; gap: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* 640px – large phones */
@media(max-width:640px) {
  /* Navbar */
  .navbar { padding: 0 16px; height: 60px; }
  .mobile-menu { top: 60px; }

  /* Hero */
  .hero { min-height: 560px; }
  .hero-content h1 { font-size: clamp(34px, 11vw, 52px); }

  /* Blog layout */
  .section { padding: 44px 16px; }
  .blog-cards { grid-template-columns: 1fr; }
  .blog-featured-img { height: 220px; }
  .blog-featured-body { padding: 22px 20px; }
  .blog-featured-body h2 { font-size: 22px; }
  .blog-featured-body p { font-size: 13px; }

  /* Sidebar collapses to 1 col */
  .blog-sidebar { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 44px 16px 24px; }
  .footer-bottom p { font-size: 11px; }

  /* Floating socials */
  .floating-socials { bottom: 16px; right: 12px; gap: 10px; }
  .float-btn { height: 46px; max-width: 46px; }
  .float-btn-icon { width: 46px; height: 46px; }
  .float-btn:hover { max-width: 210px; }
}

/* 380px – small phones */
@media(max-width:380px) {
  .navbar { padding: 0 12px; height: 58px; }
  .mobile-menu { top: 58px; padding: 16px 18px 26px; }
  .section { padding: 36px 14px; }
  footer { padding: 36px 14px 20px; }
  .hero-content h1 { font-size: 32px; }
  .blog-featured-body h2 { font-size: 20px; }
  .blog-card-body h3 { font-size: 18px; }
}
/* =========================================================
   BLOG — RESPONSIVE OVERHAUL ADDITIONS
========================================================= */
html, body { max-width: 100vw; overflow-x: hidden; }

@media (min-width: 1440px) {
  .navbar { padding: 0 100px; }
  .section { padding: 100px 100px; }
  footer { padding: 80px 100px 40px; }
  .hero-content { padding: 0 100px; }
}

@media (max-width: 1280px) and (min-width: 1025px) {
  .navbar { padding: 0 52px; }
  .section { padding: 80px 64px; }
  footer { padding: 72px 64px 36px; }
}

@media (max-width: 1024px) and (min-width: 901px) {
  .blog-layout { grid-template-columns: 1fr 260px; gap: 40px; }
  .blog-featured-body { padding: 28px 32px; }
  .blog-featured-body h2 { font-size: 28px; }
  .blog-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Already has good mobile at 900px, but add fine-tuning below */
@media (max-width: 768px) {
  /* Hero */
  .hero { min-height: 100svh; height: 100svh; }
  .hero-content { padding: 0 22px; }
  .hero-content h1 { font-size: clamp(36px, 10vw, 58px); }
  .hero-content p { font-size: 14px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 4px; }
  .hero-scroll { display: none; }

  /* Section */
  .section { padding: 52px 22px; }

  /* Blog layout */
  .blog-layout { grid-template-columns: 1fr; gap: 36px; }
  .blog-featured-img { height: 240px; }
  .blog-featured-body { padding: 24px 22px; }
  .blog-featured-body h2 { font-size: 24px; }
  .blog-cards { grid-template-columns: 1fr; gap: 18px; }
  .blog-card-img { height: 180px; }
  .blog-card-body { padding: 20px 22px; }
  .blog-card-body h3 { font-size: 20px; }
  .blog-card-body p { font-size: 12px; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .sidebar-widget { padding: 22px; }

  /* Footer */
  footer { padding: 48px 22px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Floating socials */
  .floating-socials { bottom: 18px; right: 14px; }
  .float-btn { height: 46px; max-width: 46px; }
  .float-btn-icon { width: 46px; height: 46px; }
  .float-btn:hover { max-width: 46px; }
}

@media (max-width: 480px) {
  .navbar { padding: 0 16px; height: 60px; }
  .mobile-menu { top: 60px; }
  .hero-content { padding: 0 16px; }
  .hero-content h1 { font-size: clamp(30px, 9.5vw, 46px); }
  .section { padding: 40px 16px; }
  .blog-featured-img { height: 200px; }
  .blog-featured-body { padding: 20px 18px; }
  .blog-featured-body h2 { font-size: 20px; }
  .blog-card-body { padding: 16px 18px; }
  .sidebar-widget { padding: 18px; }
  footer { padding: 40px 16px 22px; }
}

@media (max-width: 360px) {
  .hero-content h1 { font-size: 26px; }
  .section { padding: 32px 12px; }
  .blog-featured-body h2 { font-size: 18px; }
  .blog-card-body h3 { font-size: 17px; }
  footer { padding: 32px 12px 18px; }
}

@media (max-height: 500px) and (max-width: 900px) and (orientation: landscape) {
  .hero { min-height: 100svh; height: 100svh; }
  .hero-content { padding: 0 24px; }
  .hero-content h1 { font-size: clamp(26px, 7vh, 42px); }
  .hero-content p { display: none; }
  .hero-scroll { display: none; }
}
