/*
Theme Name:  Drink Less Live More
Theme URI:   https://drinklesslivemore.com
Author:      Wander Batista
Author URI:  https://drinklesslivemore.com
Description: Custom theme for Drink Less Live More — a mindful drinking blog.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: dllm
*/

/* ============================================================
   DRINK LESS LIVE MORE — style.css
   Global stylesheet · drinklesslivemore.com
   ============================================================ */

/* ---- CSS Variables --------------------------------------- */
:root {
  --cream-light : #f5f2ec;
  --cream-mid   : #ede9df;
  --off-white   : #faf9f5;
  --footer-bg   : #f0ece3;
  --green       : #4d7c62;
  --green-hover : #3a6050;
  --text-dark   : #1a2b1a;
  --text-body   : #3d4a3e;
  --text-muted  : #7a8a7c;
  --border      : #ddd9d0;
  --serif       : 'Cormorant Garamond', Georgia, serif;
  --sans        : 'DM Sans', system-ui, sans-serif;
  --max-w       : 1160px;
  --pad-x       : 32px;
  --section     : 96px;
}

/* ---- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--cream-light);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ---- Shared helpers -------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.text-link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dark);
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 2px;
  display: inline-block;
  transition: color .2s, border-color .2s;
}
.text-link:hover { color: var(--green); border-color: var(--green); }

.btn {
  display: inline-block;
  padding: 14px 34px;
  background: var(--green);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn:hover { background: var(--green-hover); transform: translateY(-1px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  background: var(--cream-light);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.nav__name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

/* WordPress menu override */
.nav__links,
.nav__links ul {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links li { margin: 0; }
.nav__links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color .2s;
}
.nav__links a:hover,
.nav__links .current-menu-item > a { color: var(--green); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all .3s;
}

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  background: var(--cream-light);
  padding: 96px 0 88px;
  text-align: center;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--green);
  font-weight: 400;
}
.hero__sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 44px;
}

/* ============================================================
   POSTS SECTION (homepage + blog)
   ============================================================ */
.posts {
  background: var(--off-white);
  padding: var(--section) 0;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
}
.posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.card {
  display: flex;
  flex-direction: column;
}
.card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  background: linear-gradient(150deg, #c8e0d4 0%, #f0ece3 100%);
}
.card__tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.card__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}
.card__excerpt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
}

/* ============================================================
   WHY IT MATTERS
   ============================================================ */
.why {
  background: var(--cream-mid);
  padding: var(--section) 0;
  text-align: center;
}
.why__title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  max-width: 680px;
  margin: 0 auto 60px;
}
.why__title em { font-style: italic; color: var(--green); font-weight: 400; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 880px;
  margin: 0 auto;
}
.why__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why__label {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.why__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 230px;
  margin: 0 auto;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--cream-light);
  padding: var(--section) 0;
  text-align: center;
}
.newsletter__title {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 44px;
}
.newsletter__title em { font-style: italic; color: var(--green); font-weight: 400; }
.newsletter__form {
  display: flex;
  max-width: 480px;
  margin: 0 auto 14px;
}
.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 100px 0 0 100px;
  outline: none;
  transition: border-color .2s;
}
.newsletter__input::placeholder { color: var(--text-muted); }
.newsletter__input:focus { border-color: var(--green); }
.newsletter__btn { padding: 14px 28px; border-radius: 0 100px 100px 0; }
.newsletter__note { font-size: 12px; color: var(--text-muted); }

/* Newsletter strip (blog + about pages) */
.newsletter-strip {
  background: var(--cream-mid);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.newsletter-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-strip__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 6px;
}
.newsletter-strip__title em { font-style: italic; color: var(--green); }
.newsletter-strip__sub { font-size: 14px; font-weight: 300; color: var(--text-muted); }
.newsletter-strip__form { display: flex; flex-shrink: 0; }
.newsletter-strip__input {
  width: 240px;
  padding: 12px 18px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 100px 0 0 100px;
  outline: none;
  transition: border-color .2s;
}
.newsletter-strip__input::placeholder { color: var(--text-muted); }
.newsletter-strip__input:focus { border-color: var(--green); }
.newsletter-strip__btn { padding: 12px 24px; border-radius: 0 100px 100px 0; }

/* ============================================================
   PAGE HEADER (blog, about, contact)
   ============================================================ */
.page-header {
  background: var(--cream-light);
  padding: 64px 0 52px;
  border-bottom: 1px solid var(--border);
}
.page-header__title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 14px;
}
.page-header__sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.7;
}

/* ============================================================
   BLOG PAGE — filters + featured + grid
   ============================================================ */
.filters {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 61px;
  z-index: 90;
}
.filters__inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.filter-btn:hover  { border-color: var(--green); color: var(--green); }
.filter-btn.is-active { background: var(--green); border-color: var(--green); color: #fff; }

.blog-body { background: var(--off-white); padding: 64px 0 80px; }

.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}
.featured__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  background: linear-gradient(150deg, #c8e0d4 0%, #f0ece3 100%);
}
.featured__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.featured__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.featured__excerpt {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
}
.card.is-hidden { display: none; }
.no-results {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-muted);
}
.no-results.is-visible { display: block; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-hero {
  background: var(--cream-light);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}
.post-hero__inner { max-width: 760px; margin: 0 auto; }
.post-hero__tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
  display: block;
}
.post-hero__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}
.post-hero__excerpt {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 28px;
}
.post-hero__meta {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .04em;
}

.post-thumbnail-wrap {
  background: var(--off-white);
  padding: 48px 0 0;
}
.post-thumbnail-wrap img {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  width: 100%;
}

/* Post body content */
.post-content {
  background: var(--off-white);
  padding: 64px 0 80px;
}
.post-content__inner {
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
}
.post-content__inner h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 52px 0 18px;
  line-height: 1.2;
}
.post-content__inner h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 40px 0 14px;
}
.post-content__inner p { margin-bottom: 24px; }
.post-content__inner p:last-child { margin-bottom: 0; }
.post-content__inner a { color: var(--green); border-bottom: 1px solid rgba(77,124,98,.3); }
.post-content__inner a:hover { border-color: var(--green); }
.post-content__inner ul,
.post-content__inner ol { padding-left: 24px; margin-bottom: 24px; }
.post-content__inner li { margin-bottom: 8px; }
.post-content__inner blockquote {
  border-left: 3px solid var(--green);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
}
.post-content__inner img {
  border-radius: 8px;
  margin: 32px auto;
  width: 100%;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story { background: var(--off-white); padding: 80px 0 88px; }
.story__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}
.story__photo-wrap { position: sticky; top: 100px; }
.story__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  background: linear-gradient(160deg, #c8e0d4 0%, #e8e0d0 100%);
}
.story__photo-caption {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}
.story__photo-caption span {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-top: 4px;
}
.story__content h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 32px;
}
.story__content h2 em { font-style: italic; color: var(--green); font-weight: 400; }
.story__content p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 22px;
}
.story__signature {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.story__sig-line {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-dark);
}
.story__sig-role {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.manifesto { background: var(--cream-mid); padding: 80px 0; }
.manifesto__header { text-align: center; margin-bottom: 56px; }
.manifesto__title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
}
.manifesto__title em { font-style: italic; color: var(--green); font-weight: 400; }
.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.manifesto__col { background: var(--off-white); padding: 44px 48px; }
.manifesto__col-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}
.manifesto__list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.manifesto__list li {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text-dark);
  line-height: 1.4;
  padding-left: 18px;
  position: relative;
}
.manifesto__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 14px;
  line-height: 1.8;
}

/* ============================================================
   NEWSLETTER PAGE
   ============================================================ */
.nl-hero { background: var(--cream-light); padding: 96px 0 88px; text-align: center; border-bottom: 1px solid var(--border); }
.nl-hero__title {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 24px;
}
.nl-hero__title em { font-style: italic; color: var(--green); font-weight: 400; }
.nl-hero__sub { font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--text-muted); max-width: 440px; margin: 0 auto; }

.nl-what { background: var(--off-white); padding: 80px 0; }
.nl-what__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.nl-what__title { font-family: var(--serif); font-size: clamp(22px, 3vw, 32px); font-weight: 500; color: var(--text-dark); line-height: 1.3; margin-bottom: 44px; }
.nl-what__list { list-style: none; text-align: left; border-top: 1px solid var(--border); }
.nl-what__item { display: flex; align-items: baseline; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.nl-what__dash { font-family: var(--serif); font-size: 20px; color: var(--green); flex-shrink: 0; }
.nl-what__text { font-family: var(--serif); font-size: 20px; color: var(--text-dark); line-height: 1.4; }
.nl-what__text span { font-style: italic; color: var(--green); }

.nl-form { background: var(--cream-mid); padding: 88px 0; text-align: center; }
.nl-form__title { font-family: var(--serif); font-size: clamp(26px, 4vw, 40px); font-weight: 500; color: var(--text-dark); line-height: 1.2; margin-bottom: 12px; }
.nl-form__sub { font-size: 15px; font-weight: 300; color: var(--text-muted); margin-bottom: 44px; }
.nl-form__wrap { display: flex; max-width: 480px; margin: 0 auto 16px; }
.nl-form__input {
  flex: 1; padding: 16px 22px;
  font-family: var(--sans); font-size: 15px;
  color: var(--text-dark); background: #fff;
  border: 1px solid var(--border); border-right: none;
  border-radius: 100px 0 0 100px; outline: none;
  transition: border-color .2s;
}
.nl-form__input::placeholder { color: var(--text-muted); }
.nl-form__input:focus { border-color: var(--green); }
.nl-form__btn { padding: 16px 32px; border-radius: 0 100px 100px 0; font-size: 15px; }
.nl-form__note { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__logo { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.footer__links { display: flex; gap: 28px; }
.footer__links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s;
}
.footer__links a:hover { color: var(--green); }
.footer__copy { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .posts__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .blog-grid   { grid-template-columns: repeat(2, 1fr); }
  .story__inner { grid-template-columns: 280px 1fr; gap: 48px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section: 64px; --pad-x: 20px; }

  .nav { position: relative; padding: 14px 0; }
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream-light);
    border-bottom: 1px solid var(--border);
    padding: 0 var(--pad-x);
    z-index: 99;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { border-bottom: 1px solid var(--border); padding: 14px 0; }
  .nav__links li:last-child { border-bottom: none; }

  .hero { padding: 64px 0 56px; }
  .posts__grid { grid-template-columns: 1fr; gap: 40px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 36px; }
  .why__grid { grid-template-columns: 1fr; gap: 36px; }
  .newsletter__form { flex-direction: column; gap: 10px; }
  .newsletter__input { border: 1px solid var(--border); border-radius: 100px; }
  .newsletter__btn { border-radius: 100px; }

  .page-header { padding: 48px 0 40px; }
  .filters { top: 55px; }
  .featured { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; padding-bottom: 48px; }
  .blog-grid { grid-template-columns: 1fr; gap: 40px; }

  .story { padding: 56px 0 64px; }
  .story__inner { grid-template-columns: 1fr; gap: 36px; }
  .story__photo-wrap { position: static; }
  .story__photo { aspect-ratio: 3 / 2; max-height: 320px; }
  .manifesto__grid { grid-template-columns: 1fr; }
  .manifesto__col { padding: 36px 28px; }

  .nl-hero { padding: 64px 0 56px; }
  .nl-form__wrap { flex-direction: column; gap: 10px; }
  .nl-form__input { border: 1px solid var(--border); border-radius: 100px; }
  .nl-form__btn { border-radius: 100px; }

  .newsletter-strip__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .newsletter-strip__form { flex-direction: column; gap: 10px; width: 100%; }
  .newsletter-strip__input { width: 100%; border: 1px solid var(--border); border-radius: 100px; }
  .newsletter-strip__btn { border-radius: 100px; }

  .footer__inner { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
}
