:root {
  --ink: #07101a;
  --ink-light: #0d1a2b;
  --gold: #c59740;
  --gold-hover: #d5aa59;
  --cream: #f4f0e6;
  --white: #ffffff;
  --text-muted: #8496b0;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-dark: rgba(7, 16, 26, 0.1);
  --max: 1200px;
  --radius: 20px;
  
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(100% - 48px, var(--max));
  margin: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.1;
  font-weight: 500;
}

.text-gold {
  color: var(--gold);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Utilities */
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn .arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-gold {
  background: var(--gold);
  color: #111;
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 164, 91, 0.3);
}

.btn-outline {
  border-color: rgba(7, 16, 26, 0.2);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(7, 16, 26, 0.05);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(244, 240, 230, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  transition: all 0.4s ease;
}

#header.scrolled {
  background: rgba(244, 240, 230, 0.98);
  padding: 5px 0;
}

.nav-container {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.4s ease;
}

#header.scrolled .nav-container {
  height: 70px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  z-index: 101; /* Above mobile menu */
  position: relative;
}

.logo-img-full {
  width: 320px;
  height: auto;
  object-fit: contain;
  transition: width 0.4s ease;
}

#header.scrolled .logo-img-full {
  width: 240px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(7,16,26,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 101; /* Above mobile menu */
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  position: absolute;
  transition: all 0.3s ease;
  left: 0;
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }

.mobile-toggle.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* Mobile Nav Menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(244, 240, 230, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav .nav-link {
  font-size: 1.5rem;
  color: var(--ink);
}

.mobile-nav .btn {
  margin-top: 1rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--ink);
  padding: 120px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: bgZoom 20s ease-out forwards;
}

@keyframes bgZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 240, 230, 0.95) 0%, rgba(244, 240, 230, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.kicker {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2rem;
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(201, 164, 91, 0.3);
  border-radius: 999px;
  background: rgba(201, 164, 91, 0.05);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.hero p {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.stat span {
  font-size: 0.75rem;
  color: rgba(7,16,26,0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Trust Section */
.trust {
  padding: 4rem 0;
  background: var(--cream);
  color: var(--ink);
  border-bottom: 1px solid var(--border-dark);
}

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

.trust-card {
  padding-right: 2rem;
}

.trust-card .num {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.trust-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.trust-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Generic Section Styles */
.section {
  padding: 8rem 0;
}

.dark-section {
  background: var(--ink);
  color: var(--white);
}

.light-section {
  background: var(--cream);
}

.section-header {
  margin-bottom: 4rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 800px;
}

.section .lead {
  font-size: 1.1rem;
  color: #556;
  max-width: 700px;
  margin-top: 1.5rem;
}

.dark-section .lead {
  color: var(--text-muted);
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 600px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.about-panel:hover .about-img {
  transform: scale(1.05);
}

.about-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,17,23,0.9) 0%, transparent 60%);
}

.about-panel .quote {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--white);
  line-height: 1.2;
}

.about-copy p {
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

/* Services */
.glow-bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 164, 91, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  border: 1px solid var(--border-dark);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(11,17,23,0.08);
  border-color: rgba(201, 164, 91, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-card .intro {
  color: #556;
  margin-bottom: 2rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--border-dark);
  font-size: 0.95rem;
  color: #445;
}

.service-list li strong {
  color: var(--ink);
  font-weight: 600;
}

/* Reviews & Marquee */
.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.text-center h2 {
  margin: 0 auto;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

/* Optional: Fading edges for the marquee */
.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10vw;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll 35s linear infinite;
  padding-left: 2rem; /* Initial offset padding */
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Since we have exactly 2 identical sets, moving -50% shifts exactly one full set */
    transform: translateX(calc(-50% - 1rem));
  }
}

.review-card {
  width: 400px;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(11,17,23,0.06);
  border-color: rgba(201, 164, 91, 0.4);
}

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

.review-card .quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: #445;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.review-card .author strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.review-card .author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11,17,23,0.08);
}

.blog-img-link {
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-content {
  padding: 2.5rem;
}

.blog-date {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.blog-card h3 a {
  transition: color 0.3s ease;
}

.blog-card h3 a:hover {
  color: var(--gold);
}

.blog-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.blog-read-more .arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  color: var(--gold);
}

.blog-read-more:hover .arrow {
  transform: translateX(4px);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 3rem;
  grid-column: 1 / -1; /* in case it's placed inside a grid */
}

.page-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.page-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.page-dot:hover:not(.active) {
  background: rgba(201, 164, 91, 0.5);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-step {
  padding: 2.5rem;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 164, 91, 0.4);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Spotlight */
.spotlight {
  position: relative;
  padding: 10rem 0;
  color: var(--ink);
  overflow: hidden;
}

.spotlight-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--cream); /* Fallback */
}

.spotlight-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  opacity: 0.5;
}

.spot-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.spot-box {
  background: rgba(244, 240, 230, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 3.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
}

.spot-box h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.spot-box p {
  color: rgba(7,16,26,0.8);
  margin-bottom: 2.5rem;
}

/* CTA */
.cta {
  background: var(--white);
  padding-bottom: 8rem;
}

.cta-inner {
  background: var(--ink);
  border: 1px solid var(--border-dark);
  border-radius: 30px;
  padding: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(11, 17, 23, 0.08);
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(7, 16, 26, 0.1);
  padding-top: 2.5rem;
}

.contact-item strong {
  display: block;
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.contact-item a, .contact-item span {
  font-size: 1.1rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-form-wrapper {
  flex: 1;
  max-width: 500px;
  width: 100%;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border-dark);
  padding: 3rem;
  border-radius: var(--radius);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: rgba(7, 16, 26, 0.7);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(244, 240, 230, 0.5);
  border: 1px solid rgba(7, 16, 26, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(11, 17, 23, 0.8);
  box-shadow: 0 0 0 3px rgba(201, 164, 91, 0.15);
}

.form-control::placeholder {
  color: rgba(7, 16, 26, 0.4);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23c9a45b%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 16px top 50%;
  background-size: 12px auto;
}

select.form-control option {
  background: var(--ink);
  color: var(--white);
}

.btn-block {
  width: 100%;
  margin-top: 1rem;
}

/* Footer */
footer {
  background: var(--cream);
  color: var(--ink);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}

.foot-top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-dark);
}

.foot-brand {
  max-width: 400px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.foot-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--gold);
}

.foot-nav {
  display: flex;
  gap: 5rem;
}

.nav-col h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.nav-col a, .foot-text {
  display: block;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-col a:hover {
  color: var(--gold);
}

.foot-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #667;
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a:hover {
  color: var(--ink);
}

/* Animations & Scroll Reveals */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active, .reveal-up.active, .reveal-left.active, .reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
  .about-grid, .spot-grid, .cta-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  
  .about-panel {
    min-height: 400px;
    width: 100%;
  }
  
  .cta-inner {
    padding: 3rem;
    text-align: center;
  }
  
  .contact-details {
    align-items: center;
  }
  
  .contact-form-wrapper {
    max-width: 100%;
    padding: 2rem;
  }
}

@media (max-width: 850px) {
  .desktop-nav, .nav-actions .btn {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .trust-grid, .services-grid, .process-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-card {
    padding-right: 0;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .stat strong {
    font-size: 2rem;
  }
  
  .foot-top {
    flex-direction: column;
    gap: 2rem;
  }
  
  .foot-nav {
    flex-direction: column;
    gap: 2rem;
  }
  
  .foot-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .spotlight {
    padding: 5rem 0;
  }
  
  .spot-box {
    padding: 2.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .cta-inner {
    padding: 2.5rem 1.5rem;
  }
  
  .actions {
    flex-direction: column;
    width: 100%;
  }
  
  .actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .stat:last-child {
    grid-column: span 2;
  }
  
  .about-panel {
    min-height: 300px;
  }
  
  .about-panel .quote {
    font-size: 1.3rem;
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .logo-img {
    width: 36px;
    height: 36px;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--ink);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 48px, var(--max));
  margin: auto;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
  }
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc; /* lighter than text-muted for dark bg */
}

.cookie-content a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}
