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

:root {
  --navy: #0c2340;
  --navy-mid: #1a3a5c;
  --blue: #1a6ab1;
  --blue-light: #e6f1fb;
  --blue-mid: #b5d4f4;
  --text: #1a1a1a;
  --text-muted: #555;
  --text-faint: #888;
  --border: #e0e0e0;
  --surface: #f5f8fc;
  --white: #fff;
  --radius: 10px;
  --radius-sm: 6px;
}

html { font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── NAV ── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
}

.nav-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-logo span { color: var(--blue); }

.nav-links { display: flex; gap: 28px; list-style: none; }

.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--blue); font-weight: 500; }

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500 !important;
}

.nav-cta:hover { background: #155a9a; text-decoration: none !important; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 72px 48px 64px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 560px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 16px;
  color: #a8c4db;
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-primary:hover { background: #155a9a; text-decoration: none; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #a8c4db;
  border: 1px solid #3a5a7a;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.btn-outline:hover { border-color: #7fb3e0; color: var(--white); text-decoration: none; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--surface);
  border-bottom: 0.5px solid var(--border);
  padding: 28px 48px;
  display: flex;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.trust-item p { font-size: 12px; color: var(--text-faint); }

/* ── SECTION ── */
.section { padding: 56px 48px; }
.section + .section { padding-top: 0; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.section-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}

/* ── PRODUCT CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.15s;
}

.card:hover { border-color: var(--blue-mid); }

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #185fa5;
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: 4px;
}

/* ── PHOTO GRID ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 48px 48px 44px;
}

.page-hero .hero-eyebrow { margin-bottom: 10px; }

.page-hero h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 560px;
}

/* ── CONTENT SECTIONS ── */
.content { padding: 56px 48px; max-width: 800px; }

.content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 12px;
}

.content h2:first-child { margin-top: 0; }

.content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.content ul {
  list-style: none;
  margin-bottom: 16px;
}

.content ul li {
  font-size: 15px;
  color: var(--text-muted);
  padding: 6px 0 6px 20px;
  position: relative;
}

.content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

/* ── SERVICE DETAIL CARDS ── */
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }

.service-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.service-card .service-sub {
  font-size: 12px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 16px;
}

.service-card ul { margin-bottom: 0; }

.service-card ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0 5px 18px;
}

.service-card ul li::before {
  width: 5px;
  height: 5px;
}

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 500;
  color: #185fa5;
  background: var(--blue-light);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ── CONTACT FORM ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 56px 48px;
}

.contact-info h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-detail svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail p { font-size: 14px; color: var(--text); margin: 0; }

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,106,177,0.1); }

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

.form-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}

.form-submit:hover { background: #155a9a; }

/* ── MAP ── */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 0.5px solid var(--border);
  margin-top: 28px;
}

.map-wrap iframe { display: block; width: 100%; height: 260px; border: none; }

/* ── ABOUT ── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 56px 48px;
  align-items: start;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: #a8c4db;
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer p { font-size: 13px; }
.site-footer a { color: #7fb3e0; text-decoration: none; font-size: 13px; }
.site-footer a:hover { color: var(--white); }
.footer-links { display: flex; gap: 20px; }

/* ── RECENT WORK ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.work-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 0.5px solid var(--border);
}

.work-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero, .page-hero { padding: 48px 20px 40px; }
  .hero h1 { font-size: 26px; }
  .trust-bar { padding: 20px; flex-direction: column; gap: 20px; }
  .section { padding: 40px 20px; }
  .cards { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; }
  .about-wrap { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; }
  .content { padding: 40px 20px; }
  .site-footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .work-grid { grid-template-columns: 1fr; }
}
