:root {
  --hot-pink: #FF2E7A;
  --red-pop: #FF2D2D;
  --orange-heat: #FF7A00;
  --sun-yellow: #FFD400;
  --lime-acid: #A6FF00;

  --ink: #141414;
  --ink-soft: #1f1f1f;
  --cream: #EEEEE9;
  --cream-line: #dcdcd5;
  --muted: #8a8a85;

  --font-script: "Playfair Display", serif;
  --font-body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Clears the sticky nav so anchored sections don't land under it. */
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 2px solid var(--hot-pink);
  outline-offset: 3px;
  border-radius: 2px;
}

ul { list-style: none; margin: 0; padding: 0; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-size: 1.5rem;
  white-space: nowrap;
}
.logo-script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
}
.logo-bold {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
  border-bottom: 3px solid var(--muted);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 6vw;
  background: rgba(238, 238, 233, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-line);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--hot-pink); }

.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--hot-pink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

/* Sections */
.section {
  padding: 8rem 6vw;
  position: relative;
}
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-light {
  background: var(--cream);
  color: var(--ink);
  /* Hairline separates the catalog from the hero — both sit on cream. */
  border-top: 1px solid var(--cream-line);
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--muted);
  display: inline-block;
}
.section-dark .kicker { color: rgba(238,238,233,0.5); }

h1, h2, h3 {
  font-family: var(--font-body);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.75rem, 8vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2.25rem, 5.5vw, 3.5rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: normal; }

.section-copy {
  max-width: 46ch;
  line-height: 1.6;
  font-size: 1.05rem;
  opacity: 0.85;
}

/* Hero */
.hero {
  padding: 9rem 6vw 4rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-copy {
  max-width: 55ch;
  margin: 1.5rem auto 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* Full-bleed moving campaign strip under the hero */
.hero-strip {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  margin-top: 4rem;
}
.hero-strip-track {
  display: flex;
  width: max-content;
  animation: heroScroll 48s linear infinite;
}
.hero-strip:hover .hero-strip-track { animation-play-state: paused; }
.hero-strip-group {
  display: flex;
  gap: 14px;
  padding: 14px 7px;
}
.hero-strip img {
  height: 340px;
  aspect-ratio: 3 / 4;
  width: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  flex: none;
  display: block;
}
@keyframes heroScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-strip-track { animation: none; }
}
@media (max-width: 720px) {
  .hero-strip img { height: 230px; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-solid {
  background: var(--ink);
  color: var(--cream);
}
.btn-solid:hover { background: var(--hot-pink); }

.section-dark .btn-solid {
  background: var(--cream);
  color: var(--ink);
}
.section-dark .btn-solid:hover { background: var(--hot-pink); color: var(--cream); }

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--cream); }

/* Badge */
.badge {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin: 0.5rem 0 3rem;
}

/* Shop grid (bikinis preorder) */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
}
.shop-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.shop-swatch {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  background: var(--c);
  overflow: hidden;
}
/* Optional real product photo sits on top of the color; if the file is
   missing its onerror removes it and the color shows through. */
.shop-swatch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-card h3 { margin: 0; }
.shop-price {
  margin: -0.5rem 0 0.25rem;
  font-size: 0.85rem;
  opacity: 0.6;
}
.shop-reserve { align-self: flex-start; }

/* Full-bleed campaign banner (wide concept image) */
.banner {
  position: relative;
  width: 100%;
  max-height: 75vh;
  overflow: hidden;
  background: var(--ink);
}
.banner img {
  width: 100%;
  height: 100%;
  max-height: 75vh;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(rgba(20, 20, 20, 0.15), rgba(20, 20, 20, 0.5));
}
.banner-line {
  margin: 0;
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

/* Contact form */
.contact-form {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.8;
}
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--ink-soft);
  border: 1px solid rgba(238,238,233,0.2);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--hot-pink);
  outline-offset: 1px;
}
.contact-form .btn {
  align-self: flex-start;
}
.form-status {
  font-size: 0.9rem;
  min-height: 1.2em;
  margin: 0;
}
.form-status.success { color: #7CD992; }
.form-status.error { color: #FF8080; }

/* Footer */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3.5rem 6vw 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo { font-size: 1.75rem; margin-bottom: 0.5rem; }
.footer p { margin: 0; opacity: 0.7; font-size: 0.9rem; }
.social-links {
  display: flex;
  gap: 1.5rem;
  margin: 0.5rem 0;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.social-links a:hover { color: var(--hot-pink); }
.disclaimer { opacity: 0.35 !important; font-size: 0.72rem !important; letter-spacing: 0.02em; }
.copyright { opacity: 0.4 !important; font-size: 0.8rem !important; }

/* Responsive */
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 6vw;
    gap: 1.25rem;
    border-bottom: 1px solid var(--cream-line);
    display: none;
  }
  .nav-links.open { display: flex; }
  .section { padding: 5.5rem 6vw; }
  .hero { padding: 6rem 6vw; min-height: auto; }
}
