:root {
  color-scheme: light;
  --bg: #eef1f5;
  --panel: #ffffff;
  --ink: #0f1824;
  --muted: #566275;
  --line: #d3d9e1;
  --accent: #0e63d6;
  --accent-dark: #0a4faf;
  --navy: #0d1826;
  --steel-hi: #eef1f4;
  --steel-lo: #c3c9d1;
  --shadow: 0 16px 40px rgba(13, 24, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

a:focus-visible,
.button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  letter-spacing: -0.015em;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(211, 217, 225, 0.9);
  background: rgba(238, 241, 245, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.2rem;
}

.brand span {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--accent);
}

/* ---------- buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.button.primary {
  color: #fff;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.secondary {
  color: var(--accent-dark);
  background: var(--panel);
}

.button.secondary:hover {
  border-color: var(--accent-dark);
}

.button.ghost {
  color: var(--muted);
  background: transparent;
  border-color: transparent;
}

.button.ghost:hover {
  color: var(--ink);
  background: var(--bg);
}

.header-cta {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* ---------- wizard dialog ---------- */

.wizard-dialog {
  width: min(440px, calc(100vw - 40px));
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.wizard-dialog::backdrop {
  background: rgba(13, 24, 38, 0.55);
  backdrop-filter: blur(2px);
}

.wizard-dialog h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.wizard-fields {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.wizard-fields label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.wizard-fields input {
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--bg);
}

.wizard-fields input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.wizard-actions .button {
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  column-gap: clamp(36px, 5vw, 72px);
  row-gap: clamp(24px, 3vw, 40px);
  align-items: start;
  padding: clamp(26px, 3.5vw, 48px) clamp(20px, 5vw, 72px) clamp(40px, 5vw, 72px);
  background-color: #e6ebf1;
  background-image:
    linear-gradient(rgba(14, 99, 214, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 99, 214, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 88% 12%, rgba(14, 99, 214, 0.1), transparent 40%),
    linear-gradient(135deg, #f4f6f9 0%, #e1e7ee 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%, 100% 100%;
}

.hero-heading {
  grid-column: 1 / -1;
  margin-bottom: clamp(8px, 1.5vw, 20px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.type-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 6px 20px rgba(13, 24, 38, 0.06);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.type-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(14, 99, 214, 0.16);
}

.type-card-image {
  width: 100%;
  height: 112px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.72) contrast(1.04);
}

.type-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
}

.type-card strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.type-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.type-card small {
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.78rem;
}

.bypass {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.bypass a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* hero installed-sign photo gallery */

.hero-visual {
  width: 100%;
  max-width: 370px;
  display: grid;
  gap: 10px;
  justify-self: center;
}

.hero-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-photo {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(119, 133, 150, 0.28);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(13, 24, 38, 0.14);
}

.hero-photo img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  display: block;
  filter: saturate(0.78) contrast(1.03);
}

.hero-photo-main img {
  height: 230px;
}

.hero-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 24px 12px 10px;
  color: #fff;
  background: linear-gradient(transparent, rgba(8, 20, 34, 0.78));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- trust bar ---------- */

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  justify-content: center;
  padding: 16px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.trust-bar span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent);
  font-weight: 800;
}

/* ---------- sections ---------- */

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section.alt {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-cta {
  margin: 30px 0 0;
}

.grid.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid.four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.section.alt .card,
.section.alt .steps li {
  background: #f7f9fb;
}

.card p,
.copy,
.note {
  color: var(--muted);
}

.note {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: 0.98rem;
}

/* ---------- steps ---------- */

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  border-top: 3px solid var(--accent);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---------- bundle tables ---------- */

.table-wrap {
  max-width: 900px;
  overflow-x: auto;
}

.bundle-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.97rem;
}

.bundle-table th,
.bundle-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.bundle-table thead th {
  background: #eef1f5;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}

.bundle-table td:nth-child(2) {
  white-space: nowrap;
  font-weight: 700;
}

.bundle-table td:nth-child(3) {
  color: var(--muted);
}

.bundle-table tfoot td {
  border-bottom: none;
  background: #eaf1fb;
  font-weight: 800;
}

.bundle-table tfoot td:nth-child(3) {
  color: var(--muted);
  font-weight: 600;
}

.bundle-details {
  max-width: 900px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.bundle-details summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.bundle-details summary:hover {
  color: var(--accent);
}

.bundle-details .table-wrap {
  padding: 0 16px 16px;
}

.bundle-details .bundle-table {
  border-radius: 8px;
}

/* ---------- products ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-grid li {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.product-grid strong {
  letter-spacing: -0.015em;
}

.product-grid a strong {
  color: var(--ink);
}

.product-grid a:hover strong,
.product-grid a:focus-visible strong {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-grid span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* ---------- split / copy ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 7vw, 90px);
}

.copy {
  font-size: 1.08rem;
}

.copy .button {
  margin-top: 10px;
}

/* ---------- about ---------- */

.about-intro .section-heading {
  max-width: 940px;
  margin-bottom: 34px;
}

.about-intro .lead {
  max-width: 900px;
}

.about-intro .lead + .lead {
  margin-top: -4px;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-facts li {
  display: grid;
  gap: 2px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.about-facts strong {
  color: var(--accent-dark);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.about-facts span {
  color: var(--muted);
  font-size: 0.88rem;
}

.logistics-callout {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 64px);
  margin-top: 28px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #102238, #0d1826);
  box-shadow: 0 14px 36px rgba(13, 24, 38, 0.16);
}

.logistics-callout .eyebrow {
  color: #79b1ff;
}

.logistics-callout h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.logistics-callout p {
  color: rgba(255, 255, 255, 0.82);
}

.logistics-callout a {
  color: #a8ccff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- guides ---------- */

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guide-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 8px 24px rgba(13, 24, 38, 0.06);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 14px 32px rgba(14, 99, 214, 0.12);
}

.guide-label {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card h3,
.guide-card p {
  margin: 0;
}

.guide-card p {
  color: var(--muted);
}

.guide-card strong {
  margin-top: 8px;
  color: var(--accent-dark);
}

/* ---------- faq ---------- */

.faq-list {
  max-width: 820px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 18px 4px;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.faq-list summary:hover {
  color: var(--accent);
}

.faq-list p {
  margin: 0;
  padding: 0 4px 20px;
  color: var(--muted);
  max-width: 720px;
}

/* ---------- bottom CTA ---------- */

.cta {
  margin: clamp(20px, 5vw, 72px);
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(14, 99, 214, 0.35), transparent 45%),
    var(--navy);
}

.cta .eyebrow {
  color: #7fb0f5;
}

.cta > p {
  color: #b8c4d6;
  max-width: 680px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cta .button.primary {
  border-color: #2f7cf0;
  background: #2f7cf0;
  color: #fff;
}

.cta .button.primary:hover {
  background: #4a8ff5;
  border-color: #4a8ff5;
}

.cta-fallback {
  margin: 24px 0 0;
  color: #93a0b3;
  font-size: 0.95rem;
}

.cta-fallback a {
  color: #7fb0f5;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- footer ---------- */

.site-footer {
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 72px) 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1100px;
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-note {
  margin: 36px 0 0;
  font-size: 0.9rem;
}

/* ---------- photos ---------- */

.factory-overview {
  position: relative;
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(13, 24, 38, 0.12);
}

.factory-overview img {
  width: 100%;
  height: clamp(280px, 42vw, 520px);
  object-fit: cover;
  display: block;
}

.factory-overview figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 3px;
  padding: 48px clamp(18px, 3vw, 34px) clamp(18px, 3vw, 28px);
  color: #fff;
  background: linear-gradient(transparent, rgba(8, 20, 34, 0.88));
}

.factory-overview figcaption strong {
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.factory-overview figcaption span {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
}

.photo-grid figure {
  margin: 0;
  display: grid;
  gap: 10px;
}

.photo-grid img,
.photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(13, 24, 38, 0.08);
}

.photo-grid figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- product pages ---------- */

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 18px;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.price-tag small {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.breadcrumbs {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumbs a {
  color: var(--accent-dark);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* ---------- articles / guides ---------- */

.article {
  max-width: 780px;
}

.article h2 {
  margin-top: 44px;
}

.article h3 {
  margin-top: 30px;
}

.article p,
.article li {
  color: #2e3947;
}

.article ul,
.article ol {
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.article .table-wrap {
  margin: 22px 0;
}

.article-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

/* ---------- quote form ---------- */

.quote-form {
  max-width: 780px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.quote-form label.full {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--panel);
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-form input:focus-visible,
.quote-form select:focus-visible,
.quote-form textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.quote-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-actions .button {
  cursor: pointer;
  font: inherit;
}

.form-status {
  margin: 0;
  font-weight: 600;
}

.form-status.ok {
  color: #157347;
}

.form-status.err {
  color: #b42318;
}

.contact-lines {
  color: var(--muted);
  display: grid;
  gap: 6px;
}

/* ---------- responsive ---------- */

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid.four,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .hero,
  .split,
  .grid.three,
  .footer-grid,
  .logistics-callout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 640px;
    justify-self: start;
  }

  .hero-photo img {
    height: 150px;
  }

  .hero-photo-main img {
    height: 300px;
  }
}

@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .factory-overview img {
    height: 240px;
  }

  .factory-overview figcaption span {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .product-grid,
  .grid.four,
  .steps,
  .quote-form,
  .photo-grid,
  .type-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .type-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .type-card-image {
    width: 118px;
    height: 100%;
    min-height: 136px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-photo img {
    height: 105px;
  }

  .hero-photo-main img {
    height: 220px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
