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

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3460;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e9c8;
  --cream: #f8f4ec;
  --white: #ffffff;
  --text-light: #a0aec0;
  --text-mid: #cbd5e0;
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0.8rem 4rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav-logo span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-logo span:last-child {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

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

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--gold) !important;
  padding: 0.5rem 1.4rem !important;
  color: var(--gold) !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-cta::after { display: none !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

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

/* ── DIVIDER ── */
.gold-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

.gold-line.left { margin: 1.5rem 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.35s;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.35s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26, 52, 96, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, #0a1628 0%, #112240 50%, #0d1e38 100%);
}

.hero-ship {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 65%;
  max-width: 800px;
  opacity: 0.06;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 4rem 4rem;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-tag::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  margin-top: 4rem;
  padding-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.stat-item {
  padding: 0 3rem 0 0;
  border-right: 1px solid rgba(201,168,76,0.15);
  margin-right: 3rem;
}

.stat-item:last-child { border-right: none; margin-right: 0; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  writing-mode: vertical-rl;
}

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

/* ── ABOUT SECTION ── */
.about-section {
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.2);
  position: relative;
  overflow: hidden;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,168,76,0.15);
  z-index: 1;
}

.about-img-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon-large {
  font-size: 6rem;
  opacity: 0.15;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px; height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
}

.about-content { padding-right: 1rem; }

.about-content p {
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.pillar {
  padding: 1.2rem;
  border: 1px solid rgba(201,168,76,0.12);
  background: rgba(201,168,76,0.03);
  transition: border-color 0.3s;
}

.pillar:hover { border-color: rgba(201,168,76,0.3); }

.pillar-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
.pillar-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.pillar-text { font-size: 0.8rem; color: var(--text-light); }

/* ── SERVICES SECTION ── */
.services-section {
  padding: 8rem 4rem;
  background: var(--navy-mid);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.services-header .gold-line { margin: 1.2rem auto; }

.services-header p {
  color: var(--text-mid);
  font-weight: 300;
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(201,168,76,0.12);
}

.service-card {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}

.service-card:hover { background: rgba(201,168,76,0.04); }
.service-card:hover::before { width: 100%; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s;
}

.service-card:hover .service-num { color: rgba(201,168,76,0.15); }

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

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.service-text {
  font-size: 0.83rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
}

/* ── EXPERTISE SECTION ── */
.expertise-section {
  padding: 8rem 4rem;
  position: relative;
}

.expertise-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.expertise-sticky { position: sticky; top: 6rem; }

.expertise-items { display: flex; flex-direction: column; gap: 0; }

.expertise-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s;
  cursor: default;
}

.expertise-item:first-child { border-top: 1px solid rgba(201,168,76,0.1); }

.expertise-item:hover { padding-left: 1rem; }

.expertise-idx {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.6;
  min-width: 2rem;
  padding-top: 0.2rem;
}

.expertise-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.expertise-body p {
  font-size: 0.83rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 8rem 4rem;
  background: var(--navy-mid);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.contact-info-item:hover .contact-icon {
  border-color: var(--gold);
}

.contact-info-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 300;
}

.contact-info-value a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  resize: none;
  appearance: none;
}

.form-group select option { background: var(--navy-mid); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.03);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(160,174,192,0.4); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--gold);
  background: rgba(201,168,76,0.05);
}

.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-success p { color: var(--text-mid); font-size: 0.85rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 3rem 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  display: block;
}

.footer-logo span:last-child {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

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

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

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.footer-copy {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.08);
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 4rem 5rem;
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #112240 100%);
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
}

.page-hero p {
  max-width: 500px;
  margin: 1rem auto 0;
  color: var(--text-mid);
  font-weight: 300;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 0.8rem 2rem; }
  .hero-content { padding: 8rem 2rem 4rem; }
  .about-section, .services-section, .expertise-section, .contact-section { padding: 6rem 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-inner { grid-template-columns: 1fr; gap: 3rem; }
  .expertise-sticky { position: static; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  footer { padding: 2.5rem 2rem; }
  .page-hero { padding: 9rem 2rem 4rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.8rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); padding: 0 0 1.5rem; margin: 0; }
  .stat-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .scroll-indicator { display: none; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  nav { padding: 1rem 1.2rem; }
  .hero-content { padding: 7rem 1.2rem 3rem; }
  .about-section, .services-section, .expertise-section, .contact-section { padding: 5rem 1.2rem; }
  footer { padding: 2rem 1.2rem; }
  .page-hero { padding: 8rem 1.2rem 3rem; }
}
