
:root {
  --ink: #12202a;
  --ink-soft: #39505b;
  --ink-faint: #6b7f88;
  --sand: #f4ece1;
  --sand-deep: #dcc5ad;
  --sea: #6d909d;
  --sea-deep: #274553;
  --sea-night: #10222f;
  --sun: #e1b37c;
  --sun-bright: #f3d6b1;
  --mist: rgba(255,255,255,0.74);
  --mist-strong: rgba(255,255,255,0.88);
  --line: rgba(18, 32, 42, 0.12);
  --line-strong: rgba(18, 32, 42, 0.18);
  --shadow: 0 24px 60px rgba(17, 34, 45, 0.14);
  --shadow-soft: 0 14px 32px rgba(17, 34, 45, 0.08);
  --shadow-card: 0 22px 48px rgba(18, 32, 42, 0.1);
  --radius-xxl: 38px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(225,179,124,0.28), transparent 26%),
    radial-gradient(circle at top right, rgba(91,125,138,0.18), transparent 24%),
    linear-gradient(180deg, #fbf7f1 0%, #f7f1ea 42%, #fcfbf8 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell {
  width: min(calc(100% - 28px), var(--max));
  margin: 18px auto 36px;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 22px;
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.compact { margin-bottom: 28px; }

.brand { display: flex; flex-direction: column; gap: 2px; }
.brand-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.35vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-sub { font-size: 0.83rem; color: var(--ink-soft); }

.nav { display: flex; align-items: center; gap: 18px; font-size: 0.95rem; }
.nav a {
  position: relative;
  padding-bottom: 4px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--sea-deep);
  transition: transform .22s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 1.1rem;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xxl);
  box-shadow: var(--shadow);
}

.hero-home {
  padding: clamp(18px, 2.2vw, 22px);
  min-height: auto;
  display: grid;
  gap: 16px;
  background: transparent;
  box-shadow: none;
}


.hero-backdrop,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/shoreline-wave.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mix-blend-mode: screen;
}


.hero-content,
.page-hero {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: end;
  width: 100%;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(247, 245, 239, 0.82);
}

.page-hero .eyebrow,
.section .eyebrow,
.footer .eyebrow,
.card .eyebrow,
.overlay-card .eyebrow,
.image-frame .eyebrow { color: var(--sea-deep); }

h1, h2, h3 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 10ch;
  color: #fffdf8;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.page-hero h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 4.8rem);
}

h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2vw, 2rem); }

.lead {
  max-width: 40rem;
  color: rgba(255,248,240,0.9);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 0;
}

.page-hero .lead,
.section-copy { color: var(--ink-soft); }
.narrow { max-width: 44rem; }

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  background: linear-gradient(135deg, #f4d1a8, #dca067);
  color: #12202a;
  box-shadow: 0 10px 22px rgba(225,179,124,0.22);
}

.button-secondary {
  background: rgba(255,255,255,0.78);
  border-color: rgba(18,32,42,0.12);
  color: var(--ink);
}

.glass-panel,
.card,
.overlay-card,
.framed-visual,
.image-frame {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.52);
  background: var(--mist);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.glass-panel {
  padding: 26px;
  color: #10212c;
}
.glass-panel h2 { font-size: clamp(1.8rem, 2.4vw, 2.4rem); }

.feature-list,
.number-list {
  margin: 18px 0 0;
  padding-left: 1.2rem;
  line-height: 1.7;
}
.feature-list li + li,
.number-list li + li { margin-top: 8px; }
.compact-list { margin-top: 8px; }

.section { padding: 46px 6px; }
.section-muted,
.section-sand,
.section-deep {
  padding: 52px 24px;
  border-radius: 34px;
}
.section-muted {
  background: rgba(255,255,255,0.5);
}
.section-sand {
  background: linear-gradient(180deg, rgba(242,232,221,0.76), rgba(255,255,255,0.8));
}
.section-deep {
  background:
    linear-gradient(160deg, rgba(16,34,47,0.95), rgba(39,69,83,0.86)),
    radial-gradient(circle at top right, rgba(225,179,124,0.14), transparent 24%);
  color: #f7f5ef;
  box-shadow: var(--shadow);
}
.section-deep p,
.section-deep li,
.section-deep .section-copy,
.section-deep .eyebrow,
.section-deep .text-link { color: rgba(247,245,239,0.84); }
.section-deep .eyebrow { color: rgba(244,231,211,0.72); }
.section-deep .text-link { font-weight: 600; }

.section-heading { margin-bottom: 26px; }
.centered { text-align: center; }
.centered .section-copy { max-width: 48rem; margin: 0 auto; }

.card { padding: 28px; }
.card-highlight {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(252,248,242,0.72));
  border-color: rgba(255,255,255,0.72);
}

.intro-grid,
.card-grid,
.letter-layout,
.visual-band,
.gallery-grid,
.metric-row,
.support-grid,
.check-grid {
  display: grid;
  gap: 22px;
}

.intro-grid { grid-template-columns: 1.2fr 0.9fr; }
.card-grid.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.letter-layout { grid-template-columns: 1.5fr 0.74fr; align-items: start; }
.visual-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gallery-grid { grid-template-columns: 1.1fr 0.9fr 0.9fr; }
.metric-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.support-grid { grid-template-columns: 0.95fr 1.05fr; align-items: start; }
.check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.statement-card p,
.tall-card p,
.prose-card p,
.side-note-card p,
.bill-card p,
.overlay-card p { line-height: 1.78; color: var(--ink-soft); }

.quote-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(39,69,83,0.96), rgba(16,34,47,0.9)),
    linear-gradient(180deg, rgba(225,179,124,0.1), transparent);
}

.pull-quote {
  margin: 0;
  color: #fbf7f0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.08;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.fact-tile {
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.fact-tile strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: #fff7ee;
  margin-bottom: 4px;
}
.fact-tile span {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,248,240,0.8);
  line-height: 1.5;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.overlay-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  min-height: 230px;
}
.overlay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,24,33,0.12), rgba(10,24,33,0.54));
}
.overlay-card > * { position: relative; z-index: 1; }
.overlay-card h2,
.overlay-card h3,
.overlay-card p,
.overlay-card .eyebrow { color: #fff8f0; }
.overlay-card .eyebrow { color: rgba(255,242,226,0.78); }
.overlay-card p { max-width: 24rem; }
.overlay-card a { color: #fff7ed; }

.sunset-card {
  background:
    linear-gradient(180deg, rgba(16,34,47,0.2), rgba(16,34,47,0.66)),
    url('../img/hero-sunset.svg') center/cover no-repeat;
}
.coast-card {
  background:
    linear-gradient(180deg, rgba(16,34,47,0.18), rgba(16,34,47,0.58)),
    url('../img/coast-abstract.svg') center/cover no-repeat;
}
.botanical-card {
  background:
    linear-gradient(180deg, rgba(16,34,47,0.14), rgba(16,34,47,0.54)),
    url('../img/botanical-light.svg') center/cover no-repeat;
}

.visual-card {
  min-height: 340px;
  padding: 32px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,233,196,0.52), transparent 28%),
    radial-gradient(circle at bottom left, rgba(91,125,138,0.22), transparent 35%),
    linear-gradient(160deg, rgba(255,255,255,0.82), rgba(255,255,255,0.58));
}

.visual-card-left::after,
.visual-card-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/shoreline-detail.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.16;
}

.visual-copy { position: relative; z-index: 1; max-width: 26rem; }

.gallery-card,
.framed-visual,
.image-frame {
  position: relative;
  overflow: hidden;
}
.gallery-card {
  min-height: 340px;
  border-radius: 30px;
  box-shadow: var(--shadow-card);
}
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,24,33,0.04), rgba(11,24,33,0.6));
}
.gallery-card > div { position: relative; z-index: 1; }
.gallery-large {
  background: url('../img/hero-sunset.svg') center/cover no-repeat;
}
.gallery-small-coast {
  background: url('../img/coast-abstract.svg') center/cover no-repeat;
}
.gallery-small-botanical {
  background: url('../img/botanical-light.svg') center/cover no-repeat;
}
.gallery-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff9f2;
}
.gallery-copy p { color: rgba(255,249,242,0.84); line-height: 1.6; margin: 0; }
.gallery-copy h3 { margin-bottom: 10px; color: #fff9f2; }

.signup-form,
.report-form,
.contact-form {
  display: grid;
  gap: 16px;
}
.signup-form {
  max-width: 820px;
  margin: 0 auto;
  grid-template-columns: 1fr 1.3fr auto;
  align-items: end;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 10px;
}

.contact-panel,
.contact-mini {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.contact-panel {
  padding: 28px;
}

.signup-form-expanded,
.contact-form {
  max-width: none;
  margin: 16px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.contact-form .button,
.signup-form-expanded .button {
  justify-self: start;
}

.interest-group {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 12px;
}

.interest-group legend {
  padding: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

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

.check-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(18,32,42,0.08);
  background: rgba(255,255,255,0.72);
}

.check-pill input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.check-pill span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-status {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(39,69,83,0.08);
  border: 1px solid rgba(39,69,83,0.09);
}

.contact-status strong,
.contact-status span {
  display: block;
}

.contact-status strong {
  margin-bottom: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
}

.contact-status span,
.micro-note {
  color: var(--ink-faint);
  line-height: 1.6;
}

.micro-note {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.contact-mini {
  padding: 22px;
}

.contact-mini p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.report-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(255,255,255,0.56);
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.68);
}

label { display: grid; gap: 8px; }
label span { font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: rgba(255,255,255,0.9);
}
textarea { resize: vertical; }
.wide { grid-column: 1 / -1; }
.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 8px 0;
}
.checkbox-row input { width: 18px; height: 18px; margin-top: 3px; }

.text-link {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  color: var(--sea-deep);
}

.page-hero {
  min-height: 420px;
  padding: 88px clamp(24px, 6vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff8f0;
}

.page-hero h1,
.page-hero .lead,
.page-hero .eyebrow {
  color: #fff8f0;
  position: relative;
  z-index: 1;
}

.page-hero .lead {
  max-width: 44rem;
  color: rgba(255,248,240,0.9);
}

.page-hero .eyebrow {
  color: rgba(255,241,223,0.82);
}

.page-hero-letter {
  background:
    linear-gradient(180deg, rgba(9,22,31,0.22), rgba(9,22,31,0.78)),
    url('../img/waterfall-coast.jpeg') center 36%/cover no-repeat;
}
.page-hero-reports {
  background:
    linear-gradient(180deg, rgba(9,22,31,0.26), rgba(9,22,31,0.78)),
    url('../img/rocky-sunset.jpeg') center 58%/cover no-repeat;
}
.page-hero-bill {
  background:
    linear-gradient(180deg, rgba(18,16,12,0.14), rgba(18,16,12,0.78)),
    url('../img/lava-eruption.jpeg') center 36%/cover no-repeat;
}
.page-hero-guide {
  background:
    linear-gradient(180deg, rgba(9,22,31,0.2), rgba(9,22,31,0.74)),
    url('../img/palm-sunset.jpeg') center 56%/cover no-repeat;
}

.prose-card { padding: 34px; }
.prose-card p { font-size: 1.06rem; }
.side-note-card {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 20px;
}
.bill-card { padding: 34px; }

.image-frame {
  min-height: 230px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(16,34,47,0.14), rgba(16,34,47,0.54)),
    url('../img/coast-abstract.svg') center/cover no-repeat;
}
.image-frame h3,
.image-frame p,
.image-frame .eyebrow { color: #fff9f1; }
.image-frame .eyebrow { color: rgba(255,241,223,0.78); }
.image-frame p { margin: 0; line-height: 1.65; }


.image-waterfall {
  background:
    linear-gradient(180deg, rgba(16,34,47,0.16), rgba(16,34,47,0.56)),
    url('../img/waterfall-coast.jpeg') center/cover no-repeat;
}

.image-lava {
  background:
    linear-gradient(180deg, rgba(16,34,47,0.12), rgba(16,34,47,0.58)),
    url('../img/lava-eruption.jpeg') center/cover no-repeat;
}

.image-palm {
  background:
    linear-gradient(180deg, rgba(16,34,47,0.12), rgba(16,34,47,0.58)),
    url('../img/palm-sunset.jpeg') center/cover no-repeat;
}

.image-rocky-sunset {
  background:
    linear-gradient(180deg, rgba(16,34,47,0.12), rgba(16,34,47,0.58)),
    url('../img/rocky-sunset.jpeg') center/cover no-repeat;
}

.photo-section {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.photo-section .card,
.photo-section .image-frame {
  min-height: 320px;
}

.signature-panel {
  padding: 22px;
  border-top: 1px solid rgba(18,32,42,0.1);
}
.signature-panel strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
}
.signature-panel span {
  display: block;
  color: var(--ink-faint);
  line-height: 1.6;
}

.footer {
  margin-top: 32px;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  gap: 20px;
  border-radius: 26px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow-soft);
}

.footer p { margin: 6px 0 0; color: var(--ink-soft); line-height: 1.6; }
.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}
.legal-note { font-size: 0.93rem; }

.bill-shell {
  display: grid;
  gap: 24px;
}

.bill-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.bill-block {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.64);
  padding: 18px;
}

.bill-text {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.8;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .intro-grid,
  .letter-layout,
  .visual-band,
  .gallery-grid,
  .metric-row,
  .support-grid,
  .check-grid,
  .card-grid.two-up,
  .card-grid.three-up,
  .footer,
  .signup-form,
  .hero-facts,
  .contact-grid,
  .contact-cards,
  .interest-grid {
    grid-template-columns: 1fr;
  }

  .signup-form-expanded,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .side-note-card { position: static; }
  .footer { grid-template-columns: 1fr; }
  .signup-form button { width: 100%; }
}

@media (max-width: 760px) {
  .site-shell { width: min(calc(100% - 18px), var(--max)); }
  .topbar { flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 12px;
  }
  .nav.open { display: flex; }
  .hero-home {
  padding: clamp(18px, 2.2vw, 22px);
  min-height: auto;
  display: grid;
  gap: 16px;
  background: transparent;
  box-shadow: none;
}



.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-home-art {
  border-radius: var(--radius-xxl);
}

.hero-reference {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-xxl) - 4px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.62);
}

.hero-reference img {
  width: 100%;
  display: block;
}

.hero-caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 0 8px;
}

.hero-caption-copy {
  max-width: 46rem;
  margin: 0;
  color: var(--ink-soft);
}

.hero-caption-eyebrow {
  color: var(--sea-deep);
  margin-bottom: 8px;
}

.contact-section .section-copy {
  max-width: 42rem;
}

.contact-section .section-heading {
  margin-bottom: 18px;
}

.contact-status a,
.micro-note a { color: var(--sea-deep); }

.contact-grid {
  margin-top: 16px;
  gap: 20px;
}

.footer {
  margin-top: 36px;
  padding: 30px 28px;
  grid-template-columns: 1.05fr 0.72fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.footer-links {
  gap: 12px;
}

.footer-note {
  max-width: 32rem;
}

.footer .micro-note {
  margin-top: 10px;
}

.legal-note {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .hero-caption {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .hero-home {
    padding: 10px 0 0;
  }

  .hero-caption {
    padding: 0 4px;
  }
}
