/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --honey:   #F2A71B;
  --honey-d: #D48E0F;
  --cream:   #FFFDF5;
  --light:   #F9F1E0;
  --green:   #2D6A4F;
  --green-d: #1F4D39;
  --dark:    #1C1C1C;
  --mid:     #5A4A3A;
  --muted:   #9A8A7A;
  --white:   #FFFFFF;
  --border:  #EDE5D5;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Plus Jakarta Sans', system-ui, sans-serif;

  --radius:  0.75rem;
  --shadow:  0 4px 24px rgba(28, 28, 28, 0.08);
  --shadow-lg: 0 8px 40px rgba(28, 28, 28, 0.14);

  --max-w: 1200px;
  --section-py: 5rem;
}

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

/* ─── UTILITIES ──────────────────────────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100%);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: var(--section-py); }
.section--light { background: var(--light); }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--honey  { background: var(--honey); color: var(--dark); }
.btn--honey:hover { background: var(--honey-d); }
.btn--dark   { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: #333; }
.btn--green  { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-d); }
.btn--outline-dark {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}
.btn--outline-dark:hover { background: var(--dark); color: var(--white); }
.btn--outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.15); }
.btn--full { width: 100%; text-align: center; }

/* ─── NAV ────────────────────────────────────────────────────────────────── */
.nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__top {
  display: flex;
  justify-content: center;
  padding: 1.25rem 1.5rem 0.9rem;
}
.nav__logo-link { display: inline-block; line-height: 0; }
.nav__logo-img {
  width: 220px;
  height: 180px;
  object-fit: contain;
}
.nav__logo-img--light {
  filter: brightness(0) invert(1);
}
.nav__bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nav__bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-block: 0.55rem;
}
.nav__links {
  display: flex;
  align-items: center;
}
.nav__link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dark);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav__link:hover { background: var(--light); }
.nav__link.active {
  background: var(--honey);
  color: var(--dark);
}
.nav__sep {
  color: var(--border);
  font-weight: 300;
  user-select: none;
}
.nav__pill {
  position: absolute;
  right: 1.5rem;
  background: var(--honey);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
}
.nav__pill:hover { background: var(--honey-d); transform: translateY(-1px); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: absolute;
  right: 1.5rem;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── FLASH ──────────────────────────────────────────────────────────────── */
.flash-bar { padding: 0.75rem 1.5rem; text-align: center; }
.flash--success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  display: inline-block;
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  background: var(--green);
  color: var(--white);
  padding-block: 5rem 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 3rem;
  min-height: 480px;
}
.hero__text { padding-bottom: 4rem; }
.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 1rem;
}
.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__heading em {
  font-style: italic;
  color: var(--honey);
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 44ch;
  margin-bottom: 2rem;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__image {
  align-self: flex-end;
  position: relative;
}
.hero__image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: bottom center;
  filter: grayscale(100%)
    drop-shadow(5px 0 0 white)
    drop-shadow(-5px 0 0 white)
    drop-shadow(0 5px 0 white)
    drop-shadow(0 -5px 0 white);
}

/* ─── MARQUEE ────────────────────────────────────────────────────────────── */
.marquee {
  background: var(--honey);
  overflow: hidden;
  padding-block: 0.85rem;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 1.5rem;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
}
.marquee__track .dot { color: var(--green); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION HEADER ─────────────────────────────────────────────────────── */
.section__header {
  max-width: 56ch;
  margin-bottom: 3.5rem;
}
.section__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey-d);
  margin-bottom: 0.6rem;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section__title em { font-style: italic; color: var(--green); }
.section__sub { color: var(--mid); max-width: 52ch; }

/* ─── SERVICES INTRO ─────────────────────────────────────────────────────── */
.services-intro { border-bottom: 1px solid var(--border); }
.services-intro__inner { max-width: 680px; }
.services-intro__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 2.5rem;
}
.services-intro__heading em {
  font-style: italic;
  color: var(--honey);
}
.services-intro__item {
  padding-block: 1.75rem;
  border-top: 1px solid var(--border);
}
.services-intro__item h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--honey-d);
  margin-bottom: 0.75rem;
}
.services-intro__item p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 60ch;
}

/* ─── SERVICES GRID ──────────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--honey);
  transform: rotate(3deg);
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
  padding-top: 1rem;
  border-top: 2px solid var(--honey);}
.service-card p { font-size: 0.9rem; color: var(--mid); }

.services__cta { margin-top: 2.5rem; }

/* ─── INTENTIONAL SPLIT ──────────────────────────────────────────────────── */
.intentional__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.intentional__text {
  max-width: 600px;
  text-align: center;
  align-items: center;
}
.intentional__image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}
.intentional__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.intentional__logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0);
}
.intentional__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}
.intentional__heading em {
  font-style: italic;
  color: var(--honey);
}
.intentional__cta { align-self: center; }
.intentional__social {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}
.intentional__icon { color: var(--dark); transition: color 0.15s, transform 0.15s; }
.intentional__icon svg { width: 22px; height: 22px; display: block; }
.intentional__icon:hover { color: var(--honey-d); transform: translateY(-2px); }

/* ─── WHAT WE DO ─────────────────────────────────────────────────────────── */
.whatwedo__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--honey);
  text-align: center;
  margin-bottom: 3rem;
}
.whatwedo__block { margin-bottom: 3.5rem; }
.whatwedo__label {
  background: var(--honey);
  color: var(--white);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.whatwedo__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.whatwedo__list ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: disc;
  padding-left: 1.25rem;
}
.whatwedo__list li {
  font-size: 0.95rem;
  color: var(--mid);
}
.whatwedo__image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  max-height: 380px;
}

/* ─── ABOUT STRIP ────────────────────────────────────────────────────────── */
.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}
.about-strip__text p {
  color: var(--mid);
  margin-bottom: 1rem;
  max-width: 46ch;
}
.about-strip__text .section__title { margin-bottom: 1.25rem; }
.about-strip__text .btn { margin-top: 0.5rem; }
.about-strip__image img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

/* ─── PACKAGES ───────────────────────────────────────────────────────────── */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.package-card--featured {
  border-color: var(--honey);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.package-card__badge {
  display: inline-block;
  background: var(--honey);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.package-card__tier {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.package-card__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--honey-d);
  margin-bottom: 0.5rem;
}
.package-card__desc {
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 1.25rem;
}
.package-card ul {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.package-card li {
  font-size: 0.88rem;
  color: var(--mid);
  padding-left: 1.25rem;
  position: relative;
}
.package-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.packages__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--mid);
}
.packages__note a { color: var(--green); font-weight: 600; }
.packages__note a:hover { text-decoration: underline; }

/* ─── MISSION BANNER ─────────────────────────────────────────────────────── */
.mission-banner {
  background: var(--honey);
  padding-block: 3rem;
  text-align: center;
}
.mission-banner__text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: var(--white);
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.5;
}
.mission-banner__text em {
  font-style: italic;
  font-weight: 700;
}

/* ─── FEATURE ROWS ───────────────────────────────────────────────────────── */
.feature-rows { border-top: 1px solid var(--border); }
.feature-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.feature-row__label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--dark);
  text-align: right;
  padding-top: 0.2rem;
}
.feature-row__label--link {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.feature-row__label--link:hover { color: var(--honey-d); }
.feature-row__body {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 56ch;
}
.feature-rows__cta {
  text-align: center;
  padding-top: 2.5rem;
}
.btn-pill-outline {
  display: inline-block;
  border: 2px solid var(--dark);
  border-radius: 100px;
  padding: 0.65rem 2rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--dark);
  background: var(--white);
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.btn-pill-outline:hover {
  background: var(--honey);
  border-color: var(--honey);
  transform: translateY(-2px);
}

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-banner { background: var(--green); padding-block: 4rem; }
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.4rem;
}
.cta-banner__sub { color: rgba(255,255,255,0.8); font-weight: 500; }

/* ─── PAGE HERO ──────────────────────────────────────────────────────────── */
.page-hero {
  padding-block: 5rem;
  color: var(--white);
}
.page-hero--green { background: var(--green); }
.page-hero--honey { background: var(--honey); }
.page-hero .section__label { color: rgba(255,255,255,0.65); }
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero__title em { font-style: italic; color: var(--honey); }
.page-hero__title--dark { color: var(--dark); }
.page-hero__title--dark em { color: var(--green); }
.page-hero__sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 52ch; }
.page-hero__sub--dark { color: rgba(28,28,28,0.7); }

/* ─── SPLIT LAYOUT ───────────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split__text p { color: var(--mid); margin-bottom: 1rem; max-width: 46ch; }
.split__image img { border-radius: var(--radius); width: 100%; }

/* ─── VALUES GRID ────────────────────────────────────────────────────────── */
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--honey);
}
.value-card p { font-size: 0.88rem; color: var(--mid); }

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact__info .section__title { margin-bottom: 1rem; }
.contact__info p { color: var(--mid); margin-bottom: 1.5rem; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 0.75rem;
}
.contact__detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--honey-d);
  min-width: 5rem;
}
.contact__socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--honey);
}
.form-group textarea { resize: vertical; }

/* ─── SOCIAL ICONS ───────────────────────────────────────────────────────── */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  transition: background 0.2s, transform 0.15s;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }
.social-icon--dark {
  background: var(--light);
  color: var(--dark);
}
.social-icon--dark:hover { background: var(--honey); }

/* ─── ROLES (JOIN) ───────────────────────────────────────────────────────── */
.roles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.role-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.role-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.role-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
}
.role-card p { font-size: 0.88rem; color: var(--mid); margin-bottom: 1.25rem; }
.role-card ul { margin-bottom: 1.5rem; }
.role-card li {
  font-size: 0.85rem;
  color: var(--mid);
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.35rem;
}
.role-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--honey-d);
}
.role-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.role-badge--green { background: #D1FAE5; color: #065F46; }
.role-badge--honey { background: #FEF3C7; color: #92400E; }
.join__cta { text-align: center; }
.join__cta p { color: var(--mid); margin-bottom: 1.25rem; }

/* ─── SUBSCRIBE PAGE ─────────────────────────────────────────────────────── */
.subscribe-page {
  background: var(--white);
  padding-block: 5rem;
  text-align: center;
}
.subscribe-page__inner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.subscribe-page__logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0);
}
.subscribe-page__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}
.subscribe-page__heading em {
  font-style: italic;
  color: var(--honey);
}
.subscribe-page__sub {
  font-size: 0.92rem;
  color: var(--mid);
  max-width: 46ch;
  line-height: 1.7;
}
.subscribe-page__visual {
  width: 320px;
  max-width: 100%;
}
.subscribe-page__preview {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  filter: grayscale(100%);
}
.subscribe-page__form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.subscribe-page__input {
  flex: 1;
  min-width: 220px;
  padding: 0.8rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.subscribe-page__input:focus { border-color: var(--honey); }
.subscribe-page__btn {
  padding: 0.8rem 1.75rem;
  border-radius: 100px;
  border: none;
  background: var(--honey);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.subscribe-page__btn:hover { background: var(--honey-d); transform: translateY(-1px); }

/* ─── NEWSLETTER ─────────────────────────────────────────────────────────── */
.newsletter {
  background: var(--honey);
  padding-block: 2.5rem;
}
.newsletter__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.newsletter__left { flex: 1; }
.newsletter__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.newsletter__heading em { font-style: italic; }
.newsletter__sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}
.newsletter__form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.newsletter__input {
  padding: 0.65rem 1.1rem;
  border-radius: 100px;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  width: 220px;
  outline: none;
  color: var(--dark);
}
.newsletter__btn {
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  border: none;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.newsletter__btn:hover { background: #333; transform: translateY(-1px); }
.newsletter__divider {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.newsletter__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.newsletter__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.newsletter__icon {
  color: var(--dark);
  transition: color 0.15s, transform 0.15s;
}
.newsletter__icon svg { width: 22px; height: 22px; display: block; }
.newsletter__icon:hover { color: var(--white); transform: translateY(-2px); }
.newsletter__logo {
  width: 140px;
  height: auto;
  object-fit: contain;
  filter: brightness(0);
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding-block: 3rem 1.5rem;
  text-align: center;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer__logo-link { display: inline-block; line-height: 0; }
.footer__tagline { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer__social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.footer__copy {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.site-copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(28,28,28,0.4);
  background: var(--honey);
  padding: 0.75rem;
}

/* ─── FADE-IN ANIMATIONS ─────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in--delay { transition-delay: 0.15s; }
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }

  .newsletter__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .newsletter__divider {
    width: 100%;
    height: 1px;
  }
  .newsletter__right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav__pill { display: none; }
  .nav__burger { display: flex; }
  .nav__bar-inner { justify-content: center; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__sep { display: none; }
  .nav__link { padding: 0.65rem 0.75rem; border-radius: 0.5rem; }
  .nav__bar { position: relative; }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-bottom: 0;
  }
  .hero__text { padding-bottom: 2rem; }
  .hero__image { max-height: 340px; overflow: hidden; }
  .hero__image img { max-height: 340px; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-strip__image { order: -1; }
  .packages__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .package-card--featured { transform: none; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .roles__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__social { justify-content: center; }
  .footer__nav { gap: 1rem; }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .feature-row__label {
    text-align: left;
  }

  .whatwedo__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; }
}
