/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #c0272d;
  --red-dark: #96101a;
  --red-soft: #fdf2f2;
  --blue:     #1a3a6b;
  --blue-mid: #1e4d8c;
  --blue-soft:#eef3fb;
  --white:    #ffffff;
  --off:      #f8f8f9;
  --border:   #e4e7ed;
  --text:     #111827;
  --muted:    #6b7280;
  --radius:   8px;
  --radius-lg:14px;
  --shadow:   0 2px 16px rgba(26,58,107,0.09);
  --shadow-lg:0 8px 40px rgba(26,58,107,0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; letter-spacing: -0.02em; line-height: 1.1; }

.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 500px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: var(--white); box-shadow: 0 4px 14px rgba(192,39,45,0.3); }
.btn-red:hover { background: var(--red-dark); box-shadow: 0 6px 20px rgba(192,39,45,0.38); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.08); }
.btn-outline-blue { background: transparent; color: var(--blue); border: 1.5px solid var(--border); }
.btn-outline-blue:hover { border-color: var(--blue); background: var(--blue-soft); }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  height: 72px;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-logo { display: flex; align-items: center; gap: 4px; text-decoration: none; }
.nav-logo img { height: 54px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  padding: 8px 14px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-soft); }

/* ── HERO ── */
.hero {
  background: var(--blue);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(192,39,45,0.15) 0%, transparent 30%),
    radial-gradient(ellipse 70% 60% at 85% 110%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--red);
}

.hero-left {
  padding: 80px 5vw 80px 8vw;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px 7px 10px;
  border-radius: 100px;
  margin-bottom: 30px;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); color: var(--white); font-weight: 700; margin-bottom: 22px; }
.hero h1 span { color: var(--red); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 430px; line-height: 1.75; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-right {
  position: relative;
  z-index: 2;
  padding: 80px 8vw 80px 4vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: floatIn 0.5s ease both;
}
.trust-card:nth-child(2) { animation-delay: 0.1s; margin-left: 20px; }
.trust-card:nth-child(3) { animation-delay: 0.2s; }
.trust-card:nth-child(4) { animation-delay: 0.3s; margin-left: 20px; }

@keyframes floatIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.tc-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.tc-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 3px; }
.tc-value { font-size: 0.97rem; font-weight: 600; color: var(--white); }

/* ── PHONE BAR ── */
.phone-bar {
  background: var(--red);
  padding: 16px 6vw;
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.phone-bar p { color: rgba(255,255,255,0.85); font-size: 0.92rem; font-weight: 500; }
.phone-bar a { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; text-decoration: none; }

/* ── SERVICES ── */
.services { padding: 110px 8vw; background: var(--white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card::after {
  content: attr(data-n); position: absolute; bottom: -10px; right: 16px;
  font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 700;
  color: var(--blue-soft); line-height: 1; pointer-events: none;
}

.sc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.sc-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--red-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0; transition: background 0.2s;
}
.service-card:hover .sc-icon { background: var(--red-soft); }
.sc-name { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 700; color: var(--blue); }
.sc-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ── STATS BAND ── */
.stats {
  background: var(--blue);
  padding: 64px 8vw;
  display: grid; grid-template-columns: repeat(3, minmax(0, 260px));
  justify-content: center;
  gap: 0;
}
.stat { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-num sup { font-size: 1.4rem; color: var(--red); vertical-align: super; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* ── ABOUT / VALUES ── */
.about {
  padding: 110px 8vw;
  background: var(--off);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo-col { display: flex; flex-direction: column; gap: 24px; }

.about-photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

/* Red/white/blue top stripe */
.about-photo-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 33%, var(--white) 33% 66%, var(--blue) 66%);
  z-index: 2;
}

.about-photo {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.about-blurb {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px 24px;
  border-left: 4px solid var(--red);
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  position: relative;
}

.about-blurb::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--red-soft);
  position: absolute;
  top: 8px; left: 16px;
  line-height: 1;
}

.about-blurb p { margin-left: 24px; }

.about-blurb .blurb-placeholder {
  color: #c0c8d8;
  font-style: italic;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.value-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
}
.value-card.loyalty::before  { background: var(--blue); }
.value-card.quality::before  { background: var(--red); }
.value-card.speed::before    { background: #8b9dc3; }

.value-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.value-card.loyalty .value-icon-wrap { background: var(--blue-soft); }
.value-card.quality .value-icon-wrap { background: var(--red-soft); }
.value-card.speed   .value-icon-wrap { background: #f0f3f9; }

.value-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.value-card.quality .value-name { color: var(--red); }

.value-desc { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }

/* ── SERVICE AREA ── */
.area { padding: 110px 8vw; background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 32px; }
.area-tag {
  background: var(--off); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 11px 16px; font-size: 0.88rem; font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: 10px;
  transition: border-color 0.18s, background 0.18s;
}
.area-tag:hover { border-color: var(--blue); background: var(--blue-soft); }
.area-tag.home { border-color: var(--red); background: var(--red-soft); font-weight: 700; color: var(--red-dark); }
.area-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.area-tag.home .area-dot { background: var(--red); }
.area-note { margin-top: 20px; font-size: 0.82rem; color: var(--muted); font-style: italic; }

/* ── CONTACT ── */
.contact {
  padding: 110px 8vw;
  background: var(--blue);
  position: relative; overflow: hidden;
}
.contact::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: var(--red); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact .label { color: rgba(255,255,255,0.5); }
.contact .section-title { color: var(--white); }
.contact .section-sub { color: rgba(255,255,255,0.55); }

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.ci { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.ci-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); font-weight: 600; margin-bottom: 4px; }
.ci-val { font-size: 0.95rem; color: var(--white); font-weight: 500; }
.ci-val a { color: var(--white); text-decoration: none; }
.ci-val a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: 0 16px 64px rgba(0,0,0,0.2);
}
.form-heading { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--blue); margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 0.8rem; font-weight: 700; color: var(--blue); letter-spacing: 0.04em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  font-family: 'Outfit', sans-serif; font-size: 0.95rem;
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--off); color: var(--text); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,58,107,0.08);
}
.field textarea { resize: vertical; min-height: 100px; }

.submit-btn {
  width: 100%; padding: 15px; background: var(--red); color: var(--white);
  border: none; border-radius: var(--radius); font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(192,39,45,0.3); letter-spacing: 0.02em;
}
.submit-btn:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,39,45,0.38); }

/* ── FOOTER ── */
footer {
  background: #0c1e35; padding: 36px 8vw;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.footer-logo img { height: 44px; width: auto; object-fit: contain; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; transition: color 0.18s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 64px 6vw 40px; }
  .hero-right { padding: 0 6vw 64px; display: grid; grid-template-columns: 1fr 1fr; }
  .trust-card:nth-child(2), .trust-card:nth-child(4) { margin-left: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); justify-content: center; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
  .about-inner, .area, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .services-grid, .hero-right { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .footer-links { display: none; }
  nav .nav-links li:not(:last-child) { display: none; }
}