@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --acura-navy: #071d33;
  --acura-deep: #0a2f4d;
  --acura-blue: #0077b3;
  --acura-sky: #3db4e6;
  --acura-mist: #e8f4fb;
  --acura-foam: #f3f8fc;
  --acura-ink: #132536;
  --acura-muted: #5a7083;
  --acura-line: rgba(10, 47, 77, 0.12);
  --acura-shadow: 0 22px 50px rgba(7, 29, 51, 0.14);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

.acura-site {
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(61, 180, 230, 0.16), transparent 55%),
    radial-gradient(900px 420px at 100% 8%, rgba(0, 119, 179, 0.1), transparent 50%),
    linear-gradient(180deg, #f7fbfe 0%, #eef5fa 48%, #f7fbfe 100%);
  color: var(--acura-ink);
  overflow-x: hidden;
}

.acura-site a {
  color: var(--acura-blue);
}

.acura-site h1,
.acura-site h2,
.acura-site h3,
.brand-logo strong,
.site-nav a,
.hero-actions a,
.modern-form button,
.service-card span,
.info-grid h3,
.port-grid li,
.feature-list li,
.check-list li,
.quick-strip strong,
.eyebrow {
  font-family: var(--font-display);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 5%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--acura-line);
  box-shadow: 0 8px 28px rgba(7, 29, 51, 0.06);
}

.brand-logo,
.logo-image-link {
  min-width: 0;
}

.site-logo-img {
  width: 196px;
  height: 68px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--acura-ink) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  background: var(--acura-mist);
  color: var(--acura-blue) !important;
  transform: translateY(-1px);
  outline: none;
}

/* Full-bleed premium hero */
.acura-hero {
  position: relative;
  isolation: isolate;
  min-height: min(62vh, 520px);
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  animation: none;
}

.acura-hero.hero-home {
  min-height: min(92vh, 780px);
}

.acura-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(7, 29, 51, 0.92) 0%, rgba(7, 29, 51, 0.72) 42%, rgba(10, 47, 77, 0.35) 72%, rgba(10, 47, 77, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 29, 51, 0.55) 0%, transparent 42%);
  pointer-events: none;
}

.acura-hero::after {
  content: '';
  position: absolute;
  left: -8%;
  bottom: -18%;
  width: 48%;
  height: 46%;
  z-index: 0;
  background: radial-gradient(circle, rgba(61, 180, 230, 0.28), transparent 70%);
  filter: blur(8px);
  animation: acuraWaveDrift 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(92%, 1100px);
  margin: 0 auto;
  padding: 88px 0 72px;
  color: #fff;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  opacity: 0;
  animation: acuraFadeUp 0.8s ease forwards;
}

.hero-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.hero-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

.hero-brand span {
  display: block;
  margin-top: 6px;
  color: rgba(189, 239, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--acura-sky);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--acura-blue);
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content p:not(.eyebrow):not(.hero-brand span),
.hero-actions {
  opacity: 0;
  animation: acuraFadeUp 0.8s ease forwards;
}

.hero-content .eyebrow { animation-delay: 0.08s; }
.hero-content h1 { animation-delay: 0.18s; }
.hero-content p:not(.eyebrow):not(.hero-brand span) { animation-delay: 0.28s; }
.hero-actions { animation-delay: 0.4s; }

.hero-content h1 {
  margin: 0;
  max-width: 16ch;
  color: #fff;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-content > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-actions a,
.modern-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--acura-blue), #0095d8);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 119, 179, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.hero-actions a + a {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff !important;
  box-shadow: none;
}

.hero-actions a:hover,
.modern-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 119, 179, 0.4);
}

.hero-actions a + a:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.hero-proof {
  display: none;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(92%, 1180px);
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--acura-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--acura-shadow);
  backdrop-filter: blur(10px);
}

.quick-strip div {
  padding: 28px 26px;
  background: transparent;
  border-right: 1px solid var(--acura-line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong {
  display: block;
  color: var(--acura-deep);
  font-size: 22px;
  font-weight: 700;
}

.quick-strip span {
  display: block;
  margin-top: 8px;
  color: var(--acura-muted);
  font-size: 14px;
  line-height: 1.5;
}

.split-section,
.content-band,
.contact-section {
  width: min(92%, 1180px);
  margin: 88px auto;
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.split-section.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-section img,
.image-feature {
  width: 100%;
  display: block;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--acura-shadow);
}

.image-feature {
  position: relative;
  overflow: hidden;
}

.image-feature img {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.7s ease;
}

.image-feature:hover img {
  transform: scale(1.04);
}

.image-feature span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 14px;
  border-left: 3px solid var(--acura-sky);
  background: rgba(7, 29, 51, 0.82);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-copy h2,
.section-title h2,
.contact-card h2,
.modern-form h2,
.tracking-panel h2 {
  margin: 0;
  color: var(--acura-navy);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-copy p,
.accent-section p,
.lead-text,
.tracking-panel p {
  color: var(--acura-muted);
  font-size: 16px;
  line-height: 1.8;
}

.content-band.light {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 88px 5%;
  background:
    linear-gradient(180deg, rgba(232, 244, 251, 0.95), rgba(243, 248, 252, 0.98)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(0, 119, 179, 0.03) 18px,
      rgba(0, 119, 179, 0.03) 19px
    );
}

.content-band.light .section-title,
.content-band.light .service-grid,
.content-band.light .feature-list,
.content-band.light .info-grid {
  width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  max-width: 720px;
  margin-bottom: 36px;
}

.service-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.info-grid article,
.contact-card,
.modern-form,
.tracking-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--acura-line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(7, 29, 51, 0.07);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card {
  color: var(--acura-ink) !important;
  text-decoration: none;
  position: relative;
}

.service-card:hover,
.info-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--acura-shadow);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.04);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.service-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.05);
}

.service-card span,
.info-grid h3 {
  display: block;
  margin: 22px 22px 8px;
  color: var(--acura-navy);
  font-size: 18px;
  font-weight: 700;
}

.service-card p,
.info-grid p {
  margin: 0 22px 22px;
  color: var(--acura-muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-card:after {
  content: 'Explore  \f105';
  display: block;
  margin: 0 22px 22px;
  color: var(--acura-blue);
  font-family: var(--font-display), FontAwesome;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ISO Tankers sailing animation */
.card-media,
.sail-scene {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(180deg, #7ec8e8 0%, #1a6fa0 55%, #0a3d5c 100%);
}

.sail-scene .sail-bg {
  position: absolute;
  inset: 0;
  width: 118%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
  animation: sailBgPan 14s ease-in-out infinite alternate;
  transition: none;
}

.service-card--tanker:hover .sail-bg {
  animation-duration: 7s;
  filter: saturate(1.12) contrast(1.08);
  transform: none;
}

.sail-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 29, 51, 0.28) 100%);
}

.sail-ship {
  position: absolute;
  bottom: 34px;
  left: -30%;
  width: 132px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
  animation: sailShipMove 9s linear infinite;
}

.sail-ship-body {
  transform-origin: center;
  animation: sailShipBob 2.2s ease-in-out infinite;
}

.sail-wave {
  position: absolute;
  left: -20%;
  width: 140%;
  height: 28px;
  opacity: 0.55;
  background:
    radial-gradient(ellipse 40px 14px at 10% 50%, rgba(255, 255, 255, 0.55), transparent 70%),
    radial-gradient(ellipse 50px 16px at 30% 60%, rgba(255, 255, 255, 0.4), transparent 70%),
    radial-gradient(ellipse 44px 14px at 55% 45%, rgba(255, 255, 255, 0.5), transparent 70%),
    radial-gradient(ellipse 48px 15px at 78% 55%, rgba(255, 255, 255, 0.42), transparent 70%),
    radial-gradient(ellipse 36px 12px at 95% 50%, rgba(255, 255, 255, 0.48), transparent 70%);
}

.sail-wave--back {
  bottom: 18px;
  opacity: 0.35;
  animation: sailWaveDrift 6s linear infinite;
}

.sail-wave--mid {
  bottom: 10px;
  opacity: 0.45;
  animation: sailWaveDrift 4.5s linear infinite reverse;
}

.sail-wave--front {
  bottom: 2px;
  height: 22px;
  opacity: 0.7;
  animation: sailWaveDrift 3.2s linear infinite;
}

.sail-wake {
  position: absolute;
  bottom: 28px;
  left: -10%;
  width: 70px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  filter: blur(2px);
  animation: sailWake 9s linear infinite;
}

@keyframes sailBgPan {
  from { transform: translateX(0) scale(1.05); }
  to { transform: translateX(-12%) scale(1.08); }
}

@keyframes sailShipMove {
  0% { left: -34%; }
  100% { left: 108%; }
}

@keyframes sailShipBob {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-5px) rotate(1.5deg); }
}

@keyframes sailWaveDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-12%); }
}

@keyframes sailWake {
  0% { left: -15%; opacity: 0; }
  15% { opacity: 0.85; }
  85% { opacity: 0.5; }
  100% { left: 95%; opacity: 0; }
}

/* Soft pan on other service photos */
.service-card:not(.service-card--tanker) img {
  animation: serviceSoftPan 16s ease-in-out infinite alternate;
}

.service-card:not(.service-card--tanker):hover img {
  animation-duration: 8s;
}

@keyframes serviceSoftPan {
  from { transform: scale(1.04) translateX(0); }
  to { transform: scale(1.08) translateX(-3%); }
}

@media (prefers-reduced-motion: reduce) {
  .sail-scene .sail-bg,
  .sail-ship,
  .sail-ship-body,
  .sail-wave,
  .sail-wake,
  .service-card:not(.service-card--tanker) img {
    animation: none !important;
  }
}

.accent-section {
  position: relative;
  padding: 84px 5%;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(7, 29, 51, 0.92), rgba(0, 119, 179, 0.82)),
    url('../images/acura/global-trade.jpg') center / cover no-repeat;
  color: #fff;
}

.accent-section::before {
  content: '';
  position: absolute;
  inset: auto -10% -30% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 180, 230, 0.35), transparent 70%);
  animation: acuraWaveDrift 8s ease-in-out infinite alternate-reverse;
}

.accent-section .section-title,
.accent-section p {
  position: relative;
  z-index: 1;
  width: min(92%, 960px);
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.accent-section h2 {
  color: #fff;
}

.port-grid,
.feature-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.port-grid.large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.port-grid li,
.feature-list li,
.check-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--acura-line);
  border-radius: 14px;
  color: var(--acura-ink);
  font-weight: 600;
  line-height: 1.45;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.port-grid li:before,
.feature-list li:before,
.check-list li:before {
  content: '\f00c';
  position: absolute;
  left: 18px;
  top: 17px;
  font-family: FontAwesome;
  color: var(--acura-blue);
}

.port-grid li:hover,
.feature-list li:hover,
.check-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 119, 179, 0.28);
  box-shadow: 0 12px 28px rgba(7, 29, 51, 0.08);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.contact-card,
.modern-form,
.tracking-panel {
  padding: 36px;
}

.contact-card p {
  color: var(--acura-muted);
  font-size: 15px;
  line-height: 1.75;
}

.modern-form {
  display: grid;
  gap: 14px;
}

.modern-form input,
.modern-form textarea {
  width: 100%;
  border: 1px solid #d5e4ee;
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--acura-ink);
  font-size: 15px;
  font-family: var(--font-body);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modern-form textarea {
  min-height: 132px;
  resize: vertical;
}

.modern-form input:focus,
.modern-form textarea:focus {
  border-color: var(--acura-blue);
  box-shadow: 0 0 0 4px rgba(0, 119, 179, 0.12);
  outline: none;
}

.footer-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  background: var(--acura-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-panel {
  position: relative;
  padding: 48px 9%;
  background:
    linear-gradient(145deg, rgba(7, 29, 51, 0.96), rgba(0, 119, 179, 0.88)),
    url('../images/acura/contact-harbor.jpg') center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.footer-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(7, 29, 51, 0.88), rgba(10, 47, 77, 0.78));
}

.footer-panel > * {
  position: relative;
  z-index: 1;
}

.footer-panel h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.footer-panel p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.75;
}

.footer-panel a {
  color: #c9f0ff !important;
  text-decoration: none;
  font-weight: 700;
}

.footer-panel a:hover {
  color: #fff !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 5%;
  background: #041421;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer a {
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.acura-site .call_btn {
  background: var(--acura-deep);
}

.acura-site .call_btn_icon {
  background: var(--acura-blue);
}

@keyframes acuraFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes acuraWaveDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(24px, -18px, 0) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media only screen and (max-width: 980px) {
  .site-header {
    display: block;
    text-align: center;
    padding: 14px 4%;
  }

  .site-logo-img {
    margin: 0 auto;
    object-position: center;
  }

  .site-nav {
    justify-content: center;
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .site-nav a {
    background: var(--acura-mist);
    border-radius: 12px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .acura-hero {
    min-height: 480px;
    align-items: center;
  }

  .acura-hero.hero-home {
    min-height: 560px;
  }

  .hero-content {
    padding: 64px 0;
  }

  .quick-strip,
  .service-grid,
  .info-grid,
  .info-grid.two,
  .info-grid.four,
  .split-section,
  .split-section.reverse,
  .contact-section,
  .footer-contact,
  .port-grid,
  .port-grid.large,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: -28px;
  }

  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--acura-line);
  }

  .quick-strip div:last-child {
    border-bottom: 0;
  }

  .acura-site .fixed_btn {
    display: none;
  }
}

@media only screen and (max-width: 640px) {
  .site-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-logo-img {
    width: 168px;
    height: 58px;
  }

  .acura-hero {
    min-height: 460px;
  }

  .acura-hero.hero-home {
    min-height: 520px;
  }

  .hero-brand strong {
    font-size: 26px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions a {
    width: 100%;
  }

  .split-section,
  .content-band,
  .contact-section {
    width: calc(100% - 32px);
    margin: 56px auto;
    gap: 28px;
  }

  .content-band.light {
    padding: 56px 16px;
  }

  .contact-card,
  .modern-form,
  .tracking-panel {
    padding: 24px 20px;
  }

  .footer-panel {
    padding: 36px 20px;
  }

  .site-footer {
    display: block;
    text-align: center;
    padding: 16px 20px;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}
