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

  :root {
    --navy:    #0D2240;
    --navy-mid:#163366;
    --red:     #B91C1C;
    --red-lt:  #DC2626;
    --ice:     #E8F0F7;
    --ice-dark:#C8D8E8;
    --white:   #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100:#F1F5F9;
    --gray-300:#CBD5E1;
    --gray-500:#64748B;
    --gray-700:#334155;
    --gray-900:#0F172A;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--gray-900); background: var(--white); line-height: 1.6; }
  img  { display: block; max-width: 100%; }
  a    { color: inherit; text-decoration: none; }

  /* ── TOP BAR ── */
  .topbar {
    background: var(--navy);
    color: #9DB4CC;
    font-size: 13px;
    padding: 6px 0;
    letter-spacing: 0.02em;
  }
  .topbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px;
  }
  .topbar a { color: #9DB4CC; }
  .topbar a:hover { color: var(--white); }
  .topbar-right { display: flex; gap: 20px; align-items: center; }
  .topbar-phone { color: var(--white); font-weight: 600; font-size: 14px; }
  .topbar-hours { color: #9DB4CC; }

  /* ── NAV ── */
  nav {
    background: var(--white);
    border-bottom: 3px solid var(--red);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 16px rgba(13,34,64,0.10);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo-mark {
    width: 44px; height: 44px; background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px; flex-shrink: 0;
  }
  .nav-logo-mark span {
    font-family: var(--font-display);
    font-weight: 800; font-size: 20px; color: var(--white); letter-spacing: -1px;
  }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
  .nav-logo-text .name {
    font-family: var(--font-display);
    font-weight: 700; font-size: 17px; color: var(--navy); letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .nav-logo-text .tagline {
    font-size: 10px; color: var(--gray-500); letter-spacing: 0.1em; text-transform: uppercase;
  }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-item {
    position: relative;
    font-family: var(--font-display); font-weight: 600; font-size: 15px;
    color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em;
    padding: 8px 14px; border-radius: 4px; cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }
  .nav-item:hover { background: var(--ice); color: var(--red); }
  .nav-item.active { color: var(--red); }
  .nav-cta {
    background: var(--red); color: var(--white);
    font-family: var(--font-display); font-weight: 700; font-size: 15px;
    text-transform: uppercase; letter-spacing: 0.06em;
    padding: 10px 22px; border-radius: 4px;
    transition: background 0.15s;
    margin-left: 8px;
  }
  .nav-cta:hover { background: var(--red-lt); }

  .nav-hamburger {
    display: none;
    position: relative;
    width: 40px; height: 40px;
    background: none; border: none; cursor: pointer; padding: 0;
    flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block; position: absolute; left: 8px;
    height: 3px; width: 24px;
    background: var(--navy); border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-hamburger span:nth-child(1) { top: 12px; }
  .nav-hamburger span:nth-child(2) { top: 19px; }
  .nav-hamburger span:nth-child(3) { top: 26px; }
  .nav-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    position: relative; overflow: hidden;
    min-height: 580px;
    display: flex; align-items: center;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: 
      linear-gradient(105deg, rgba(13,34,64,0.97) 0%, rgba(13,34,64,0.82) 50%, rgba(13,34,64,0.60) 100%),
      url('hero-refrigerated.png') center/cover no-repeat;
  }
  .hero-inner {
    max-width: 1200px; margin: 0 auto; padding: 80px 24px;
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: var(--white);
    font-family: var(--font-display); font-weight: 700; font-size: 12px;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 2px;
    margin-bottom: 20px;
  }
  .hero-eyebrow::before {
    content: ''; width: 6px; height: 6px; background: var(--white); border-radius: 50%;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-weight: 800; font-size: clamp(42px, 5vw, 64px);
    color: var(--white); line-height: 1.0; letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .hero h1 em { color: var(--red-lt); font-style: normal; }
  .hero-sub {
    color: #9DB4CC; font-size: 17px; line-height: 1.65;
    max-width: 520px; margin-bottom: 36px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--red); color: var(--white);
    font-family: var(--font-display); font-weight: 700; font-size: 15px;
    text-transform: uppercase; letter-spacing: 0.08em;
    padding: 14px 30px; border-radius: 4px;
    transition: background 0.15s;
  }
  .btn-primary:hover { background: var(--red-lt); }
  .btn-outline {
    border: 2px solid #9DB4CC; color: var(--white);
    font-family: var(--font-display); font-weight: 700; font-size: 15px;
    text-transform: uppercase; letter-spacing: 0.08em;
    padding: 12px 28px; border-radius: 4px;
    transition: border-color 0.15s, color 0.15s;
  }
  .btn-outline:hover { border-color: var(--white); color: var(--white); }

  /* hero stats */
  .hero-stats {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; padding: 32px;
    display: flex; flex-direction: column; gap: 24px;
  }
  .hero-stat-label {
    font-family: var(--font-display); font-weight: 700; font-size: 11px;
    color: var(--red-lt); letter-spacing: 0.16em; text-transform: uppercase;
    margin-bottom: 12px;
  }
  .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-item {}
  .stat-num {
    font-family: var(--font-display); font-weight: 800; font-size: 36px;
    color: var(--white); line-height: 1;
  }
  .stat-unit { font-size: 20px; }
  .stat-desc {
    font-size: 12px; color: #9DB4CC; margin-top: 3px; line-height: 1.4;
  }
  .hero-cert-row {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 20px;
  }
  .cert-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
  .cert-badge {
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 3px; padding: 5px 10px;
    font-family: var(--font-display); font-weight: 700; font-size: 11px;
    color: var(--white); letter-spacing: 0.06em; text-transform: uppercase;
  }

  /* ── SERVICES ── */
  .services { padding: 80px 0; background: var(--white); }
  .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .section-header { text-align: center; margin-bottom: 52px; }
  .section-eyebrow {
    font-family: var(--font-display); font-weight: 700; font-size: 12px;
    color: var(--red); letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 10px;
  }
  .section-title {
    font-family: var(--font-display); font-weight: 800; font-size: 40px;
    color: var(--navy); text-transform: uppercase; letter-spacing: 0.02em;
    line-height: 1.05;
  }
  .section-sub {
    color: var(--gray-500); font-size: 16px; margin-top: 12px; max-width: 520px; margin-left: auto; margin-right: auto;
  }

  .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--gray-300); border-radius: 8px; overflow: hidden; }
  .service-card {
    padding: 40px 36px;
    border-right: 1px solid var(--gray-300);
    transition: background 0.2s;
    position: relative;
  }
  .service-card:last-child { border-right: none; }
  .service-card:hover { background: var(--gray-50); }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
  }
  .service-card.refrigerated::before { background: var(--navy); }
  .service-card.processing::before  { background: var(--red); }

  .service-icon {
    width: 52px; height: 52px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 26px;
  }
  .service-card.refrigerated .service-icon { background: var(--ice); }
  .service-card.processing .service-icon   { background: #FEE2E2; }

  .service-name {
    font-family: var(--font-display); font-weight: 800; font-size: 22px;
    text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px;
  }
  .service-card.refrigerated .service-name { color: var(--navy); }
  .service-card.processing .service-name   { color: var(--red); }

  .service-division {
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gray-500); margin-bottom: 16px;
  }
  .service-desc { font-size: 15px; color: var(--gray-700); line-height: 1.65; margin-bottom: 24px; }
  .service-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
  .service-features li {
    font-size: 14px; color: var(--gray-700);
    display: flex; align-items: flex-start; gap: 8px;
  }
  .service-features li::before {
    content: '→'; font-weight: 700; flex-shrink: 0; margin-top: 0px;
  }
  .service-card.refrigerated .service-features li::before { color: var(--navy); }
  .service-card.processing .service-features li::before   { color: var(--red); }

  .service-link {
    font-family: var(--font-display); font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.1em;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .service-card.refrigerated .service-link { color: var(--navy); }
  .service-card.processing .service-link   { color: var(--red); }

  /* ── TRUST STRIP ── */
  .trust-strip { background: var(--navy); padding: 52px 0; }
  .trust-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border: 1px solid rgba(255,255,255,0.10); border-radius: 6px; overflow: hidden;
  }
  .trust-item {
    padding: 28px 24px; text-align: center;
    border-right: 1px solid rgba(255,255,255,0.10);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .trust-item:last-child { border-right: none; }
  .trust-num {
    font-family: var(--font-display); font-weight: 800; font-size: 44px;
    color: var(--white); line-height: 1;
  }
  .trust-num sup { font-size: 22px; }
  .trust-label {
    font-size: 13px; color: #9DB4CC; text-align: center; line-height: 1.4;
    font-weight: 500;
  }

  /* ── LOCATIONS ── */
  .locations { padding: 80px 0; background: var(--gray-50); }
  .locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 0; }
  .location-card {
    background: var(--white); border: 1px solid var(--gray-300);
    border-radius: 8px; overflow: hidden;
  }
  .location-header {
    background: var(--navy); padding: 20px 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .location-dot {
    width: 10px; height: 10px; background: var(--red); border-radius: 50%; flex-shrink: 0;
  }
  .location-name {
    font-family: var(--font-display); font-weight: 700; font-size: 16px;
    color: var(--white); text-transform: uppercase; letter-spacing: 0.06em;
  }
  .location-body { padding: 24px; }
  .location-type {
    font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--red); margin-bottom: 12px;
  }
  .location-address { font-size: 15px; color: var(--gray-700); line-height: 1.6; margin-bottom: 16px; }
  .location-hours { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
  .hours-row { display: flex; justify-content: space-between; font-size: 13px; }
  .hours-label { color: var(--gray-500); }
  .hours-val { color: var(--gray-900); font-weight: 600; }
  .location-phone {
    font-family: var(--font-display); font-weight: 700; font-size: 18px;
    color: var(--navy); display: block; margin-bottom: 16px;
  }
  .location-map-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-display); font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--red);
    border: 1.5px solid var(--red); border-radius: 3px; padding: 7px 14px;
  }

  /* ── TESTIMONIALS ── */
  .testimonials { padding: 80px 0; background: var(--white); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testimonial-card {
    background: var(--gray-50); border: 1px solid var(--gray-300);
    border-left: 4px solid var(--red);
    border-radius: 0 8px 8px 0; padding: 32px;
  }
  .testimonial-quote {
    font-size: 16px; color: var(--gray-700); line-height: 1.7;
    font-style: italic; margin-bottom: 20px;
  }
  .testimonial-author { display: flex; flex-direction: column; gap: 2px; }
  .testimonial-name {
    font-family: var(--font-display); font-weight: 700; font-size: 16px;
    color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em;
  }
  .testimonial-title { font-size: 13px; color: var(--gray-500); line-height: 1.4; }

  /* ── CERTIFICATIONS ── */
  .certifications { background: var(--ice); padding: 52px 0; }
  .cert-label {
    text-align: center;
    font-family: var(--font-display); font-weight: 700; font-size: 12px;
    color: var(--navy-mid); letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 28px;
  }
  .cert-row {
    display: flex; justify-content: center; align-items: center;
    gap: 16px; flex-wrap: wrap;
  }
  .cert-pill {
    background: var(--white); border: 1px solid var(--ice-dark);
    border-radius: 4px; padding: 10px 20px;
    font-family: var(--font-display); font-weight: 700; font-size: 13px;
    color: var(--navy); letter-spacing: 0.06em; text-transform: uppercase;
    display: flex; align-items: center; gap: 8px;
  }
  .cert-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; }

  /* ── FOOTER CTA ── */
  .footer-cta {
    background: var(--navy); padding: 64px 0;
    text-align: center;
  }
  .footer-cta h2 {
    font-family: var(--font-display); font-weight: 800; font-size: 44px;
    color: var(--white); text-transform: uppercase; letter-spacing: 0.02em;
    line-height: 1.05; margin-bottom: 14px;
  }
  .footer-cta h2 em { color: var(--red-lt); font-style: normal; }
  .footer-cta p { color: #9DB4CC; font-size: 16px; margin-bottom: 32px; }
  .footer-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

  /* ── FOOTER ── */
  footer {
    background: var(--gray-900); color: #9DB4CC;
    padding: 52px 0 24px;
  }
  .footer-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    margin-bottom: 40px;
  }
  .footer-brand {}
  .footer-logo-text {
    font-family: var(--font-display); font-weight: 800; font-size: 18px;
    color: var(--white); text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 4px;
  }
  .footer-logo-sub { font-size: 11px; letter-spacing: 0.1em; margin-bottom: 16px; }
  .footer-brand-desc { font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
  .footer-social { display: flex; gap: 10px; }
  .social-btn {
    width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: #9DB4CC;
    transition: border-color 0.15s, color 0.15s;
  }
  .social-btn:hover { border-color: var(--white); color: var(--white); }
  .footer-col h4 {
    font-family: var(--font-display); font-weight: 700; font-size: 13px;
    color: var(--white); letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col li a { font-size: 14px; color: #9DB4CC; transition: color 0.15s; }
  .footer-col li a:hover { color: var(--white); }
  .footer-bottom {
    max-width: 1200px; margin: 0 auto; padding: 20px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  }
  .footer-bottom-left { font-size: 13px; }
  .footer-review-btns { display: flex; gap: 10px; }
  .review-btn {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 3px; padding: 6px 14px;
    font-family: var(--font-display); font-weight: 700; font-size: 11px;
    color: #9DB4CC; letter-spacing: 0.08em; text-transform: uppercase;
    transition: background 0.15s;
  }
  .review-btn:hover { background: rgba(255,255,255,0.12); color: var(--white); }

  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-stats { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { border-right: none; border-bottom: 1px solid var(--gray-300); }
    .trust-inner { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: none; }
    .locations-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    /* ── MOBILE NAV ── */
    .nav-hamburger { display: flex; }

    .nav-inner { position: relative; }
    .nav-links {
      display: none;
      position: absolute; top: 68px; left: -24px; right: -24px; z-index: 500;
      flex-direction: column; align-items: stretch; gap: 0;
      background: var(--white);
      border-top: 3px solid var(--red);
      box-shadow: 0 12px 24px rgba(13,34,64,0.16);
      max-height: calc(100vh - 68px);
      overflow-y: auto;
    }
    .nav-links.mobile-open { display: flex; }

    .nav-item-wrap { width: 100%; }
    .nav-item-wrap > a.nav-item,
    .nav-links > a.nav-item {
      display: block; width: 100%;
      border-radius: 0;
      padding: 16px 24px;
      border-bottom: 1px solid var(--gray-300);
    }
    .nav-cta {
      display: block; width: 100%; text-align: center;
      margin: 12px 24px; width: calc(100% - 48px);
    }

    .nav-dropdown {
      position: static;
      display: none;
      opacity: 1; visibility: visible; transform: none;
      background: var(--ice);
      border: none; border-radius: 0; box-shadow: none;
      padding: 0; min-width: 0;
    }
    .nav-item-wrap.mobile-expanded .nav-dropdown { display: block; }
    .nav-dropdown a { padding: 14px 40px; border-bottom: 1px solid var(--gray-300); }
  }


  /* ── NAV LOGO (image lockup) ── */
  .nav-logo-img {
    height: 48px; width: auto; display: block;
  }

  /* ── NAV DROPDOWNS (desktop hover-reveal) ── */
  .nav-item-wrap { position: relative; }
  .nav-item-wrap > a.nav-item { display: inline-block; }

  @media (min-width: 901px) {
    .nav-dropdown {
      position: absolute; top: 100%; left: 0;
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-top: 3px solid var(--red);
      min-width: 220px;
      box-shadow: 0 12px 28px rgba(13,34,64,0.14);
      border-radius: 0 0 6px 6px;
      padding: 8px 0;
      opacity: 0; visibility: hidden; transform: translateY(6px);
      transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
      z-index: 200;
    }
    .nav-item-wrap:hover .nav-dropdown,
    .nav-item-wrap:focus-within .nav-dropdown {
      opacity: 1; visibility: visible; transform: translateY(0);
    }
  }
  .nav-dropdown a {
    display: block;
    font-family: var(--font-body); font-weight: 500; font-size: 14px;
    text-transform: none; letter-spacing: 0;
    color: var(--gray-700);
    padding: 10px 18px;
  }
  .nav-dropdown a:hover { background: var(--ice); color: var(--red); }
  .nav-dropdown a.nav-dropdown-overview { font-weight: 700; border-bottom: 1px solid var(--gray-300); }

  /* ── INTERIOR PAGE HEADER (non-Home pages) ── */
  .page-header {
    background: var(--navy);
    padding: 56px 24px 64px;
    text-align: left;
  }
  .page-header-inner { max-width: 1200px; margin: 0 auto; }
  .page-header-eyebrow {
    font-family: var(--font-display); font-weight: 700; font-size: 12px;
    color: var(--red-lt); letter-spacing: 0.16em; text-transform: uppercase;
    margin-bottom: 10px;
  }
  .page-header h1 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white); text-transform: uppercase; line-height: 1.05;
    margin-bottom: 12px;
  }
  .page-header-sub {
    color: #9DB4CC; font-size: 16px; max-width: 640px;
  }
  .page-breadcrumb {
    font-size: 13px; color: #9DB4CC; margin-bottom: 16px;
  }
  .page-breadcrumb a:hover { color: var(--white); }

  /* ── GENERIC CONTENT SECTION (interior pages) ── */
  .content-section { padding: 64px 24px; }
  .content-inner { max-width: 900px; margin: 0 auto; }
  .content-inner h2 {
    font-family: var(--font-display); font-weight: 700; font-size: 28px;
    color: var(--navy); margin: 32px 0 14px; text-transform: uppercase;
  }
  .content-inner p { margin-bottom: 16px; color: var(--gray-700); }
  .content-inner ul { margin: 0 0 16px 20px; color: var(--gray-700); }
  .content-inner li { margin-bottom: 6px; }

  .placeholder-note {
    background: var(--ice); border: 1px dashed var(--ice-dark);
    border-radius: 6px; padding: 16px 20px;
    font-size: 14px; color: var(--gray-700); margin-bottom: 28px;
  }

  /* ── FORMS (Documentation / Contact Us) ── */
  .content-inner form { margin-top: 12px; }
  .content-inner label { display: block; font-weight: 600; color: var(--gray-700); margin-bottom: 4px; font-size: 14px; }
  .content-inner input[type="text"],
  .content-inner input[type="email"],
  .content-inner input[type="tel"],
  .content-inner select,
  .content-inner textarea {
    width: 100%; max-width: 420px;
    padding: 10px 12px; border: 1px solid var(--gray-300); border-radius: 4px;
    font-family: var(--font-body); font-size: 15px; color: var(--gray-900);
    margin-top: 2px;
  }
  .content-inner textarea { max-width: 560px; }
  .content-inner input[type="checkbox"] { margin-right: 6px; }
