:root {
  --color-bg: #f7f9f4;
  --color-bg-alt: #ffffff;
  --color-panel: rgba(255, 255, 255, 0.88);
  --color-panel-light: rgba(255, 255, 255, 0.95);
  --color-card-border: rgba(35, 74, 63, 0.16);
  --color-text: #23332f;
  --color-text-muted: rgba(35, 51, 47, 0.72);
  --color-eyebrow: #3d7a6d;
  --color-accent: #d96d4a;
  --color-accent-glow: rgba(217, 109, 74, 0.35);
  --color-ghost-border: rgba(61, 122, 109, 0.22);
  --color-panel-gradient: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(238, 246, 240, 0.95) 100%
  );
  --color-hero-aurora: linear-gradient(
    135deg,
    rgba(103, 182, 167, 0.65),
    rgba(214, 231, 208, 0.55)
  );
  --color-hero-forest: linear-gradient(
    135deg,
    rgba(165, 205, 189, 0.65),
    rgba(215, 229, 223, 0.4)
  );
  --font-sans: "Inter", "gesta", sans-serif;
  --font-serif: "Playfair Display", "Times New Roman", serif;
  --container-width: min(1180px, 92vw);
  --shadow-soft: 0 24px 60px rgba(38, 67, 56, 0.12);
  --shadow-card: 0 20px 55px rgba(38, 67, 56, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  background: linear-gradient(180deg, #f7f9f4 0%, #ffffff 55%, #eef4ef 100%);
  color: var(--color-text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  padding-top: 96px;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--color-eyebrow);
  margin-bottom: 18px;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 620px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: #1a2622;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 3.3vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.9rem, 2.5vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  color: #2b3d36;
}

h4 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #26342f;
}

p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

section {
  padding: 120px 0;
}

.section-heading {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 60px auto;
}

.section-lead {
  color: var(--color-text-muted);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  background: rgba(247, 249, 244, 0.4);
  backdrop-filter: blur(12px);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(38, 67, 56, 0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 26px 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #23332f;
}

.brand-wordmark {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #243730;
}

.logo-image {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 12px 18px rgba(38, 67, 56, 0.18));
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.93rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.2s ease;
  color: #2f463f;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-eyebrow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(57, 122, 111, 0.08);
  border: 1px solid rgba(57, 122, 111, 0.3);
  border-radius: 999px;
  transition: border 0.25s ease, background 0.25s ease, color 0.25s ease;
  color: #2f463f;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(57, 122, 111, 0.6);
  background: rgba(57, 122, 111, 0.16);
  color: #1f342d;
}

.burger-menu {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(61, 122, 109, 0.35);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.burger-menu .line {
  display: block;
  width: 22px;
  height: 2px;
  background: #1f342d;
  margin: 3px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-menu.active .line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.burger-menu.active .line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: 0 0 72px 0;
  background: linear-gradient(
    180deg,
    rgba(247, 249, 244, 0.96),
    rgba(235, 244, 238, 0.88)
  );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 12%,
    rgba(122, 211, 190, 0.2),
    rgba(247, 249, 244, 0)
  );
  pointer-events: none;
}

.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: min(70vh, 720px);
  min-height: 460px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  left: clamp(28px, 6vw, 72px);
  bottom: clamp(28px, 10vh, 96px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #ffffff;
  text-shadow: 0 18px 45px rgba(12, 22, 18, 0.45);
  z-index: 2;
}

.hero-overlay h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  max-width: 500px;
}

.hero-overlay .cta-group {
  margin: 12px 0 0 0;
}

.hero-overlay .btn {
  backdrop-filter: blur(8px);
}

.hero-overlay .btn-primary {
  background: rgba(255, 255, 255, 0.9);
  color: #1f342d;
  box-shadow: 0 18px 40px rgba(12, 22, 18, 0.25);
}

.hero-overlay .btn-primary:hover,
.hero-overlay .btn-primary:focus-visible {
  background: #ffffff;
  transform: translateY(-2px);
}

.hero-overlay .btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: rgba(31, 52, 45, 0.18);
}

.hero-overlay .btn-ghost:hover,
.hero-overlay .btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(31, 52, 45, 0.35);
}

.cta-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease, color 0.25s ease, border 0.25s ease;
  cursor: pointer;
  color: inherit;
}

.btn span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn i {
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-accent);
  color: #fffdfb;
  box-shadow: 0 18px 40px var(--color-accent-glow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 26px 48px rgba(217, 109, 74, 0.42);
}

.btn-secondary {
  background: transparent;
  color: #23332f;
  border: 1px solid rgba(61, 122, 109, 0.35);
  padding: 14px 22px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  justify-content: center;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(61, 122, 109, 0.65);
  background: rgba(98, 160, 146, 0.12);
}

.btn-ghost {
  background: transparent;
  color: #23332f;
  border: 1px solid var(--color-ghost-border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(61, 122, 109, 0.55);
  background: rgba(61, 122, 109, 0.1);
}

.hero-gallery {
  position: relative;
  z-index: 2;
  margin: 36px auto 0;
  width: var(--container-width);
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 6px;
  scroll-snap-type: x mandatory;
}

.hero-gallery figure {
  flex: 1;
  min-width: 220px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(61, 122, 109, 0.18);
  box-shadow: 0 20px 45px rgba(38, 67, 56, 0.12);
  scroll-snap-align: start;
}

.hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.hero-gallery figure:hover img {
  transform: scale(1.03);
}

.hero-gallery figcaption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.68rem;
  text-shadow: 0 12px 30px rgba(12, 22, 18, 0.5);
}

/* Lookbook */
.lookbook {
  background: linear-gradient(180deg, rgba(247, 249, 244, 0.9), #ffffff 100%);
}

.lookbook-intro {
  max-width: 720px;
  margin-bottom: 48px;
}

.lookbook-intro h2 {
  margin-bottom: 16px;
}

.lookbook-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lookbook-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(61, 122, 109, 0.12);
  box-shadow: 0 20px 45px rgba(38, 67, 56, 0.12);
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lookbook-item:hover img {
  transform: scale(1.05);
}

.lookbook-item--wide {
  grid-column: span 2;
}

.lookbook-item--tall {
  grid-row: span 2;
}

.lookbook-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(
    180deg,
    rgba(14, 27, 23, 0) 40%,
    rgba(18, 31, 27, 0.85) 100%
  );
  color: #ffffff;
}

.lookbook-overlay h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #ffffff;
}

.lookbook-overlay p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
}

.lookbook-location {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Campaign */
.campaign {
  background: linear-gradient(180deg, rgba(238, 244, 239, 0.6), #ffffff 100%);
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.campaign-figure {
  margin: 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(61, 122, 109, 0.18);
  box-shadow: 0 28px 60px rgba(38, 67, 56, 0.14);
}

.campaign-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-figure figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(
    180deg,
    rgba(18, 31, 27, 0) 0%,
    rgba(18, 31, 27, 0.82) 100%
  );
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.campaign-copy h2 {
  margin-bottom: 20px;
}

.campaign-copy p {
  max-width: 520px;
}

.campaign-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.campaign-details h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #23332f;
}

.campaign-details p {
  margin: 0;
  font-size: 0.92rem;
}

.campaign-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Brand story */
.brand-story {
  background: linear-gradient(180deg, #ffffff 0%, #eef4ef 100%);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.story-highlights {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.highlight {
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(61, 122, 109, 0.16);
  box-shadow: 0 14px 30px rgba(38, 67, 56, 0.12);
}

.highlight h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: #2b4038;
}

.highlight-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(98, 160, 146, 0.16);
  color: #3d7a6d;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.story-media {
  margin: 0;
}

.media-frame {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(61, 122, 109, 0.2);
  box-shadow: 0 24px 45px rgba(38, 67, 56, 0.18);
  position: relative;
}

.media-frame img {
  height: 100%;
  object-fit: cover;
}

.media-frame figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(33, 55, 47, 0.75) 100%
  );
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

/* Experience */
.experience {
  background: linear-gradient(
    180deg,
    rgba(238, 244, 239, 0.9),
    rgba(255, 255, 255, 0.95)
  );
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.experience-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(61, 122, 109, 0.16);
  box-shadow: var(--shadow-soft);
}

.experience-card p {
  font-size: 0.95rem;
}

/* Collections */
.collections {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(235, 245, 238, 0.95) 100%
  );
}

.collection-group + .collection-group {
  margin-top: 72px;
}

.collection-header {
  max-width: 640px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  position: relative;
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(61, 122, 109, 0.16);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 100%;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(155, 197, 178, 0.16),
    transparent 60%
  );
  pointer-events: none;
}

.product-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(61, 122, 109, 0.18);
}

.product-media img {
  transition: transform 0.35s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-body p {
  font-size: 0.95rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(98, 160, 146, 0.16);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2b4038;
}

.color-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.color-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 0 1px rgba(35, 74, 63, 0.18),
    0 0 0 5px rgba(35, 74, 63, 0);
}

.color-btn:hover,
.color-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(35, 74, 63, 0.42),
    0 0 0 5px rgba(122, 211, 190, 0.22);
}

.color-btn:focus-visible {
  outline: none;
}

.product-body .btn-secondary {
  align-self: flex-start;
}

/* Field notes */
.field-notes {
  background: linear-gradient(
      145deg,
      rgba(244, 250, 245, 0.96),
      rgba(223, 236, 226, 0.92)
    ),
    url("./hero_header.jpg") center/cover fixed no-repeat;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.testimonial {
  padding: 32px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(61, 122, 109, 0.18);
  box-shadow: var(--shadow-card);
}

.testimonial .quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #243730;
  margin-bottom: 24px;
}

.testimonial .author {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: rgba(47, 70, 63, 0.62);
}

/* CTA banner */
.cta-banner {
  background: radial-gradient(
    circle at top right,
    rgba(217, 109, 74, 0.22),
    rgba(255, 255, 255, 0.95) 65%
  );
  padding: 100px 0;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: #f1f5f1;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(61, 122, 109, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 40px;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 18px;
  color: rgba(47, 70, 63, 0.7);
}

.footer-logo {
  height: 46px;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav h3,
.footer-contact h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(36, 56, 49, 0.7);
}

.footer-nav a,
.footer-contact a {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: rgba(36, 56, 49, 0.72);
  transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #1f342d;
}

.footer-note {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(36, 56, 49, 0.42);
  margin-top: 12px;
}

.footer-bottom {
  margin-top: 60px;
  text-align: center;
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(36, 56, 49, 0.45);
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-media img {
    height: min(68vh, 640px);
  }

  .hero-overlay {
    left: clamp(24px, 6vw, 48px);
    right: clamp(24px, 6vw, 48px);
    bottom: 56px;
    max-width: none;
  }

  .hero-overlay h1 {
    font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  }

  .hero-gallery {
    width: 94vw;
  }

  .brand-story-grid {
    grid-template-columns: 1fr;
  }

  .media-frame {
    max-width: 520px;
  }

  .lookbook-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lookbook-item--wide {
    grid-column: span 3;
  }

  .lookbook-item--tall {
    grid-row: span 1;
  }

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

  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 900px) {
  .primary-nav {
    position: absolute;
    top: 90%;
    right: 0;
    width: calc(100% - 32px);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(61, 122, 109, 0.18);
    border-radius: 18px;
    display: none;
    box-shadow: var(--shadow-card);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .nav-links a {
    padding: 6px 0;
  }

  .nav-cta {
    width: 100%;
  }

  .burger-menu {
    display: inline-flex;
  }

  .hero-gallery {
    gap: 16px;
    width: 92vw;
  }

  .hero-gallery figure {
    min-width: 200px;
  }

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

  .lookbook-item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  main {
    padding-top: 88px;
  }

  section {
    padding: 90px 0;
  }

  .hero {
    padding: 0 0 56px 0;
  }

  .cta-group {
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-overlay {
    left: 24px;
    right: 24px;
    bottom: 32px;
  }

  .hero-overlay h1 {
    font-size: clamp(2.1rem, 6vw, 3rem);
  }

  .hero-overlay .btn {
    width: 100%;
  }

  .hero-gallery {
    width: 90vw;
    margin-top: 28px;
  }

  .lookbook-actions {
    flex-direction: column;
  }

  .campaign-actions {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .container {
    width: 90vw;
  }

  .hero-media img {
    min-height: 360px;
  }

  .hero-gallery {
    gap: 14px;
  }

  .hero-gallery figure {
    min-width: 170px;
  }

  .hero-gallery figcaption {
    font-size: 0.62rem;
  }

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

  .lookbook-item--wide {
    grid-column: span 1;
  }

  .testimonial {
    padding: 26px;
  }

  .banner-inner {
    gap: 32px;
  }
}
