/* ===== DESIGN SYSTEM ===== */
:root {
  --navy: #0C3B7F;
  --navy-deep: #071e42;
  --navy-light: #133f85;
  --teal: #12709C;
  --teal-dark: #0d5a7d;
  --teal-light: #1a8ab8;
  --gold: #F0AA0C;
  --gold-light: #ffc844;
  --gold-dark: #d4960a;
  --white: #ffffff;
  --off-white: #f0f4f8;
  --gray-100: #e8edf3;
  --gray-200: #c5d0de;
  --gray-600: #5a6b80;
  --gray-800: #2a3a4d;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 30px rgba(240,170,12,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "arial black", "Arial Black", sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

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

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

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

/* ===== UTILITIES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--gold);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(7, 30, 66, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: height var(--transition);
}

.header.scrolled .header-inner {
  height: 70px;
}

.header-brand h1 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--white);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.2;
}

.header-brand h1 a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-brand h1 a::before {
  content: "";
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background-image: url('../images/logo.jpg');
  background-size: cover;
  background-position: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-taglines {
  display: none;
}

.header-nav-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.menu-toggle:hover {
  background: rgba(255,255,255,0.1);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,30,66,0.85) 0%, rgba(18,112,156,0.6) 50%, rgba(7,30,66,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(120px, 15vh, 180px) clamp(20px, 4vw, 60px) clamp(60px, 10vh, 120px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 650px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240,170,12,0.15);
  border: 1px solid rgba(240,170,12,0.3);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero h2 .gold {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 16px 36px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-primary .arrow {
  transition: transform var(--transition);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.25);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.hero-logo-wrap {
  position: relative;
}

.hero-logo {
  width: clamp(240px, 22vw, 340px);
  height: clamp(240px, 22vw, 340px);
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 4px solid rgba(240,170,12,0.4);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(240,170,12,0.15);
}

.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: -15px;
  border: 2px dashed rgba(240,170,12,0.2);
  border-radius: calc(var(--radius-lg) + 10px);
  animation: spin-slow 30s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-stats {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px) clamp(40px, 6vh, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.hero-stat {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
}

.hero-stat:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.hero-stat:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; }

.hero-stat .number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gold);
  padding: 0;
  overflow: hidden;
}

.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 50px);
  padding: 20px clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
}

.trust-bar h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  color: var(--navy-deep);
  font-weight: 400;
  white-space: nowrap;
}

.trust-bar .divider {
  width: 6px;
  height: 6px;
  background: var(--navy-deep);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}

.trust-bar .btn-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-deep);
  color: var(--gold);
  padding: 10px 28px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}

.trust-bar .btn-trust:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ===== EXCELLENCE ===== */
.excellence {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: clamp(60px, 8vw, 100px) 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.excellence::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240,170,12,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.excellence h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  position: relative;
}

.excellence h2 .highlight {
  color: var(--gold);
  position: relative;
}

.excellence h2 .highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.5;
}

/* ===== COMMITMENT ===== */
.commitment {
  background: var(--teal);
  padding: 0 20px clamp(60px, 8vw, 100px);
  color: var(--white);
}

.commitment-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

.commitment-visual {
  position: relative;
}

.commitment-visual .img-stack {
  position: relative;
  padding: 30px;
}

.commitment-visual .logo-side {
  width: 130px;
  height: 130px;
  border-radius: var(--radius-md);
  border: 3px solid var(--gold);
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.commitment-visual .mechanic-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(240,170,12,0.3);
  display: block;
}

.commitment-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 24px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
}

.commitment-text h2 em {
  color: var(--gold);
  font-style: normal;
}

.commitment-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.85);
}

.commitment-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.commitment-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  padding: 12px 18px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  transition: all var(--transition);
}

.commitment-list li:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(6px);
}

.commitment-list li .check {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== PROCESS ===== */
.process {
  background: linear-gradient(180deg, var(--teal-dark) 0%, var(--navy-deep) 100%);
  padding: clamp(60px, 8vw, 100px) 20px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,170,12,0.3), transparent);
}

.process-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto clamp(40px, 6vw, 70px);
}

.process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 16px;
}

.process-header h2 em {
  color: var(--gold);
  font-style: normal;
}

.process-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.process-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.process-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-8px);
  border-color: rgba(240,170,12,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.process-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  box-shadow: var(--shadow-gold);
}

.process-card .step-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 3px solid rgba(240,170,12,0.3);
  transition: border-color var(--transition);
}

.process-card:hover .step-img {
  border-color: var(--gold);
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: 1px;
}

.process-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.process-attention {
  text-align: center;
  margin-top: clamp(30px, 4vw, 50px);
  font-family: var(--font-display);
  color: var(--gold);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: 3px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.process-attention::before,
.process-attention::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--gold);
  opacity: 0.4;
}

/* ===== GOLD BAR ===== */
.gold-bar {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: clamp(30px, 4vw, 50px) 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gold-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.03) 40px,
    rgba(255,255,255,0.03) 80px
  );
}

.gold-bar h2 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  position: relative;
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--navy-deep);
  padding: clamp(60px, 8vw, 100px) 20px;
  color: var(--white);
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,170,12,0.3), transparent);
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}

.services-visual {
  position: relative;
}

.services-visual .img-stack {
  position: relative;
  padding: 20px;
}

.services-visual .logo-side {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  border: 3px solid var(--gold);
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.services-visual .mechanic-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(240,170,12,0.2);
}

.services-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 20px;
}

.services-content h2 em {
  color: var(--gold);
  font-style: normal;
}

.services-content > p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 28px 0 32px;
}

.service-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(240,170,12,0.08);
  border: 1px solid rgba(240,170,12,0.15);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: all var(--transition);
}

.service-tag:hover {
  background: rgba(240,170,12,0.15);
  border-color: rgba(240,170,12,0.3);
  transform: translateX(4px);
}

.service-tag .icon {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.services-cta {
  margin-top: 8px;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  border: 2px solid var(--gold);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--teal);
  padding: clamp(60px, 8vw, 100px) 20px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240,170,12,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials-inner > h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(40px, 5vw, 60px);
  color: var(--white);
  font-weight: 400;
  text-align: center;
}

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

.testimonial {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition);
}

.testimonial:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.testimonial .quote-icon {
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
  opacity: 0.8;
}

.testimonial .name {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.testimonial .stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial blockquote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-style: normal;
}

/* ===== MAP SECTION ===== */
.map-section {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: clamp(60px, 8vw, 100px) 20px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.map-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 32px;
  color: var(--white);
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.map-section h2 .gold { color: var(--gold); }

.map-cta {
  margin-top: 10px;
}

/* ===== BLOG ===== */
.blog-preview {
  background: var(--navy-deep);
  padding: clamp(60px, 8vw, 100px) 20px;
  color: var(--white);
}

.blog-preview-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.blog-header {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 50px);
}

.blog-preview h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 12px;
}

.blog-preview h2 span {
  color: var(--gold);
}

.blog-preview-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.blog-card {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  border-color: rgba(240,170,12,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.blog-card-content {
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card .meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  padding: clamp(50px, 6vw, 80px) 20px 0;
  color: var(--white);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,170,12,0.4), transparent);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
}

.footer-brand .footer-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(240,170,12,0.3);
  margin-bottom: 16px;
  object-fit: cover;
}

.footer-brand h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: 1px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 4px;
  line-height: 1.6;
}

.footer-brand .tagline {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-contact h4,
.footer-links h4 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-contact p,
.footer-contact a,
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
  transition: all var(--transition);
  line-height: 1.6;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
}

.footer-partner {
  max-width: 1280px;
  margin: clamp(30px, 4vw, 50px) auto 0;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-partner a {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color var(--transition);
  opacity: 0.7;
}

.footer-partner a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ===== INNER PAGES ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: clamp(140px, 18vh, 200px) 20px clamp(60px, 8vh, 100px);
  text-align: center;
}

.page-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
}

/* About page */
.about-section {
  background: var(--white);
  padding: clamp(50px, 6vw, 80px) 20px;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 28px;
  text-align: center;
  font-weight: 400;
}

.about-inner p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-inner p strong {
  color: var(--navy);
  font-weight: 700;
}

.about-inner img {
  width: 100%;
  margin: 30px auto;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-100);
}

/* Contact page */
.contact-section {
  background: var(--white);
  padding: clamp(50px, 6vw, 80px) 20px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 400;
}

.contact-intro {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.contact-info img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.contact-details p {
  color: var(--gray-600);
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-details a {
  color: var(--navy);
  font-weight: 600;
  transition: color var(--transition);
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 14px;
}

.form-row input { flex: 1; }

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  background: var(--off-white);
  border: 2px solid transparent;
  color: var(--gray-800);
  padding: 14px 18px;
  font-size: 1rem;
  width: 100%;
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn-cta,
.contact-form .btn-primary {
  align-self: flex-start;
}

.form-success {
  display: none;
  color: var(--teal);
  font-weight: 600;
}

.form-error {
  display: none;
  color: #e05252;
  font-weight: 600;
}

/* Netlify Forms honeypot - must stay hidden from real users */
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form button[type="submit"][disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-map {
  margin-top: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gray-100);
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* Services page */
.services-page {
  background: var(--white);
  padding: clamp(50px, 6vw, 80px) 20px;
}

.services-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-page h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 40px;
  font-weight: 400;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 36px 28px;
  text-align: center;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

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

.service-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--navy);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 400;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Legal pages */
.legal-section {
  background: var(--white);
  padding: clamp(50px, 6vw, 80px) 20px;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 28px;
  text-align: center;
  font-weight: 400;
}

.legal-inner h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin: 28px 0 10px;
  font-weight: 700;
}

.legal-inner p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text { max-width: 100%; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-logo-wrap { display: flex; justify-content: center; }

  .hero-logo-wrap::after { display: none; }

  .commitment-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .commitment-visual .mechanic-img {
    max-width: 100%;
    height: 280px;
  }

  .commitment-visual .logo-side {
    width: 100px;
    height: 100px;
  }

  .services-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .services-visual .mechanic-img {
    max-width: 100%;
    height: 280px;
  }

  .services-visual .logo-side {
    width: 100px;
    height: 100px;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card img {
    min-height: 220px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Header */
  .menu-toggle {
    display: block;
  }

  .header-inner {
    height: 70px;
  }

  .header.scrolled .header-inner {
    height: 60px;
  }

  .header-right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 30, 66, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 20px;
    flex-direction: column;
    gap: 12px;
    border-bottom: 2px solid rgba(240,170,12,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }

  .header-right.open {
    display: flex;
  }

  .header-nav-row {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: rgba(255,255,255,0.04);
  }

  .nav-links a.active,
  .nav-links a:hover {
    background: rgba(240,170,12,0.15);
    color: var(--gold);
  }

  .header-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
    margin-top: 4px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding: 120px 20px 40px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .hero h2 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin: 0 auto 30px;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .hero-logo-wrap {
    display: flex;
    justify-content: center;
  }

  .hero-logo {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-md);
  }

  .hero-logo-wrap::after { display: none; }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 20px 20px 30px;
  }

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

  .hero-stat .number {
    font-size: 24px;
  }

  .hero-stat .label {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .hero-stat:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
  .hero-stat:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; }

  /* Trust Bar */
  .trust-bar-inner {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

  .trust-bar .divider { display: none; }

  .trust-bar h3 {
    font-size: clamp(14px, 4vw, 18px);
  }

  /* Excellence */
  .excellence {
    padding: 50px 20px;
  }

  .excellence h2 {
    font-size: clamp(24px, 7vw, 36px);
    line-height: 1.35;
  }

  /* Commitment */
  .commitment {
    padding: 0 20px 50px;
  }

  .commitment-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .commitment-visual {
    display: flex;
    justify-content: center;
  }

  .commitment-visual .img-stack {
    padding: 15px;
    max-width: 100%;
  }

  .commitment-visual .mechanic-img {
    width: 100%;
    max-width: 320px;
    height: 250px;
    margin-left: 30px;
    margin-top: 30px;
  }

  .commitment-visual .logo-side {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
  }

  .commitment-text h2 {
    font-size: clamp(24px, 7vw, 36px);
    text-align: center;
  }

  .commitment-text p {
    text-align: center;
    font-size: 0.95rem;
  }

  .commitment-list li {
    font-size: 0.9rem;
    padding: 10px 14px;
  }

  .commitment-list li .check {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .section-label {
    justify-content: center !important;
    display: flex !important;
    font-size: 0.7rem;
  }

  /* Process */
  .process {
    padding: 50px 20px;
  }

  .process-header h2 {
    font-size: clamp(24px, 7vw, 36px);
  }

  .process-header p {
    font-size: 0.95rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
  }

  .process-card {
    padding: 30px 24px;
  }

  .process-card .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 18px;
  }

  .process-card .step-img {
    width: 110px;
    height: 110px;
    margin-bottom: 18px;
  }

  .process-card h3 {
    font-size: 1rem;
  }

  .process-card p {
    font-size: 0.9rem;
  }

  .process-attention {
    font-size: clamp(16px, 5vw, 22px);
    letter-spacing: 2px;
    margin-top: 30px;
  }

  .process-attention::before,
  .process-attention::after {
    width: 30px;
  }

  /* Gold Bar */
  .gold-bar {
    padding: 24px 20px;
  }

  .gold-bar h2 {
    font-size: clamp(18px, 5vw, 28px);
    line-height: 1.4;
  }

  /* Services */
  .services-section {
    padding: 50px 20px;
  }

  .services-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-visual {
    display: flex;
    justify-content: center;
  }

  .services-visual .img-stack {
    padding: 10px;
  }

  .services-visual .mechanic-img {
    width: 100%;
    max-width: 280px;
    height: 220px;
    margin-left: 30px;
    margin-top: 30px;
  }

  .services-visual .logo-side {
    width: 80px;
    height: 80px;
  }

  .services-content h2 {
    font-size: clamp(24px, 7vw, 36px);
    text-align: center;
  }

  .services-content > p {
    font-size: 0.95rem;
    text-align: center;
  }

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

  .service-tag {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .services-cta {
    text-align: center;
  }

  .btn-outline-gold {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  /* Testimonials */
  .testimonials {
    padding: 50px 20px;
  }

  .testimonials-inner > h2 {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 30px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
  }

  .testimonial {
    padding: 28px 22px;
  }

  .testimonial .quote-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .testimonial blockquote {
    font-size: 0.9rem;
  }

  /* Map */
  .map-section {
    padding: 50px 20px;
  }

  .map-section h2 {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 24px;
  }

  .map-cta .btn-primary {
    width: 100%;
    max-width: 320px;
  }

  /* Blog */
  .blog-preview {
    padding: 50px 20px;
  }

  .blog-preview h2 {
    font-size: clamp(24px, 7vw, 36px);
  }

  .blog-preview-desc {
    font-size: 0.95rem;
  }

  .blog-card {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }

  .blog-card img {
    min-height: 180px;
  }

  .blog-card-content {
    padding: 24px 20px;
  }

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

  /* Footer */
  .footer {
    padding: 40px 20px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-brand .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-contact a {
    display: inline-block;
  }

  .footer-partner {
    margin-top: 24px;
  }

  /* Contact page */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-form .btn-primary {
    width: 100%;
  }

  .contact-intro {
    font-size: 0.95rem;
  }

  /* Services page cards */
  .cards-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }

  .service-card {
    padding: 28px 22px;
  }

  /* Inner page hero */
  .page-hero {
    padding: 120px 20px 50px;
  }

  .page-hero h2 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .page-hero p {
    font-size: 0.95rem;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero h2 {
    font-size: 26px;
  }

  .hero-logo {
    width: 150px;
    height: 150px;
  }

  .hero-stat .number {
    font-size: 20px;
  }

  .hero-stat .label {
    font-size: 0.6rem;
  }

  .commitment-text h2,
  .services-content h2,
  .process-header h2,
  .testimonials-inner > h2,
  .map-section h2,
  .blog-preview h2,
  .excellence h2 {
    font-size: 24px;
  }

  .gold-bar h2 {
    font-size: 18px;
  }

  .commitment-visual .mechanic-img {
    height: 200px;
  }
}

/* ==========================================================================
   STORE
   ========================================================================== */

.store-section {
  background: var(--off-white);
  padding: clamp(50px, 7vw, 90px) 20px;
}

.store-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.store-cat {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--navy-deep);
  font-weight: 400;
  margin: 46px 0 22px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

.store-cat:first-of-type { margin-top: 0; }

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 26px;
  margin-bottom: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.product-card-img {
  aspect-ratio: 4 / 3;
  background: var(--navy-deep);
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.3;
  color: var(--navy-deep);
  font-weight: 400;
  margin-bottom: 10px;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}

.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.product-card-foot .price {
  font-family: var(--font-display);
  font-size: 1.32rem;
  color: var(--gold-dark);
}

.product-card-foot .view {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
}

.store-note {
  margin-top: 54px;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
  text-align: center;
}

.store-note h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 400;
  margin-bottom: 14px;
}

.store-note p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 24px;
}

.store-note a { color: var(--gold); }
.store-note .btn-primary { color: var(--navy-deep); }

/* ---------- single product ---------- */

.product-section {
  background: var(--white);
  padding: clamp(46px, 6vw, 80px) 20px;
}

.product-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.product-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.product-media img {
  width: 100%;
  display: block;
}

.product-cat {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  background: var(--off-white);
  border-radius: var(--radius-full);
  padding: 7px 15px;
  margin-bottom: 16px;
}

.product-detail h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 38px);
  color: var(--navy-deep);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
}

.product-price {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.product-blurb {
  font-size: 1.03rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 22px;
}

.product-bullets {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.product-bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 11px;
  color: var(--gray-800);
  line-height: 1.6;
}

.product-bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-long {
  max-width: 820px;
  margin: clamp(40px, 6vw, 70px) auto 0;
  padding-top: clamp(30px, 4vw, 48px);
  border-top: 1px solid var(--gray-100);
}

.product-long h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 26px);
  color: var(--navy-deep);
  font-weight: 400;
  margin-bottom: 16px;
}

.product-long p {
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 18px;
}

.product-long a { color: var(--teal); }

/* ==========================================================================
   BLOG
   ========================================================================== */

.blog-index {
  background: var(--off-white);
  padding: clamp(50px, 7vw, 90px) 20px;
}

.blog-index-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

.post-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.post-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-deep);
}

.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.post-card:hover .post-card-img img { transform: scale(1.05); }

.post-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-meta {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 10px;
}

.post-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--navy-deep);
  font-weight: 400;
  margin-bottom: 12px;
}

.post-card-body p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
}

.post-read {
  margin-top: 16px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ---------- single post ---------- */

.post {
  background: var(--white);
  padding: clamp(40px, 6vw, 72px) 20px clamp(50px, 7vw, 90px);
}

.post-hero {
  max-width: 780px;
  margin: 0 auto clamp(26px, 4vw, 40px);
  text-align: center;
}

.post-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(25px, 4vw, 42px);
  color: var(--navy-deep);
  font-weight: 400;
  line-height: 1.22;
  margin-bottom: 18px;
}

.post-lede {
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  color: var(--gray-600);
  line-height: 1.75;
}

.post-figure {
  max-width: 940px;
  margin: 0 auto clamp(30px, 4vw, 50px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-figure img {
  width: 100%;
  display: block;
}

.post-body {
  max-width: 740px;
  margin: 0 auto;
}

.post-body h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 25px);
  color: var(--navy-deep);
  font-weight: 400;
  margin: 34px 0 14px;
}

.post-body > p {
  color: var(--gray-800);
  line-height: 1.9;
  font-size: 1.02rem;
}

.post-cta {
  margin-top: 46px;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  text-align: center;
}

.post-cta h3 {
  color: var(--white);
  margin-top: 0;
}

.post-cta p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 22px;
}

.post-cta a { color: var(--gold); }
.post-cta .btn-primary { color: var(--navy-deep); }

.post-nav {
  max-width: 740px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.post-nav a {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--navy-deep);
  font-size: 0.92rem;
  line-height: 1.45;
  transition: all var(--transition);
}

.post-nav a:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.post-nav a span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 7px;
}

.post-nav-next { text-align: right; }
.post-nav-prev:only-child { grid-column: 1 / -1; }

.post-back {
  max-width: 740px;
  margin: 34px auto 0;
  text-align: center;
}

@media (max-width: 860px) {
  .product-inner { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
}
