/* ============================================
   AURELIAN — Bespoke Luxury Travel
   Main Stylesheet
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  --midnight: #0B1D33;
  --navy: #132D4A;
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --ivory: #FAF7F2;
  --warm-white: #F5F0E8;
  --charcoal: #1A1A1A;
  --slate: #6B7280;
  --divider: #E0D8CC;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --container-max: 1200px;
  --section-padding: 120px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
  background-color: var(--ivory);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-smooth);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--midnight);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

.gold-divider.center {
  margin: 24px auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--midnight);
  transition: left 0.5s var(--ease-out);
  z-index: 0;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  color: var(--gold);
}

.btn-primary span,
.btn-primary {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost-dark {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-ghost-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transition: left 0.5s var(--ease-out);
  z-index: 0;
}

.btn-ghost-dark:hover::before {
  left: 0;
}

.btn-ghost-dark:hover {
  color: var(--midnight);
}

.btn-ghost-dark {
  position: relative;
  z-index: 1;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.5s var(--ease-out);
}

.nav-scrolled {
  background: rgba(11, 29, 51, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 1px 0 rgba(196, 162, 101, 0.1);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s var(--ease-smooth);
  position: relative;
}

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

.nav-link:hover {
  color: #fff;
}

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

.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 24px;
  transition: all 0.4s var(--ease-out);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--midnight);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 1px;
  background: #fff;
  transition: all 0.3s var(--ease-smooth);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--midnight);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

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

.mobile-cta {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 32px;
  margin-top: 16px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 29, 51, 0.5) 0%,
    rgba(11, 29, 51, 0.3) 40%,
    rgba(11, 29, 51, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 40px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Brand Story ---------- */
.brand {
  padding: var(--section-padding) 0;
  background: var(--ivory);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-image {
  position: relative;
}

.brand-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.brand-image-border {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}

.brand-lead {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: 20px;
}

.brand-body {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.9;
  margin-bottom: 40px;
}

.brand-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand-value {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.brand-value-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold);
  min-width: 28px;
  padding-top: 2px;
}

.brand-value h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--midnight);
  margin-bottom: 4px;
}

.brand-value p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ---------- Experiences ---------- */
.experiences {
  padding: var(--section-padding) 0;
  background: var(--warm-white);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.exp-card {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  transition: transform 0.5s var(--ease-out);
}

.exp-card:hover {
  transform: translateY(-4px);
}

.exp-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(11,29,51,0.4) 100%);
}

.exp-card-content {
  padding: 28px;
}

.exp-card-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.exp-card-content h3 {
  font-size: 1.3rem;
  color: var(--midnight);
  margin-bottom: 12px;
}

.exp-card-content p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
}

.exp-card-detail {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--navy);
  opacity: 0.7;
}

/* Cards without images (4-7) */
.exp-card:not(:has(.exp-card-img)) .exp-card-content {
  padding: 36px 28px;
  border-left: 1px solid var(--divider);
}

.exp-card:not(:has(.exp-card-img)) {
  background: var(--ivory);
}

/* ---------- Services ---------- */
.services {
  padding: var(--section-padding) 0;
  background: var(--midnight);
  color: #fff;
}

.services .section-eyebrow {
  color: var(--gold-light);
}

.services .section-title {
  color: #fff;
}

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

.service-item {
  padding: 40px 32px;
  border: 1px solid rgba(196, 162, 101, 0.15);
  transition: all 0.5s var(--ease-out);
}

.service-item:hover {
  border-color: var(--gold);
  background: rgba(196, 162, 101, 0.05);
}

.service-icon {
  color: var(--gold);
  margin-bottom: 24px;
}

.service-item h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 14px;
}

.service-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.services-cta-link {
  text-align: center;
  margin-top: 48px;
}

/* ---------- Value Proposition ---------- */
.value {
  padding: var(--section-padding) 0;
  background: var(--ivory);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.value-item {
  text-align: center;
  padding: 20px;
}

.value-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.value-item h3 {
  font-size: 1.2rem;
  color: var(--midnight);
  margin-bottom: 14px;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.8;
}

/* ---------- Stats ---------- */
.stats {
  padding: 80px 0;
  background: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat {
  color: #fff;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 500;
  color: var(--gold);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
}

.stat p {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--section-padding) 0;
  background: var(--warm-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.testimonial {
  padding: 40px 32px;
  background: var(--ivory);
  border: 1px solid var(--divider);
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.4;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--navy);
  margin-bottom: 28px;
}

.testimonial-footer {
  border-top: 1px solid var(--divider);
  padding-top: 20px;
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  font-style: normal;
  color: var(--midnight);
  display: block;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--slate);
}

/* Media Bar */
.media-bar {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--divider);
}

.media-bar-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 24px;
}

.media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.media-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--slate);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.media-logo:hover {
  opacity: 0.8;
}

/* ---------- Contact ---------- */
.contact {
  padding: var(--section-padding) 0;
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.9;
  margin-bottom: 48px;
}

.contact-process {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold);
  min-width: 28px;
  padding-top: 2px;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--midnight);
  margin-bottom: 4px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.7;
}

/* Form */
.contact-form-wrapper {
  background: var(--warm-white);
  border: 1px solid var(--divider);
  padding: 48px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--midnight);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid var(--divider);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s var(--ease-smooth);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--slate);
  margin-top: 16px;
  text-align: center;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  color: var(--gold);
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--midnight);
  margin-bottom: 16px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--midnight);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.3s;
}

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

.footer-contact p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  transition: all 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

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

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

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.35s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal:nth-child(7) { transition-delay: 0.45s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .brand-image img {
    height: 360px;
  }

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

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

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --container-max: 100%;
  }

  .container {
    padding: 0 24px;
  }

  .nav-links, .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .exp-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .media-logos {
    gap: 24px;
  }

  .brand-image-border {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 600px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.75rem;
  }
}
