/* ==========================================================================
   Random Portugal — css/style.css
   ALL styles live here. Never edit inline styles in the HTML files.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours */
  --navy:        #0B2545;   /* primary — trust, class */
  --navy-light:  #1a3a6b;
  --navy-dark:   #071830;
  --gold:        #C4922A;   /* accent — premium, warmth */
  --gold-light:  #D4A843;
  --gold-dark:   #A67820;

  /* Neutrals */
  --bg:          #FAFAF8;
  --bg-alt:      #F3EFE8;
  --card:        #FFFFFF;
  --text:        #1C1917;
  --text-muted:  #6B7280;
  --border:      #E5E0D8;

  /* Functional */
  --whatsapp:    #25D366;
  --destructive: #DC2626;

  /* Typography */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Radii */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11,37,69,.08);
  --shadow:    0 4px 16px rgba(11,37,69,.12);
  --shadow-lg: 0 12px 40px rgba(11,37,69,.18);

  /* Transitions */
  --transition: 0.25s ease;

  /* Container */
  --max-w: 1200px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::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(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.8;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-xs);
}

/* --------------------------------------------------------------------------
   4. Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section { padding-block: var(--space-2xl); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--navy); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }

.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}
.btn--whatsapp:hover {
  background: #1eae57;
  border-color: #1eae57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 1.25rem 0;
}

.nav--scrolled {
  background: var(--navy);
  box-shadow: var(--shadow);
  padding: 0.85rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.nav__logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__links a {
  color: rgba(255,255,255,.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  transition: all var(--transition);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1548707309-dcebeab9ea9b?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,24,48,.82) 0%,
    rgba(11,37,69,.65) 50%,
    rgba(7,24,48,.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196,146,42,.2);
  border: 1px solid rgba(196,146,42,.5);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: var(--space-md);
}

.hero__title {
  color: #fff;
  margin-bottom: var(--space-md);
}
.hero__title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  margin-bottom: var(--space-lg);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5));
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* --------------------------------------------------------------------------
   8. Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: var(--space-xl);
}
.section-header--center { text-align: center; }
.section-header--center p { max-width: 600px; margin-inline: auto; margin-top: var(--space-sm); }

.section-header p {
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: var(--space-sm);
  border-radius: 2px;
}
.section-divider--center { margin-inline: auto; }

/* --------------------------------------------------------------------------
   9. Post Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card__img-wrap img { transform: scale(1.06); }

.card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}
.card__meta time { }
.card__meta .dot { opacity: 0.4; }

.card__title {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
  transition: color var(--transition);
}
.card:hover .card__title { color: var(--gold-dark); }

.card__excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
  flex: 1;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.85rem;
  transition: gap var(--transition);
}
.card__link:hover { gap: 0.6rem; }

/* Featured (large) card */
.card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.card--featured .card__img-wrap {
  aspect-ratio: auto;
  width: 50%;
  flex-shrink: 0;
}
.card--featured .card__body { padding: var(--space-xl); justify-content: center; }
.card--featured .card__title { font-size: 1.8rem; }

/* --------------------------------------------------------------------------
   10. Services / Tour Cards
   -------------------------------------------------------------------------- */
.service-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-card__img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.06); }

.service-card__price-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
}

.service-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__type {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
  margin-bottom: var(--space-xs);
  font-family: var(--font-sans);
}

.service-card__title {
  font-size: 1.3rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: var(--space-xs);
}

.service-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  flex: 1;
}

.service-card__features {
  list-style: none;
  margin-bottom: var(--space-md);
}
.service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  border-top: 1px solid var(--border);
}
.service-card__features li:first-child { border-top: none; }
.service-card__features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* --------------------------------------------------------------------------
   11. Stats Bar
   -------------------------------------------------------------------------- */
.stats {
  background: var(--navy);
  padding: var(--space-lg) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.stat {
  text-align: center;
  color: #fff;
}
.stat__number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  margin-top: 0.35rem;
}

/* --------------------------------------------------------------------------
   12. Newsletter Section
   -------------------------------------------------------------------------- */
.newsletter {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  text-align: center;
}
.newsletter h2 { color: #fff; }
.newsletter p { color: rgba(255,255,255,.75); max-width: 540px; margin-inline: auto; }

.newsletter__form {
  display: flex;
  gap: var(--space-xs);
  max-width: 480px;
  margin: var(--space-lg) auto 0;
}
.newsletter__form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter__form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter__form input:focus { border-color: var(--gold); }
.newsletter__form button {
  border: none;
  white-space: nowrap;
}

.newsletter__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
  margin-top: var(--space-sm);
}

.newsletter__substack-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: var(--space-sm);
  transition: color var(--transition);
}
.newsletter__substack-link:hover { color: #fff; }

/* --------------------------------------------------------------------------
   13. Testimonials
   -------------------------------------------------------------------------- */
.testimonials { background: var(--bg-alt); }

.testimonial-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -0.5rem; left: 1rem;
  line-height: 1;
}
.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  object-fit: cover;
}
.testimonial-card__name { font-weight: 600; font-size: 0.9rem; }
.testimonial-card__origin { font-size: 0.8rem; color: var(--text-muted); }

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

/* --------------------------------------------------------------------------
   14. About / Single Page
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 620px; margin: var(--space-sm) auto 0; }

.prose {
  max-width: 760px;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.85;
}
.prose h2 { margin: var(--space-xl) 0 var(--space-md); }
.prose h3 { margin: var(--space-lg) 0 var(--space-sm); color: var(--navy); }
.prose p  { margin-bottom: var(--space-md); color: #374151; }
.prose ul { padding-left: 1.5rem; margin-bottom: var(--space-md); }
.prose ul li { margin-bottom: 0.5rem; list-style: disc; color: #374151; }
.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-lg) 0;
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-muted);
}
.prose img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-xl);
}
.post-meta__author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.post-meta__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-alt);
}
.post-meta__name { font-weight: 600; font-size: 0.9rem; }
.post-meta__date { font-size: 0.85rem; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   15. Author Box
   -------------------------------------------------------------------------- */
.author-box {
  display: flex;
  gap: var(--space-lg);
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
  border: 1px solid var(--border);
}
.author-box__photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--gold);
}
.author-box__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.author-box__role { font-size: 0.8rem; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.author-box__bio { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.5rem; }

/* --------------------------------------------------------------------------
   16. Contact Form
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-md);
}
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--card);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,37,69,.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }

.form-wrapper {
  max-width: 680px;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   17. Blog Archive / Pagination
   -------------------------------------------------------------------------- */
.blog-archive { }

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}
.blog-filter__btn {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.blog-filter__btn:hover, .blog-filter__btn--active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-xl);
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.pagination a:hover, .pagination span.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand .nav__logo { font-size: 1.6rem; }
.footer__brand p { font-size: 0.875rem; margin-top: var(--space-sm); line-height: 1.75; color: rgba(255,255,255,.55); }

.footer__col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold-light); }

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(196,146,42,.1);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}

/* --------------------------------------------------------------------------
   19. WhatsApp Floating Button
   -------------------------------------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.9rem 1.4rem 0.9rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
.whatsapp-fab svg { width: 22px; height: 22px; fill: #fff; }
.whatsapp-fab__pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.7; }
}

/* --------------------------------------------------------------------------
   20. Breadcrumb
   -------------------------------------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: 0.4; }

/* --------------------------------------------------------------------------
   21. Image Banner (wide decorative)
   -------------------------------------------------------------------------- */
.img-banner {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   22. Map / Location strip
   -------------------------------------------------------------------------- */
.location-strip {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  text-align: center;
  padding: var(--space-md) 0;
  font-size: 0.88rem;
}
.location-strip a { color: var(--gold-light); font-weight: 500; }

/* --------------------------------------------------------------------------
   23. Tag Pills
   -------------------------------------------------------------------------- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: var(--space-md) 0;
}
.tag {
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* --------------------------------------------------------------------------
   24. About Page extras
   -------------------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.value-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.value-card__icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-sm);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   25. Utilities
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 9999;
  font-size: 0.85rem;
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   26. Responsive — Mobile First
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .card--featured { flex-direction: column; }
  .card--featured .card__img-wrap { width: 100%; aspect-ratio: 16/10; }
  .card--featured .card__body { padding: var(--space-md); }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cta .btn { display: none; }

  /* Mobile nav open state */
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    font-size: 1.2rem;
    z-index: 998;
  }
  .nav.open .nav__links a { color: #fff; }

  .hero__content { max-width: 100%; }

  .newsletter__form { flex-direction: column; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .author-box { flex-direction: column; }

  .whatsapp-fab__label { display: none; }
  .whatsapp-fab { padding: 1rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .section { padding-block: var(--space-xl); }
}

/* ==========================================================================
   PREMIUM REDESIGN LAYER
   ========================================================================== */

/* ── Additional Variables ── */
:root {
  --warm:              #F7F0E8;
  --gold-pale:         rgba(196,146,42,.08);
  --transition-smooth: 0.65s cubic-bezier(.25,.46,.45,.94);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left  { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px);  }
.reveal.is-visible.reveal--left,
.reveal.is-visible.reveal--right { transform: translateX(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── Stats Bar — upgraded ── */
.stats {
  background:
    linear-gradient(rgba(7,24,48,.90), rgba(7,24,48,.90)),
    url('https://images.unsplash.com/photo-1548683988-8765a024eb25?w=1800&q=80&auto=format&fit=crop') center/cover no-repeat;
  padding: var(--space-xl) 0;
  border-top:    1px solid rgba(196,146,42,.2);
  border-bottom: 1px solid rgba(196,146,42,.2);
}
.stats__grid { gap: 0; }
.stat {
  padding: var(--space-sm) var(--space-md);
  position: relative;
  border-right: 1px solid rgba(196,146,42,.2);
}
.stat:last-child { border-right: none; }
.stat__number {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  display: block;
  line-height: 1;
}
.stat__label {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* ── Hero aside card ── */
.hero > .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-2xl);
}
.hero__aside {
  background: rgba(7,24,48,.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(196,146,42,.35);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  width: 230px;
  color: #fff;
  flex-shrink: 0;
}
.hero__aside-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  display: block;
}
.hero__aside-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.hero__aside-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero__aside-price sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  font-family: var(--font-body);
  vertical-align: baseline;
}
.hero__aside-detail {
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}
.hero__aside-btn {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background var(--transition);
}
.hero__aside-btn:hover { background: var(--gold-dark); }

/* ── Split Section — Why Us ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}
.split-section__img {
  position: relative;
  overflow: hidden;
}
.split-section__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.split-section:hover .split-section__img img { transform: scale(1.04); }
.split-section__body {
  background: var(--navy);
  color: #fff;
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-section__body h2 { color: #fff; margin-bottom: var(--space-md); }
.split-section__body .section-label { color: var(--gold-light); }
.split-section__body > p {
  color: rgba(255,255,255,.72);
  margin-bottom: var(--space-lg);
}
.split-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: var(--space-lg);
}
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,.82);
  font-size: 0.95rem;
  line-height: 1.5;
}
.split-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.7em;
  flex-shrink: 0;
}

/* ── CTA Band ── */
.cta-band {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1555881400-74d7acaacd8b?w=1800&q=80&auto=format&fit=crop') center 60%/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.cta-band__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,24,48,.93) 0%, rgba(11,37,69,.78) 60%, rgba(7,24,48,.88) 100%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band__content {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  color: #fff;
  padding: var(--space-2xl) 0;
}
.cta-band__content h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: var(--space-sm);
}
.cta-band__content p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}
.cta-band__btns {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Premium Testimonials ── */
.testimonials-premium {
  background: var(--navy-dark);
  overflow: hidden;
  padding: var(--space-2xl) 0;
}
.testimonials-premium .section-header--center { position: relative; z-index: 1; }
.testimonials-premium .section-label { color: var(--gold-light); }
.testimonials-premium h2 { color: #fff; }

.t-slider {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-xl);
}
.t-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.t-slide {
  min-width: 100%;
  padding: 0 var(--space-xl);
  text-align: center;
}
.t-slide .stars {
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  margin-bottom: var(--space-md);
  display: block;
}
.t-slide blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}
.t-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
}
.t-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.t-author__name   { font-weight: 600; color: #fff; font-size: 0.9rem; }
.t-author__origin { font-size: 0.78rem; color: rgba(255,255,255,.45); }

.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.t-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  font-size: 1rem;
  line-height: 1;
}
.t-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,146,42,.12); }
.t-dots { display: flex; gap: 6px; }
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.t-dot.active { background: var(--gold); transform: scale(1.5); }

/* ── Editorial Blog Grid ── */
.blog-grid-editorial {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-md);
  min-height: 520px;
}
.card--editorial-main {
  grid-row: 1 / 3;
  flex-direction: column;
}
.card--editorial-main .card__img-wrap {
  aspect-ratio: 2/3;
  flex: 1;
}
.card--editorial-main .card__title { font-size: 1.45rem; }
.card--editorial-main .card__body { padding: var(--space-lg); }

/* ── Service card detail row ── */
.service-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border);
}
.service-card__details span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── Warm section background ── */
.section--warm { background: var(--warm); }

/* ── Responsive — premium layer ── */
@media (max-width: 1024px) {
  .hero > .container { grid-template-columns: 1fr; }
  .hero__aside { display: none; }
  .split-section { grid-template-columns: 1fr; }
  .split-section__img { min-height: 320px; }
  .blog-grid-editorial {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .card--editorial-main { grid-row: auto; }
  .card--editorial-main .card__img-wrap { aspect-ratio: 16/10; }
}
@media (max-width: 768px) {
  .t-slide { padding: 0 var(--space-sm); }
  .cta-band__content { padding: var(--space-xl) 0; }
  .split-section__body { padding: var(--space-xl) var(--space-md); }
  .stat { border-right: none; border-bottom: 1px solid rgba(196,146,42,.15); padding: var(--space-sm); }
  .stat:last-child { border-bottom: none; }
}
