:root {
  --tanne: #1f3d2e;
  --tanne-dark: #123226;
  --forest: #3e5f4a;
  --salbei: #e8f0eb;
  --salbei-soft: #f3f7f4;
  --sand: #f7f4ef;
  --gold: #d6a23a;
  --gold-dark: #bd8417;
  --text: #102019;
  --muted: #68736c;
  --line: rgba(31, 61, 46, .12);
  --line-soft: rgba(31, 61, 46, .07);
  --shadow: 0 26px 80px rgba(31, 61, 46, .11);
  --shadow-soft: 0 16px 44px rgba(31, 61, 46, .08);
  --max: 1180px;
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 76% 6%, rgba(232, 240, 235, .85), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #fffdf9 55%, #fbfaf6 100%);
  -webkit-font-smoothing: antialiased;
}

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

.shell { width: min(calc(100% - 72px), var(--max)); margin-inline: auto; }

.site-header {
  width: min(calc(100% - 72px), var(--max));
  margin: 0 auto;
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 20;
}

.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 188px; height: auto; }
.site-footer .brand-logo { width: 156px; }

.main-nav {
  justify-self: center;
  display: flex;
  gap: 38px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #213028;
}
.main-nav a { opacity: .84; }
.main-nav a:hover { opacity: 1; color: var(--forest); }

.header-cta {
  justify-self: end;
  min-height: 50px;
  padding: 0 23px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(180deg, #dfaa3b, #c88613);
  box-shadow: 0 12px 26px rgba(214, 162, 58, .25);
  display: inline-flex;
  align-items: center;
  font-weight: 750;
  font-size: 14px;
}
.nav-toggle { display: none; }

.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(470px, 1.12fr);
  gap: 56px;
  align-items: center;
  padding: 40px 0 118px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow.muted { color: #6b766f; }
.eyebrow.gold { color: var(--gold); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--tanne);
  font-size: clamp(58px, 7vw, 98px);
  line-height: .92;
  letter-spacing: -.045em;
  font-weight: 900;
}
h2 {
  margin-bottom: 18px;
  color: var(--tanne);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 860;
}
h3 { margin-bottom: 10px; color: var(--tanne); letter-spacing: -.012em; }
p { color: var(--muted); line-height: 1.72; }

.hero-lead {
  max-width: 550px;
  margin-bottom: 30px;
  font-size: 18px;
  color: #455149;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn {
  min-height: 57px;
  padding: 0 28px;
  border-radius: 15px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 780;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(180deg, var(--tanne), #123427); box-shadow: 0 16px 32px rgba(31, 61, 46, .2); }
.btn-secondary { color: var(--tanne); background: rgba(255, 255, 255, .85); border-color: rgba(31, 61, 46, .32); }
.btn span { font-size: 22px; line-height: 1; }

.trust-row { display: flex; flex-wrap: wrap; gap: 42px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--tanne);
  font-weight: 800;
}
.trust-item strong { display: block; color: var(--tanne); font-size: 14px; }
.trust-item small { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }

.hero-media { min-height: 560px; position: relative; }
.lake-art {
  position: absolute;
  inset: 4% -6% 5% 1%;
  opacity: .95;
  background:
    radial-gradient(ellipse at 78% 50%, rgba(31, 61, 46, .19), transparent 22%),
    linear-gradient(135deg, transparent 0 28%, rgba(31, 61, 46, .07) 29% 39%, transparent 40% 50%, rgba(31, 61, 46, .06) 51% 61%, transparent 62%),
    linear-gradient(180deg, transparent 0%, rgba(232, 240, 235, .45) 48%, rgba(255, 255, 255, .72) 100%);
  clip-path: ellipse(58% 48% at 64% 52%);
}
.lake-art:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 16%;
  width: 230px;
  height: 230px;
  background: repeating-conic-gradient(from 45deg, rgba(31, 61, 46, .32) 0 9deg, transparent 9deg 22deg);
  clip-path: polygon(50% 0, 67% 30%, 58% 30%, 78% 62%, 64% 62%, 88% 100%, 12% 100%, 36% 62%, 22% 62%, 42% 30%, 33% 30%);
  opacity: .5;
}
.phone-cluster { position: absolute; inset: 0; }
.phone-shot {
  margin: 0;
  width: 220px;
  aspect-ratio: 390 / 844;
  border: 7px solid #17261d;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.phone-shot img { width: 100%; height: 100%; object-fit: cover; }
.shot-left { position: absolute; left: 2%; top: 18%; transform: rotate(-5deg); }
.shot-center { position: absolute; left: 30%; top: 5%; width: 235px; transform: rotate(2deg); z-index: 3; }
.shot-right { position: absolute; right: 2%; top: 14%; transform: rotate(5deg); }

.problem {
  position: relative;
  margin-top: 6px;
  padding: 66px 58px 56px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(247, 244, 239, .84));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.problem-backdrop {
  position: absolute;
  inset: 0;
  opacity: .58;
  background:
    radial-gradient(ellipse at 74% 55%, rgba(31, 61, 46, .14), transparent 24%),
    linear-gradient(135deg, transparent 0 36%, rgba(31, 61, 46, .055) 37% 47%, transparent 48% 59%, rgba(31, 61, 46, .05) 60% 68%, transparent 69%),
    linear-gradient(180deg, transparent, rgba(232, 240, 235, .72));
}
.problem-text, .problem-cards { position: relative; z-index: 1; }
.problem-text { max-width: 560px; margin-bottom: 42px; }
.problem-text h2 { font-size: clamp(34px, 3.5vw, 50px); }
.problem-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mini-card {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 10px 30px rgba(31, 61, 46, .06);
}
.mini-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--salbei-soft);
  display: grid;
  place-items: center;
  color: var(--tanne);
  font-size: 24px;
  font-weight: 850;
  flex: 0 0 auto;
}
.mini-card h3 { font-size: 18px; margin-bottom: 6px; }
.mini-card p { font-size: 14px; margin-bottom: 0; }

.features { padding: 112px 0 44px; }
.centered { text-align: center; margin-inline: auto; max-width: 760px; }
.centered p { max-width: 620px; margin-inline: auto; }
.feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; margin-top: 38px; }
.feature-grid article {
  min-height: 210px;
  padding: 30px 22px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 32px rgba(31, 61, 46, .055);
  text-align: center;
}
.feature-grid span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin: 0 auto 18px;
  background: var(--salbei-soft);
  display: grid;
  place-items: center;
  color: var(--tanne);
  font-size: 25px;
  font-weight: 850;
}
.feature-grid h3 { font-size: 18px; }
.feature-grid p { margin: 0; font-size: 14px; }

.spot-banner {
  margin-top: 60px;
  min-height: 205px;
  padding: 42px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 46%, rgba(214, 162, 58, .16), transparent 16rem),
    linear-gradient(135deg, #123427, #254a35);
  display: grid;
  grid-template-columns: .9fr 1.5fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow);
}
.spot-banner h2 { color: #fff; font-size: clamp(34px, 3.3vw, 52px); margin-bottom: 0; }
.spot-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.spot-points article { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.18); }
.spot-points strong { display: block; margin-bottom: 8px; color: #fff; font-size: 16px; }
.spot-points span { display: block; color: rgba(255,255,255,.72); line-height: 1.55; font-size: 14px; }

.product {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  padding: 120px 0 92px;
}
.product-screens { position: relative; min-height: 500px; }
.product-shot { width: 205px; position: absolute; bottom: 0; }
.product-shot:nth-child(1) { left: 0; transform: rotate(-3deg); }
.product-shot:nth-child(2) { left: 31%; width: 220px; z-index: 2; transform: rotate(1deg); }
.product-shot:nth-child(3) { right: 0; transform: rotate(3deg); }
.product-copy { max-width: 530px; }
.product-copy h2 { max-width: 460px; }
.check-list { list-style: none; padding: 0; margin: 26px 0 34px; display: grid; gap: 14px; }
.check-list li { color: #34433a; font-weight: 580; display: flex; gap: 12px; align-items: center; }
.check-list li:before { content: "✓"; width: 24px; height: 24px; border-radius: 50%; background: var(--salbei); display: grid; place-items: center; color: var(--tanne); font-weight: 850; flex: 0 0 auto; }

.launch {
  margin-bottom: 36px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line-soft);
  border-radius: 26px;
}
.launch h2 { font-size: clamp(32px, 3.2vw, 48px); }
.launch p { margin: 0; max-width: 700px; }
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badges span { min-height: 58px; padding: 0 22px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 28px rgba(31,61,46,.05); font-weight: 760; color: var(--tanne); }

.waitlist {
  margin-bottom: 92px;
  padding: 48px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 40px;
  align-items: start;
}
.waitlist h2 { font-size: clamp(36px, 4vw, 56px); }
.waitlist-copy p { margin-bottom: 0; }
.waitlist-form { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.waitlist-form label, .waitlist-form fieldset { color: var(--tanne); font-size: 12px; font-weight: 750; }
.waitlist-form input[type="text"], .waitlist-form input[type="email"] { width: 100%; margin-top: 8px; min-height: 48px; padding: 0 14px; border-radius: 12px; border: 1px solid var(--line); background: #fff; color: var(--text); }
.waitlist-form fieldset { margin: 0; padding: 0; border: 0; display: flex; gap: 8px; align-items: end; }
.waitlist-form legend { width: 100%; margin-bottom: 8px; }
.radio-pill { min-height: 48px; padding: 0 16px; border: 1px solid var(--line); border-radius: 14px; display: inline-flex; gap: 8px; align-items: center; background: #fff; }
.checkbox { grid-column: 1 / 3; display: flex; align-items: center; gap: 10px; color: var(--muted) !important; font-weight: 520 !important; }
.waitlist-form .btn { min-height: 50px; align-self: end; }
.form-message { grid-column: 1 / -1; min-height: 22px; margin: 0; font-size: 13px; color: var(--forest); }

.site-footer {
  min-height: 112px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 28px; }
.footer-brand p { margin: 0; font-size: 14px; max-width: 280px; }
.site-footer nav { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.site-footer small { color: var(--muted); }

.legal-main { padding: 28px 0 84px; }
.legal-card {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: clamp(30px, 6vw, 68px);
}
.legal-card h1 { font-size: clamp(42px, 5vw, 72px); max-width: none; margin-bottom: 20px; }
.legal-card h2 { margin-top: 42px; font-size: clamp(26px, 3vw, 36px); letter-spacing: -.02em; }
.legal-card h3 { margin-top: 26px; }
.legal-card p, .legal-card li { color: #4d5a52; line-height: 1.75; }
.legal-card a { color: var(--tanne); font-weight: 750; }
.legal-card ul { padding-left: 1.2rem; }
.legal-note { padding: 18px 20px; border-radius: 18px; background: var(--salbei-soft); border: 1px solid var(--line-soft); }

.trust-strip { margin-top: -40px; margin-bottom: 40px; position: relative; z-index: 5; }
.trust-strip-inner { display: flex; justify-content: center; gap: 40px; padding: 22px 32px; border: 1px solid var(--line-soft); border-radius: 20px; background: rgba(255,255,255,.88); box-shadow: 0 12px 32px rgba(31,61,46,.055); }
.trust-strip-item { display: flex; align-items: center; gap: 12px; }
.trust-strip-item span { width: 36px; height: 36px; border-radius: 12px; background: var(--salbei-soft); display: grid; place-items: center; font-size: 16px; font-weight: 850; color: var(--tanne); flex: 0 0 auto; }
.trust-strip-item p { margin: 0; font-size: 14px; font-weight: 680; color: var(--tanne); }

.founder { padding: 80px 0; }
.founder-inner { padding: 58px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(247,244,239,.84)); box-shadow: var(--shadow-soft); }
.founder-text { max-width: 700px; margin-bottom: 42px; }
.founder-text h2 { font-size: clamp(34px, 3.5vw, 50px); }
.founder-text p { font-size: 16px; line-height: 1.78; }
.founder-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.founder-stat { padding: 24px; border: 1px solid var(--line-soft); border-radius: 18px; background: rgba(255,255,255,.8); text-align: center; }
.founder-stat strong { display: block; font-size: 38px; font-weight: 900; letter-spacing: -.02em; color: var(--tanne); }
.founder-stat span { display: block; margin-top: 4px; font-size: 13px; font-weight: 600; color: var(--muted); }

.faq { padding: 80px 0 44px; }
.faq-list { max-width: 780px; margin: 38px auto 0; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line-soft); border-radius: 18px; background: rgba(255,255,255,.86); box-shadow: 0 8px 24px rgba(31,61,46,.04); overflow: hidden; }
.faq-item summary { padding: 20px 52px 20px 24px; font-size: 16px; font-weight: 720; color: var(--tanne); cursor: pointer; list-style: none; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 22px; font-weight: 600; color: var(--muted); transition: transform .2s ease; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 24px 22px; margin: 0; font-size: 15px; line-height: 1.72; }
.faq-item summary:hover { background: rgba(232,240,235,.3); }

.waitlist-benefits { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.waitlist-benefits li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--tanne); }
.waitlist-benefits li::before { content: "\2713"; width: 22px; height: 22px; border-radius: 50%; background: var(--salbei); display: grid; place-items: center; font-size: 12px; font-weight: 850; color: var(--tanne); flex: 0 0 auto; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

@media (max-width: 1050px) {
  .shell, .site-header { width: min(calc(100% - 42px), var(--max)); }
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .brand-logo { width: 160px; }
  .main-nav { display: none; position: absolute; top: 82px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-soft); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 12px; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--tanne); margin: 3px 0; }
  .hero { grid-template-columns: 1fr; gap: 24px; padding-top: 28px; }
  .hero-media { min-height: 450px; }
  .shot-left { left: 7%; }
  .shot-center { left: 36%; }
  .shot-right { right: 5%; }
  .problem-cards, .spot-points { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .spot-banner, .product, .waitlist, .launch { grid-template-columns: 1fr; }
  .product-screens { min-height: 470px; }
  .trust-strip-inner { flex-wrap: wrap; justify-content: center; gap: 18px; }
  .founder { padding: 50px 0; }
  .founder-inner { padding: 38px 28px; }
  .faq { padding: 50px 0 34px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 680px) {
  .shell, .site-header { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 78px; }
  .brand-logo { width: 142px; }
  .hero { min-height: auto; padding: 28px 0 72px; }
  h1 { font-size: clamp(52px, 16vw, 76px); }
  h2 { font-size: clamp(34px, 10vw, 48px); }
  .hero-lead { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .trust-row { gap: 18px; }
  .hero-media { min-height: 360px; }
  .phone-shot { width: 142px; border-width: 5px; border-radius: 24px; }
  .shot-left { left: 0; top: 22%; }
  .shot-center { left: 29%; top: 5%; width: 154px; }
  .shot-right { right: 0; top: 24%; }
  .problem { padding: 38px 22px; }
  .mini-card { align-items: flex-start; }
  .features { padding-top: 72px; }
  .feature-grid { grid-template-columns: 1fr; }
  .spot-banner { padding: 32px 24px; }
  .product { padding: 74px 0; }
  .product-screens { min-height: 340px; }
  .product-shot { width: 122px; }
  .product-shot:nth-child(2) { width: 134px; left: 31%; }
  .launch, .waitlist { padding: 30px 22px; }
  .waitlist-form { grid-template-columns: 1fr; }
  .checkbox, .form-message { grid-column: auto; }
  .waitlist-form fieldset { flex-wrap: wrap; }
  .trust-strip { margin-top: -24px; }
  .trust-strip-inner { flex-direction: column; align-items: center; gap: 14px; padding: 18px 20px; }
  .founder-inner { padding: 28px 22px; }
  .founder-text { margin-bottom: 28px; }
  .founder-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .founder-stat { padding: 18px 12px; }
  .founder-stat strong { font-size: 28px; }
  .founder-stat span { font-size: 12px; }
  .faq { padding: 44px 0 28px; }
  .faq-item summary { font-size: 15px; padding: 18px 44px 18px 20px; }
  .faq-item p { padding: 0 20px 18px; font-size: 14px; }
  .site-footer nav { flex-direction: column; gap: 12px; }
}


.instagram { padding: 26px 0 56px; }
.instagram-card {
  padding: 42px 48px;
  border-radius: 26px;
  border: 1px solid rgba(214, 162, 58, .22);
  background:
    radial-gradient(circle at 82% 32%, rgba(214, 162, 58, .18), transparent 16rem),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(251,243,222,.62));
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}
.instagram-copy h2 { font-size: clamp(32px, 3.4vw, 52px); margin-bottom: 14px; }
.instagram-copy p { margin: 0; max-width: 650px; }
.btn-instagram {
  color: #fff;
  background: linear-gradient(180deg, var(--tanne), #123427);
  box-shadow: 0 16px 32px rgba(31, 61, 46, .18);
  white-space: nowrap;
}

.founder-inner-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  gap: 42px;
  align-items: start;
}
.founder-inner-split .founder-text { margin-bottom: 0; }
.founder-notes { display: grid; gap: 14px; }
.founder-notes article {
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 28px rgba(31,61,46,.045);
}
.founder-notes strong {
  display: block;
  margin-bottom: 7px;
  color: var(--tanne);
  font-size: 16px;
  letter-spacing: -.006em;
}
.founder-notes span {
  display: block;
  color: var(--muted);
  line-height: 1.62;
  font-size: 14px;
}


@media (max-width: 920px) {
  .instagram-card { grid-template-columns: 1fr; padding: 36px 28px; }
  .btn-instagram { width: fit-content; }
  .founder-inner-split { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .instagram { padding: 18px 0 42px; }
  .instagram-card { padding: 30px 22px; }
  .btn-instagram { width: 100%; }
  h1 { letter-spacing: -.038em; }
  h2 { letter-spacing: -.028em; }
}
