/* Option B — exact visual mirror of layout-concepts/option-b-split-hero.png */
:root {
  --navy: #061c4e;
  --navy-btn: #04244f;
  --navy-muted: #3b4159;
  --red: #c41e1e;
  --red-deep: #ba1011;
  --light-blue: #ddebf8;
  --body: #3d3d3d;
  --line: #d0d0d6;
  --white: #ffffff;
  --header-h: 76px;
  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #e0e0e6;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img {
  width: 210px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  justify-content: center;
  padding: 0 12px;
}

.main-nav a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
  padding: 6px 0 8px;
  position: relative;
}

.main-nav a.active {
  color: var(--navy);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
}

.btn-quote {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  padding: 10px 16px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-quote:hover {
  background: var(--navy);
  color: var(--white);
}

.nav-toggle {
  display: none;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 466px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-copy {
  background: var(--white);
  padding: 42px 48px 40px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--red);
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.red-rule {
  width: 58px;
  height: 3px;
  background: var(--red-deep);
  margin: 18px 0 16px;
  border-radius: 1px;
}

.lede {
  margin: 0 0 28px;
  max-width: 460px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--body);
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 352px;
}

.cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 6px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(6, 28, 78, 0.12);
}

.cta-icon {
  width: 40px;
  height: 36px;
  flex-shrink: 0;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-text strong {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.cta-text span {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.3;
  opacity: 0.92;
}

.cta-primary {
  background: var(--navy-btn);
  color: var(--white);
  border: 1.5px solid var(--navy-btn);
}

.cta-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.hero-visual {
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 466px;
}

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

/* ===== VALUE BAR ===== */
.value-bar {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 22px 28px 26px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-right: 1px solid var(--line);
}

.value-item:last-child {
  border-right: none;
}

.value-item img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
}

.value-item h3 {
  margin: 0 0 3px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.25;
}

.value-item p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--navy-muted);
  line-height: 1.3;
}

/* ===== FOOTER (minimal NAP) ===== */
.site-footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px 20px;
  border-top: 1px solid #e2e2e6;
  font-size: 13px;
  color: var(--navy-muted);
}

.site-footer a:hover {
  color: var(--red);
  text-decoration: underline;
}


/* ===== INNER PAGE SHARED ===== */
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 28px 48px;
}

.page-header {
  margin-bottom: 28px;
  max-width: 640px;
}

.page-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.page-header .red-rule {
  margin: 14px 0 12px;
}

.page-header p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
  font-weight: 400;
}

.page-cta-band {
  margin-top: 36px;
  padding: 22px 24px;
  border: 1.5px solid var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--white);
}

.page-cta-band h2 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.page-cta-band p {
  margin: 0;
  font-size: 13.5px;
  color: var(--navy-muted);
  line-height: 1.4;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--navy-btn);
  border: 1.5px solid var(--navy-btn);
  border-radius: 4px;
  padding: 12px 20px;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(6, 28, 78, 0.16);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  padding: 12px 20px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

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

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  min-height: 0;
}

.service-card .svc-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--navy);
}

.service-card .svc-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.service-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.25;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--navy-muted);
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.contact-info {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 22px 20px;
}

.contact-info h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.info-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.info-row:last-of-type {
  border-bottom: none;
}

.info-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.info-row p,
.info-row a {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--body);
}

.info-row a:hover {
  color: var(--red);
  text-decoration: underline;
}

.contact-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-wrap {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--light-blue);
}

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

.map-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--navy-muted);
}

.map-link:hover {
  color: var(--red);
  text-decoration: underline;
}

/* ===== QUOTE FORM ===== */
.quote-layout {
  max-width: 720px;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px 24px 20px;
  background: var(--white);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group .req {
  color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  padding: 11px 12px;
  background: var(--white);
  transition: border-color 0.15s ease;
  width: 100%;
}

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

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

.form-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--navy-btn);
  border: 1.5px solid var(--navy-btn);
  border-radius: 4px;
  padding: 14px 20px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(6, 28, 78, 0.16);
}

.form-note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--navy-muted);
}

.form-note a {
  color: var(--navy);
  font-weight: 600;
}

.form-note a:hover {
  color: var(--red);
  text-decoration: underline;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--light-blue);
  aspect-ratio: 1 / 1;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-actions {
  margin-top: 28px;
  text-align: center;
}

/* ===== ONLINE STORES ===== */
.stores-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.stores-copy {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 26px;
}

.stores-copy h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.stores-copy p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--body);
}

.stores-points {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.stores-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--navy-muted);
}

.stores-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.stores-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stores-side {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--light-blue);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.stores-side h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.stores-side p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
}

/* ===== MOBILE ===== */
@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    padding: 0 16px;
  }

  .logo img {
    width: 180px;
  }

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

  .hero-copy {
    padding: 36px 24px 28px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-visual {
    min-height: 320px;
    order: -1;
  }

  .cta-stack {
    max-width: none;
  }

  .value-bar {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
    gap: 0;
  }

  .value-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 14px 10px;
  }

  .value-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .page-main {
    padding: 28px 16px 40px;
  }

  .page-header h1 {
    font-size: 26px;
  }

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

  .contact-layout,
  .stores-panel {
    grid-template-columns: 1fr;
  }

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

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

  .map-wrap iframe {
    height: 280px;
  }

}

@media (max-width: 560px) {
  .value-bar {
    grid-template-columns: 1fr;
  }

  .value-item,
  .value-item:nth-child(odd) {
    border-right: none;
  }

  .btn-quote {
    padding: 8px 12px;
    font-size: 10px;
  }

  .hero-copy h1 {
    font-size: 26px;
  }

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

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

  .page-cta-band {
    padding: 18px 16px;
  }

}

/* Desktop preview frame: lock concept proportions near 1280 */
@media (min-width: 1280px) {
  .hero-copy h1 {
    font-size: 38px;
  }
}

/* ===== DESKTOP SCALE ===== */
@media (min-width: 900px) {
  html {
    zoom: 1.1;
  }
}

/* ===== MOBILE CALL NOW ===== */
.btn-call-now {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  padding: 10px 16px;
  white-space: nowrap;
  text-decoration: none;
}
.btn-call-now:hover {
  background: var(--navy);
  color: var(--white);
}
@media (max-width: 899px) {
  .btn-call-now {
    display: inline-flex;
    padding: 8px 12px;
    font-size: 10px;
  }
}
@media (min-width: 900px) {
  .btn-call-now {
    display: none !important;
  }
}

.stores-side.stores-shot {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
}
.stores-shot-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.stores-shot-link img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--line);
}
.stores-shot-caption {
  display: block;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.stores-shot-link:hover .stores-shot-caption {
  color: var(--red);
}
