:root {
  --brown: #562817;
  --brown-dark: #34170f;
  --terracotta: #be7b5d;
  --cream: #f8f4ef;
  --sand: #e8ded5;
  --ink: #2e211d;
  --muted: #7d6a62;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(52, 23, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Avenir, "Avenir Next", Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(86, 40, 23, 0.96);
  box-shadow: 0 12px 40px rgba(52, 23, 15, 0.18);
  padding-block: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.mail-love {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.mail-love:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.mail-love svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mail-love-icon {
  width: 21px;
  height: 21px;
}

.mail-love-heart {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 11px;
  height: 11px;
  fill: var(--white);
  stroke-width: 1.4;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--sand);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  background: var(--brown);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(52, 23, 15, 0.18), rgba(52, 23, 15, 0.14) 38%, rgba(52, 23, 15, 0.74));
}

.hero-title {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 34vh clamp(18px, 4vw, 54px) clamp(46px, 9vw, 96px);
  color: var(--white);
  text-align: center;
}

.hero-title p,
.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title h1 {
  margin: 0 auto 28px;
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8.6vw, 7.2rem);
  font-weight: 400;
  line-height: 0.92;
}

.hero-title .hero-subtitle {
  max-width: 720px;
  margin: -8px auto 28px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-transform: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid var(--brown);
  border-radius: 999px;
  background: var(--brown);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

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

.button-light {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.button-outline {
  background: transparent;
  color: var(--brown);
}

.section,
.section-brown,
.footer {
  padding: clamp(68px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.section {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.brands-copy h2,
.footer h2 {
  margin: 0;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 400;
  line-height: 1;
}

.niches-section {
  padding-bottom: clamp(36px, 6vw, 74px);
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.niche-grid span {
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 18px 14px;
  border: 1px solid rgba(86, 40, 23, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--brown);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(52, 23, 15, 0.07);
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.brands-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.eyebrow {
  color: var(--terracotta);
}

.profile-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.profile-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
}

.profile-photo-wrap img {
  aspect-ratio: 4 / 5;
  object-position: 46% 48%;
}

.profile-card > div:last-child {
  padding: 22px;
  text-align: center;
}

.profile-card strong,
.profile-card span {
  display: block;
}

.profile-card strong {
  color: var(--brown);
  font-size: 1.15rem;
}

.profile-card span {
  margin-top: 4px;
  color: var(--muted);
}

.profile-emoji {
  position: absolute;
  z-index: 1;
  display: grid;
  width: auto;
  height: auto;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: clamp(1.6rem, 3.1vw, 2.25rem);
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 8px 22px rgba(52, 23, 15, 0.28);
}

.emoji-like {
  top: 29%;
  left: 9%;
  transform: rotate(-10deg);
}

.emoji-heart-eyes {
  top: 25%;
  right: 18%;
  transform: rotate(8deg);
}

.emoji-brown-heart {
  left: 14%;
  bottom: 33%;
  transform: rotate(10deg);
}

.emoji-star {
  right: 18%;
  bottom: 34%;
  transform: rotate(-12deg);
}

.emoji-sparkles {
  top: 43%;
  right: 8%;
  transform: rotate(14deg);
}

.section-brown {
  background: var(--brown);
  color: var(--white);
}

.metrics {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.section-brown .eyebrow,
.section-brown h2 {
  color: var(--white);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.metric-grid article {
  min-height: 170px;
  min-width: 0;
  padding: clamp(20px, 2.5vw, 28px);
  background: var(--brown);
}

.metric-grid strong {
  display: block;
  font-size: clamp(2.15rem, 3.45vw, 3.35rem);
  line-height: 1;
  white-space: nowrap;
}

.metric-grid span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  line-height: 1.45;
}

.compact {
  max-width: 820px;
  margin-bottom: clamp(32px, 6vw, 68px);
}

.instagram-section {
  width: 100%;
  max-width: none;
  padding-inline: clamp(24px, 2.5vw, 52px);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1.05vw, 16px);
  align-items: start;
  padding-top: 4px;
}

.reel-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #000000;
  color: var(--white);
  aspect-ratio: 9 / 16;
}

.reel-card a,
.reel-card video {
  display: block;
  width: 100%;
  height: 100%;
}

.reel-card a {
  color: inherit;
  text-decoration: none;
}

.reel-card video {
  object-fit: cover;
  border: 0;
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.reel-card:hover video {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.04);
}

.brands {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.brands-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brands-photo img {
  aspect-ratio: 4 / 5;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.logo-mark {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(86, 40, 23, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.logo-mark img {
  width: min(100%, 190px);
  height: 62px;
  object-fit: contain;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 1px;
  background: rgba(86, 40, 23, 0.16);
  border: 1px solid rgba(86, 40, 23, 0.16);
}

.faq-list article {
  padding: clamp(24px, 3vw, 38px);
  background: var(--cream);
}

.faq-list h3 {
  margin: 0 0 12px;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.05;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-grid article {
  min-width: 0;
  padding: clamp(26px, 4vw, 46px);
  background: var(--brown);
}

.service-grid h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
}

.service-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  background: var(--sand);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: var(--brown);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid img:not(:nth-child(2)) {
    display: none;
  }

  .about-section,
  .metrics,
  .brands,
  .faq-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .niche-grid,
  .logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reels-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    width: 42px;
    height: 42px;
  }

  .mail-love {
    width: 42px;
    height: 42px;
  }

  .hero-title {
    padding-top: 42vh;
  }

  .metric-grid,
  .service-grid,
  .niche-grid,
  .logo-wall {
    grid-template-columns: 1fr;
  }

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

  .button,
  .footer-actions {
    width: 100%;
  }
}
