.serif {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400;
}
/* Scroll-in reveal. The hidden state is scoped to .js-reveal, which the page
   script adds to <html> — so with JS off or broken the content just shows,
   rather than staying invisible forever. */
.js-reveal .scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-reveal .scroll-reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 40%, #0f0f1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 40%);
}
.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2305050a' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,250.7C960,235,1056,181,1152,165.3C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  opacity: 0.9;
}
.hero-drops {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.drop {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: float 8s ease-in-out infinite;
}
.drop:nth-child(1) {
  width: 12px;
  height: 18px;
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}
.drop:nth-child(2) {
  width: 8px;
  height: 12px;
  left: 25%;
  top: 40%;
  animation-delay: 1s;
}
.drop:nth-child(3) {
  width: 15px;
  height: 22px;
  left: 40%;
  top: 15%;
  animation-delay: 2s;
}
.drop:nth-child(4) {
  width: 10px;
  height: 15px;
  left: 55%;
  top: 35%;
  animation-delay: 3s;
}
.drop:nth-child(5) {
  width: 14px;
  height: 20px;
  left: 70%;
  top: 25%;
  animation-delay: 1.5s;
}
.drop:nth-child(6) {
  width: 9px;
  height: 14px;
  left: 85%;
  top: 45%;
  animation-delay: 2.5s;
}
.drop:nth-child(7) {
  width: 11px;
  height: 16px;
  left: 15%;
  top: 60%;
  animation-delay: 0.5s;
}
.drop:nth-child(8) {
  width: 13px;
  height: 19px;
  left: 50%;
  top: 55%;
  animation-delay: 3.5s;
}
.drop:nth-child(9) {
  width: 7px;
  height: 11px;
  left: 75%;
  top: 65%;
  animation-delay: 4s;
}
.drop:nth-child(10) {
  width: 16px;
  height: 24px;
  left: 30%;
  top: 70%;
  animation-delay: 2s;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.7;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: 2px;
  /* Visible by default. The animation is decoration only — it must never be
     the thing that makes the title appear, or a parse error hides the page. */
  opacity: 1;
  animation: fadeInUp 1.2s ease both;
}
@media (prefers-reduced-motion: reduce) {
  .hero-title { animation: none; }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
/* These elements all carry .scroll-reveal too, so the reveal itself is handled
   by the .js-reveal block at the top of this file. They must not set opacity: 0
   on their own — that hid them permanently whenever JS was unavailable. */
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  text-align: center;
  margin-bottom: 24px;
}
.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.js-reveal .section-text.scroll-reveal {
  transition-delay: 0.2s;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
/* Staggered reveal for the three cards. Delays hang off .js-reveal for the same
   reason as above: no hidden state unless JS can undo it. */
.js-reveal .card.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.js-reveal .card.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.js-reveal .card.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--light-gray);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-image img {
  transform: scale(1.05);
}
.card h3 {
  font-size: 24px;
  margin-bottom: 4px;
  font-weight: 500;
}
.card h4 {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 16px;
  font-weight: 400;
}
.card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 16px;
}
.card-link {
  font-size: 14px;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.2s;
  display: inline-block;
}
.card-link:hover {
  opacity: 0.6;
}
.carousel-section {
  padding: 60px 0;
  overflow: hidden;
}
.carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto 24px;
}
.carousel-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
}
.carousel-nav {
  display: flex;
  gap: 16px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--black);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.carousel-btn:hover {
  background: var(--black);
  color: var(--white);
}
.carousel-btn svg {
  width: 20px;
  height: 20px;
}
.carousel-track-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--light-gray);
  display: block;
}
.carousel-slide h3 {
  font-size: 28px;
  margin: 24px 0 12px;
  font-weight: 500;
}
.carousel-slide p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 600px;
}
.carousel-slide .card-link {
  margin-top: 16px;
}
.brand-protection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
}
.bp-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--taupe-light) 0%, var(--taupe) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bp-image::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}
.bp-swan {
  font-size: 120px;
  color: rgba(255,255,255,0.9);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1;
}
.bp-content h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--gray);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.bp-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 20px;
}
.bp-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 24px;
}
.world-section {
  text-align: center;
  padding: 80px 32px;
  background: var(--white);
}
.world-section h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 16px;
}
.world-section p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 24px;
}
.world-link {
  font-size: 14px;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
  transition: opacity 0.2s;
}
.world-link:hover {
  opacity: 0.6;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}
/* Reveal handled by the .js-reveal block at the top — see the note above. */
.feature h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 500;
}
.feature p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .cards-grid {
    gap: 24px;
  }
  .brand-protection {
    gap: 40px;
  }
  .features-grid {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 60px 20px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .brand-protection {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bp-image {
    max-width: 300px;
    margin: 0 auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .carousel-header {
    padding: 0 20px;
  }
  .carousel-track-wrap {
    padding: 0 20px;
  }
}
@media (max-width: 479px) {
  .hero {
    min-height: 400px;
  }
}
