:root {
  --black: #111111;
  --soft-black: #181818;
  --pink: #e5308a;
  --pink-dark: #bd1d6e;
  --gold: #c8a568;
  --cream: #f5f0e8;
  --paper: #fbfaf8;
  --gray: #767676;
  --line: #dedbd6;
  --white: #ffffff;
  --container: 1240px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.announcement-bar {
  position: relative;
  z-index: 110;
  color: var(--white);
  background: var(--black);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.announcement-content {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.announcement-content p {
  margin: 0;
}

.announcement-content a {
  color: var(--gold);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(17,17,17,.08);
  background: rgba(251,250,248,.94);
  backdrop-filter: blur(16px);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  background: rgba(255,255,255,.96);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  width: 138px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-block: 12px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

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

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

.text-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--black);
  transition: transform .25s ease, opacity .25s ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-dark:hover {
  background: var(--pink);
}

.button-pink {
  color: var(--white);
  background: var(--pink);
}

.button-pink:hover {
  background: var(--pink-dark);
}

.button-outline {
  border-color: rgba(17,17,17,.38);
}

.button-outline:hover {
  color: var(--white);
  border-color: var(--black);
  background: var(--black);
}

.button-light {
  color: var(--black);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--pink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 121px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(229,48,138,.13), transparent 24%),
    radial-gradient(circle at 66% 75%, rgba(200,165,104,.16), transparent 28%),
    var(--cream);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .19;
  background-image:
    linear-gradient(rgba(17,17,17,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 75%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 54px;
  padding-block: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: #f3c6dc;
}

.hero h1,
.section h2,
.newsletter-section h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.03;
  letter-spacing: -.03em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 6.5vw, 94px);
}

.hero-copy > p {
  max-width: 650px;
  margin: 26px 0 0;
  color: #4e4a45;
  font-size: 17px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(17,17,17,.15);
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-trust span {
  color: var(--gray);
  font-size: 11px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product {
  position: relative;
  z-index: 2;
  width: min(100%, 610px);
  filter: drop-shadow(0 34px 35px rgba(0,0,0,.18));
  animation: float 5s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(229,48,138,.35), rgba(200,165,104,.28));
  filter: blur(15px);
}

.floating-note {
  position: absolute;
  z-index: 3;
  max-width: 188px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.75);
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}

.floating-note span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.floating-note p {
  margin: 5px 0 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.note-one {
  top: 19%;
  right: -2%;
}

.note-two {
  left: -2%;
  bottom: 19%;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 27px;
  height: 44px;
  border: 1px solid rgba(17,17,17,.35);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--pink);
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.brand-strip {
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.brand-strip-track {
  width: max-content;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: marquee 28s linear infinite;
}

.brand-strip span {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  white-space: nowrap;
}

.brand-strip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.section {
  padding: 120px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 100px;
}

.section h2,
.newsletter-section h2 {
  font-size: clamp(43px, 5vw, 68px);
}

.section-copy {
  padding-top: 48px;
}

.section-copy p {
  color: #5e5a55;
}

.section-copy .lead {
  margin-top: 0;
  color: var(--black);
  font-size: 20px;
  line-height: 1.65;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.arrow-link span {
  color: var(--pink);
  font-size: 20px;
  transition: transform .2s ease;
}

.arrow-link:hover span {
  transform: translateX(5px);
}

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

.center-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.center-heading .eyebrow::before {
  display: none;
}

.center-heading p {
  max-width: 600px;
  margin: 20px auto 0;
  color: var(--gray);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(2, 390px);
  gap: 18px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #222;
}

.collection-large {
  grid-row: 1 / 3;
}

.collection-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.collection-card:hover img {
  transform: scale(1.045);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.77), rgba(0,0,0,.05) 65%);
}

.collection-content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px;
}

.collection-content span {
  color: #f3c6dc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.collection-content h3 {
  margin: 7px 0;
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: 1;
}

.collection-content p {
  max-width: 450px;
  margin: 0 0 12px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.collection-content strong {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.collection-dark {
  background: var(--black);
}

.abstract-lines {
  position: absolute;
  inset: -15%;
  opacity: .45;
  background:
    radial-gradient(circle at 30% 30%, rgba(229,48,138,.8), transparent 20%),
    radial-gradient(circle at 72% 65%, rgba(200,165,104,.62), transparent 25%);
}

.abstract-lines::before,
.abstract-lines::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 48% 52% 60% 40%;
  transform: rotate(24deg);
}

.abstract-lines::after {
  inset: 28%;
  transform: rotate(-18deg);
}

.section-action {
  margin-top: 42px;
  text-align: center;
}

.professional-section {
  padding: 0;
  color: var(--white);
  background: var(--black);
}

.professional-grid {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.professional-image {
  position: relative;
  min-height: 760px;
}

.professional-image img {
  height: 100%;
  object-fit: cover;
}

.professional-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35), transparent 55%);
}

.professional-badge {
  position: absolute;
  z-index: 2;
  left: 50px;
  bottom: 45px;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--cream);
  text-align: center;
}

.professional-badge strong {
  color: var(--pink);
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: 1;
}

.professional-badge span {
  max-width: 115px;
  margin-top: 7px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.professional-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(40px, 8vw, 120px);
}

.professional-copy h2 {
  max-width: 700px;
}

.professional-copy > p {
  max-width: 650px;
  margin: 28px 0;
  color: rgba(255,255,255,.67);
}

.feature-list {
  margin: 4px 0 36px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

.feature-list span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 800;
}

.feature-list p {
  margin: 0;
  color: rgba(255,255,255,.73);
  font-size: 14px;
}

.feature-list strong {
  color: var(--white);
}

.professional-copy .button {
  align-self: flex-start;
}

.quality-section {
  background: var(--cream);
}

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

.quality-card {
  min-height: 315px;
  padding: 32px;
  border: 1px solid rgba(17,17,17,.12);
  background: rgba(255,255,255,.55);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.quality-card:hover {
  transform: translateY(-7px);
  background: var(--white);
  box-shadow: 0 24px 50px rgba(0,0,0,.08);
}

.quality-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 65px;
  border: 1px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.quality-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 25px;
}

.quality-card p {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
}

.featured-product {
  background: var(--white);
}

.featured-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.featured-copy p {
  max-width: 540px;
  color: var(--gray);
  font-size: 17px;
}

.featured-visual {
  min-height: 570px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(229,48,138,.17), transparent 43%),
    var(--cream);
}

.featured-visual img {
  width: min(90%, 690px);
  filter: drop-shadow(0 35px 26px rgba(0,0,0,.16));
}

.testimonials {
  padding-top: 20px;
  background: var(--white);
}

.testimonial-shell {
  padding: 75px 9%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.quote-mark {
  color: var(--pink);
  font-family: "Playfair Display", serif;
  font-size: 72px;
  line-height: .6;
}

.testimonial-shell blockquote {
  max-width: 940px;
  margin: 22px auto 26px;
  font-family: "Playfair Display", serif;
  font-size: clamp(31px, 4vw, 49px);
  line-height: 1.22;
}

.testimonial-shell p {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

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

.social-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.social-heading h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.social-links {
  display: flex;
  gap: 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.social-links a:hover {
  color: var(--pink);
}

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

.social-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
}

.social-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.social-card:hover img {
  transform: scale(1.05);
}

.social-card span {
  position: absolute;
  left: 15px;
  bottom: 15px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(0,0,0,.75);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.newsletter-section {
  padding: 90px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 30%, rgba(229,48,138,.38), transparent 25%),
    var(--black);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 90px;
}

.newsletter-grid p {
  max-width: 540px;
  color: rgba(255,255,255,.64);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
}

.newsletter-form input {
  min-width: 0;
  height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.35);
  border-right: 0;
  color: var(--white);
  outline: none;
  background: transparent;
}

.newsletter-form input:focus {
  border-color: var(--pink);
}

.newsletter-form button {
  min-width: 145px;
  border: 0;
  color: var(--white);
  background: var(--pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter-form small {
  grid-column: 1 / -1;
  margin-top: 12px;
  color: rgba(255,255,255,.44);
  font-size: 9px;
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255,255,255,.68);
  background: #090909;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 330px;
  font-size: 13px;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin: 9px 0;
  font-size: 12px;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: .13s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 15px); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 150px 1fr auto;
    gap: 20px;
  }

  .main-nav {
    gap: 16px;
    font-size: 10px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .professional-copy {
    padding-inline: 55px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .announcement-content p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .announcement-content a {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .text-link {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 40px 24px;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform .35s ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Playfair Display", serif;
    font-size: 28px;
    text-transform: none;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 70px 90px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    text-align: left;
  }

  .hero-visual {
    min-height: 520px;
  }

  .scroll-cue {
    display: none;
  }

  .split-grid,
  .featured-grid,
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-copy {
    padding-top: 0;
  }

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

  .professional-image {
    min-height: 600px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 540px 390px 390px 390px;
  }

  .collection-large {
    grid-row: auto;
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .announcement-bar {
    font-size: 9px;
  }

  .header-actions .button {
    display: none;
  }

  .brand {
    width: 118px;
  }

  .section {
    padding: 84px 0;
  }

  .hero-grid {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-visual {
    min-height: 385px;
  }

  .floating-note {
    max-width: 145px;
    padding: 11px;
  }

  .note-one {
    top: 8%;
    right: -4%;
  }

  .note-two {
    left: -3%;
    bottom: 8%;
  }

  .section h2,
  .newsletter-section h2 {
    font-size: 42px;
  }

  .section-copy .lead {
    font-size: 17px;
  }

  .collection-grid {
    grid-template-rows: repeat(4, 410px);
  }

  .collection-content {
    padding: 25px;
  }

  .collection-content h3 {
    font-size: 33px;
  }

  .professional-image {
    min-height: 470px;
  }

  .professional-badge {
    left: 20px;
    bottom: 20px;
    width: 140px;
    height: 140px;
  }

  .professional-copy {
    padding: 72px 24px;
  }

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

  .quality-card {
    min-height: auto;
  }

  .quality-icon {
    margin-bottom: 35px;
  }

  .featured-visual {
    min-height: 400px;
  }

  .testimonial-shell {
    padding-inline: 0;
  }

  .social-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .social-grid {
    gap: 8px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form input {
    border-right: 1px solid rgba(255,255,255,.35);
  }

  .newsletter-form button {
    height: 52px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Official KEYAK logo */
.brand img {
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}


/* Official KEYAK logo in footer */
.footer-brand img {
  width: 170px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
  background: #ffffff;
  padding: 8px 10px;
}


/* Integrated KEYAK photography */
.hero {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.63) 43%, rgba(0,0,0,.16) 68%, rgba(0,0,0,.22) 100%),
    url("../images/hero-keyak.webp") center center / cover no-repeat;
}

.hero-pattern,
.hero-glow {
  display: none;
}

.hero-grid {
  min-height: calc(100vh - 121px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 5px 28px rgba(0,0,0,.34);
}

.hero-copy > p {
  color: rgba(255,255,255,.78);
}

.hero .button-outline {
  color: #ffffff;
  border-color: rgba(255,255,255,.6);
}

.hero .button-outline:hover {
  color: #111111;
  background: #ffffff;
  border-color: #ffffff;
}

.hero-trust {
  border-top-color: rgba(255,255,255,.28);
}

.hero-trust strong {
  color: #ffffff;
}

.hero-trust span {
  color: rgba(255,255,255,.65);
}

.hero-visual {
  min-height: 560px;
}

.hero-photo {
  opacity: 0;
  pointer-events: none;
}

.collection-card img,
.professional-image img,
.featured-visual img,
.social-card img {
  object-fit: cover;
  object-position: center;
}

.collection-card:nth-child(2) img {
  object-position: 35% center;
}

.collection-card:nth-child(3) img {
  object-position: 25% center;
}

.professional-image img {
  object-position: 27% center;
}

.featured-visual {
  overflow: hidden;
  background: #080808;
}

.featured-visual img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  filter: none;
}

.social-card img {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .hero {
    background-position: 36% center;
  }

  .hero-grid {
    min-height: 760px;
    align-items: end;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero {
    background-position: 32% center;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.9) 68%);
  }

  .hero-grid {
    min-height: 720px;
    padding-top: 270px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-buttons {
    align-items: stretch;
  }
}


/* FINAL MOBILE STABILITY + VISIBLE HEADER + WEBP PHOTO FIX */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

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

img,
svg,
video,
canvas {
  max-width: 100%;
}

.site-header,
.header-inner,
.main-nav,
.hero,
.hero-grid,
.section,
.container,
.footer-grid,
.footer-bottom {
  max-width: 100%;
}

.site-header {
  overflow: visible !important;
}

.brand {
  display: inline-flex !important;
  align-items: center;
  width: 150px !important;
  min-width: 120px;
  min-height: 50px;
  overflow: visible !important;
}

.brand img {
  display: block !important;
  width: 100% !important;
  max-width: 150px !important;
  height: auto !important;
  max-height: 56px !important;
  object-fit: contain !important;
  object-position: left center !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.menu-toggle {
  position: relative;
  z-index: 1102;
  flex: 0 0 44px;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  padding: 9px !important;
  border: 1px solid rgba(17,17,17,.18) !important;
  background: #ffffff !important;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  opacity: 1 !important;
  visibility: visible !important;
}

.menu-toggle span {
  display: block !important;
  width: 23px !important;
  height: 2px !important;
  min-height: 2px;
  margin: 0 !important;
  border-radius: 2px;
  background: #111111 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg) !important;
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0 !important;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg) !important;
}

.footer-brand img {
  display: block !important;
  width: 185px !important;
  max-width: 185px !important;
  height: auto !important;
  max-height: 72px !important;
  margin: 0 0 22px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  object-fit: contain !important;
  object-position: left center !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 28px), var(--container)) !important;
  }

  .header-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .brand {
    width: 132px !important;
    min-width: 0 !important;
  }

  .brand img {
    max-width: 132px !important;
    max-height: 48px !important;
  }

  .menu-toggle {
    display: inline-flex !important;
  }

  .header-actions {
    display: none !important;
  }

  .main-nav {
    position: fixed !important;
    top: var(--header-height) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: calc(100dvh - var(--header-height)) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 28px 20px 40px !important;
    transform: translateX(100%) !important;
    background: #fbfaf8 !important;
  }

  .main-nav.is-open {
    transform: translateX(0) !important;
  }

  .hero {
    background-position: 38% center !important;
  }

  .hero-grid {
    width: 100% !important;
    min-height: 740px !important;
    padding: 240px 0 64px !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-visual {
    display: none !important;
  }

  .collection-grid,
  .professional-grid,
  .featured-grid,
  .newsletter-grid,
  .split-grid {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 22px), var(--container)) !important;
  }

  .site-header {
    height: 70px !important;
  }

  .brand {
    width: 118px !important;
  }

  .brand img {
    max-width: 118px !important;
    max-height: 44px !important;
  }

  .menu-toggle {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px;
  }

  .hero {
    background-position: 35% center !important;
  }

  .hero-grid {
    min-height: 700px !important;
    padding: 230px 0 50px !important;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 48px) !important;
  }

  .footer-brand img {
    width: 160px !important;
    max-width: 160px !important;
    max-height: 64px !important;
  }
}


/* SAME TYPOGRAPHY AS /products/ */
:root {
  --keyak-body-font: "Manrope", Arial, sans-serif;
  --keyak-heading-font: "Cormorant Garamond", Georgia, serif;
}

html,
body,
button,
input,
textarea,
select,
label,
small,
p,
a,
span,
strong,
em,
nav,
header,
footer,
section,
article,
div {
  font-family: var(--keyak-body-font) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.section h2,
.newsletter-section h2,
.collection-content h3,
.quality-card h3,
.testimonial-shell blockquote,
.brand-strip span,
.professional-badge strong {
  font-family: var(--keyak-heading-font) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.section h2,
.newsletter-section h2 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.main-nav a,
.button,
.eyebrow,
.header-actions,
.footer-grid,
.footer-bottom,
.hero-trust,
.collection-content strong,
.feature-list,
.social-links,
.newsletter-form,
.announcement-bar {
  font-family: var(--keyak-body-font) !important;
}


/* FINAL SINGLE FONT + CENTERED MOBILE HERO */
:root {
  --keyak-font-unified: "Manrope", Arial, sans-serif;
}

html,
body,
header,
main,
footer,
section,
article,
nav,
div,
span,
p,
a,
button,
input,
textarea,
select,
label,
small,
strong,
em,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
.hero h1,
.section h2,
.newsletter-section h2,
.collection-content h3,
.quality-card h3,
.testimonial-shell blockquote,
.brand-strip span,
.professional-badge strong,
.main-nav a,
.button,
.eyebrow,
.header-actions,
.footer-grid,
.footer-bottom,
.hero-trust,
.collection-content strong,
.feature-list,
.social-links,
.newsletter-form,
.announcement-bar {
  font-family: var(--keyak-font-unified) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.section h2,
.newsletter-section h2 {
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media (max-width: 900px) {
  .hero {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: calc(100dvh - 105px) !important;
    background-position: center center !important;
  }

  .hero-grid {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: auto !important;
    padding: 70px 0 56px !important;
  }

  .hero-copy {
    width: min(100%, 680px) !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .hero-copy > p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-buttons {
    justify-content: center !important;
  }

  .hero-trust {
    max-width: 620px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-visual {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 680px !important;
    background-position: center center !important;
  }

  .hero-grid {
    padding: 64px 0 46px !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .hero h1 {
    max-width: 100% !important;
    margin: 0 auto !important;
    font-size: clamp(38px, 11vw, 48px) !important;
    line-height: 1.05 !important;
  }

  .hero-copy > p {
    max-width: 92% !important;
    margin-top: 18px !important;
    font-size: 14px !important;
  }

  .hero-buttons {
    width: 100% !important;
    margin-top: 26px !important;
  }

  .hero-buttons .button {
    width: min(100%, 320px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-trust {
    width: 100% !important;
    margin-top: 30px !important;
    padding-top: 18px !important;
    gap: 12px !important;
  }
}
