/* ========================================
   ACHKID HORSE RIDING
   Modern Coastal Experience
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg-sand);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── LAYOUT ── */
.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 clamp(0.5rem, 3vw, 2rem);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ocean);
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--clay);
  border-radius: 1px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(200, 111, 61, 0.3);
}
.btn-primary:hover {
  background: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-ocean {
  background: var(--ocean);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(12, 74, 94, 0.25);
}
.btn-ocean:hover {
  background: var(--ocean-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,0.92);
  color: var(--ocean);
  border: 1.5px solid rgba(12, 74, 94, 0.2);
}
.btn-outline:hover {
  background: var(--white);
  border-color: var(--ocean);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--ocean);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}


/* ========================================
   HEADER
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 242, 235, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(247, 242, 235, 0.97);
  box-shadow: 0 4px 24px rgba(12, 74, 94, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--ocean);
  letter-spacing: -0.01em;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clay);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--ocean); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--ocean); }
.nav-links a.active::after { width: 100%; }

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

.header-cta {
  background: var(--ocean);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
}
.header-cta:hover {
  background: var(--ocean-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(12, 74, 94, 0.25);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  margin-right: 12px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ocean);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
}

.lang-btn .chevron {
  font-size: 0.6rem;
  color: var(--muted);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  min-width: 80px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s var(--ease-out);
}

.lang-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}

.lang-dropdown a:hover {
  background: var(--bg-sand);
  color: var(--ocean);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 110;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ocean);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.menu-toggle span:nth-child(1) { margin-bottom: 6px; }
.menu-toggle span:nth-child(3) { margin-top: 6px; }

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 6px);
}
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -6px);
}


/* ========================================
   HERO (Split Layout)
   ======================================== */

.hero {
  padding-top: 72px; /* Header offset */
  background: var(--bg-sand);
}

.hero-image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  background: var(--bg-cream);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content-wrapper {
  padding: 4rem 0;
  color: var(--ocean);
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ocean-pale);
  color: var(--ocean);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--ocean);
  margin-bottom: 1.25rem;
  text-shadow: none;
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Quick Stats Row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 3.5rem;
}

.hero-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ocean);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

@media (min-width: 900px) {
  .hero {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    min-height: 100vh;
    padding-top: 72px; 
  }

  .hero-image-wrapper {
    width: 50%;
    height: auto;
    position: relative;
    top: 0;
    display: block;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-content-wrapper {
    width: 50%;
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content {
    margin: 0 auto;
    text-align: left;
    max-width: 540px;
  }

  .hero-description {
    margin-left: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
  }
}


/* ========================================
   EXPERIENCES
   ======================================== */

.experiences {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(180deg, var(--bg-sand) 0%, var(--bg-cream) 100%);
}

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

.section-header h2 {
  margin-top: 0.25rem;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Scroll Arrows */
.scroll-arrows {
  display: flex;
  gap: 8px;
}

.scroll-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  color: var(--ocean);
  font-size: 1.1rem;
}
.scroll-arrow:hover {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
  transform: scale(1.05);
}

/* Experiences Scroller */
.experiences-scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 28px;
  margin: 0 -4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.experiences-scroller::-webkit-scrollbar { display: none; }

/* Card */
.experience-card {
  flex: 0 0 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  border: 1px solid var(--line);
  scroll-snap-align: start;
  position: relative;
}

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

.experience-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.experience-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.experience-card:hover .experience-card-image img {
  transform: scale(1.08);
}

.experience-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.experience-card-content {
  padding: 1.25rem 1.5rem;
}

.experience-card-content:last-child {
  padding-top: 0;
}

.experience-card-price {
  display: inline-block;
  background: var(--ocean-pale);
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.experience-card h3 {
  margin-bottom: 0.25rem;
  color: var(--ocean);
  font-size: 1.4rem;
}

.experience-card-duration {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0;
}

.view-details {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clay);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap 0.3s var(--ease-out), color 0.2s;
}

.experience-card:hover .view-details {
  gap: 12px;
  color: var(--clay-dark);
}

/* ========================================
   REVIEWS
   ======================================== */

.reviews {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ocean-pale);
  color: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--serif);
}

.reviewer-info strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.review-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.review-stars {
  color: #FBBC04; /* Google Maps Yellow */
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.review-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}

/* ========================================
   ABOUT
   ======================================== */

.about {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--ocean);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,0.1);
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content .section-label {
  color: var(--sun);
}
.about-content .section-label::before {
  background: var(--sun);
}

.about-content h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.about-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--sun);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.about-features span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


/* ========================================
   CONTACT / CTA
   ======================================== */

.contact {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, var(--clay) 0%, var(--ocean) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
}

.contact > .container > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.contact .btn {
  position: relative;
  font-size: 0.9rem;
  padding: 18px 40px;
}


/* ========================================
   FOOTER
   ======================================== */

.footer {
  padding: 2rem 0 6rem;
  background: var(--bg-warm);
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.footer strong {
  color: var(--ocean);
}

.footer a {
  color: var(--clay);
  font-weight: 600;
  transition: color 0.2s;
}
.footer a:hover { color: var(--clay-dark); }



/* ========================================
   MODAL
   ======================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 42, 54, 0.7);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease-out);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s var(--ease-out);
  position: relative;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: all 0.25s var(--ease-out);
  color: var(--ink);
}
.modal-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--ocean-pale);
}

.modal-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-content { padding: 1.75rem; }

.modal-price {
  display: inline-block;
  background: var(--ocean);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.modal h2 {
  margin-bottom: 0.35rem;
  font-size: 1.7rem;
  color: var(--ocean);
}

.modal-duration {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.modal-description {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.modal-includes {
  background: var(--bg-sand);
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
}

.modal-includes h4 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ocean);
}

.modal-includes ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.modal-includes li {
  color: var(--ink-soft);
  font-size: 0.88rem;
  padding-left: 1.5rem;
  position: relative;
}

.modal-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clay);
  font-weight: 700;
}

.modal .btn { width: 100%; justify-content: center; }


/* ========================================
   MOBILE NAV OVERLAY
   ======================================== */

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 42, 54, 0.5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
  backdrop-filter: blur(4px);
}

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

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 85%);
  height: 100vh;
  background: var(--bg-cream);
  z-index: 95;
  padding: 100px 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: right 0.45s var(--ease-out);
  box-shadow: -16px 0 48px rgba(0,0,0,0.12);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav > a:not(.btn) {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ocean);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.3s;
}

.mobile-nav > a:not(.btn):hover {
  color: var(--clay);
  padding-left: 12px;
}

.mobile-nav .btn {
  margin-top: auto;
  margin-bottom: 2rem;
  width: 100%;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 16px;
}


/* ========================================
   ANIMATIONS
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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


/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .about-image {
    max-width: 380px;
    margin: 0 auto;
  }

  .about-features {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 380px;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-content-wrapper {
    padding-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hero-stat {
    padding: 10px 8px;
  }

  .hero-stat strong {
    font-size: 1.3rem;
  }

  .experience-card {
    flex: 0 0 280px;
  }

  .modal-includes ul {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: 5rem;
  }

  .contact {
    padding: 3.5rem 0;
  }

  .about-content {
    text-align: left;
  }
}

@media (max-width: 400px) {
  h1 { font-size: 2.4rem; }
  .hero-tag { font-size: 0.68rem; padding: 6px 12px; }
}

/* ========================================
   GOOGLE TRANSLATE OVERRIDES
   ======================================== */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon {
    display: none !important;
}
body {
    top: 0px !important;
}
#goog-gt-tt {
    display: none !important;
}
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}