body { background: var(--sand); }

.sec-lbl {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); display: block; margin-bottom: 1rem;
}
.sec-h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.1; margin-bottom: 1.8rem; color: var(--marine); }
.sec-h2 em { font-style: normal; opacity: 0.45; }
.contact .sec-h2 { color: var(--foam); }

.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; flex-direction: column; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-bg-photo {
  position: absolute; inset: 0; z-index: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.hero-bg-video {
  transform: scale(1.08);
  transform-origin: center;
}
.hero-bg-grad {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, #091929 0%, #0f2d42 30%, #194b60 60%, #0d2535 100%);
  background-size: cover;
  opacity: 0.68;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: rgba(13, 25, 41, 0.4);
  pointer-events: none;
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to bottom, rgba(13,25,41,0.22) 0%, rgba(13,25,41,0) 30%, rgba(13,25,41,0.6) 80%, rgba(13,25,41,0.88) 100%);
}
.hero > .nav { z-index: 10; }

.hero-content {
  position: relative; z-index: 5; flex: 1;
  display: flex; flex-direction: column;
  padding: 7rem 3rem 4.5rem; gap: 1rem;
}
.hero-eye {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal);
  opacity: 0; animation: rise 0.8s 0.45s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-title {
  font-size: clamp(3.8rem, 10vw, 9rem); font-weight: 700; line-height: 0.88; color: var(--foam);
  opacity: 0; animation: rise 0.9s 0.15s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-title em { font-style: normal; font-weight: 400; opacity: 0.5; }
.hero-tagline {
  font-size: 1.05rem; font-weight: 300; line-height: 1.75; color: rgba(250,249,245,0.68); max-width: 360px;
  opacity: 0; animation: rise 0.9s 0.45s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-phrase {
  display: flex; flex-direction: column; gap: 0.15rem;
  font-family: 'Caveat', cursive;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(250,249,245,0.88);
  line-height: 1.35;
}

.phrase-line { display: block; opacity: 0; transform: translateX(-20px); }
.phrase-line.l1 { animation: phraseIn 0.9s 0.9s cubic-bezier(.22,1,.36,1) forwards; }
.phrase-line.l2 { animation: phraseIn 0.9s 1.2s cubic-bezier(.22,1,.36,1) forwards; }
.phrase-line.l3 { animation: phraseIn 0.9s 1.5s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes phraseIn { to { opacity: 1; transform: none; } }

.hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem;
  margin-top: auto;
  opacity: 0; animation: rise 0.9s 0.6s cubic-bezier(.22,1,.36,1) forwards;
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; color: var(--foam);
  border: 1.5px solid rgba(250,249,245,0.38); padding: 0.9rem 1.8rem; white-space: nowrap;
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline:hover { border-color: var(--foam); background: rgba(250,249,245,0.08); }
.btn-outline:hover .btn-arr { transform: translateX(4px); }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeIn 0.8s 1.2s forwards;
}
.scroll-cue span { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,249,245,0.3); }
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(250,249,245,0.3), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes rise     { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn   { to   { opacity: 1; } }
@keyframes scrollDrop {
  0%, 100% { transform: scaleY(1);   transform-origin: top; }
  50%       { transform: scaleY(0.4); transform-origin: bottom; }
}

.about { padding: 6rem 3rem 5rem; background: var(--sand); }
.about-in { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about p { font-size: 1.05rem; font-weight: 300; line-height: 1.85; color: var(--mid); margin-bottom: 1rem; }
.about p strong { color: var(--marine); font-weight: 500; }
.about-vis { position: relative; }
.about-video-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.about-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }

.surf { padding: 7rem 3rem; background: var(--foam); }
.surf-in { max-width: 1160px; margin: 0 auto; }
.surf-list { margin-top: 3rem; }

.surf-exp {
  display: grid; grid-template-columns: 2fr 3fr;
  gap: 4rem; padding: 3.5rem 0;
  border-top: 1px solid rgba(18,41,58,0.12);
  align-items: center;
}
.surf-exp:first-child { border-top: 1.5px solid var(--marine); }
.surf-exp:last-child  { padding-bottom: 0; }
.surf-exp.flip .surf-exp-img { order: 2; }
.surf-exp.flip .surf-exp-txt { order: 1; }

.surf-exp-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.surf-exp-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.surf-exp-img.carousel img { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.surf-exp-img.carousel img.active { opacity: 1; z-index: 1; }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2; background: rgba(13,29,43,0.45); border: none; cursor: pointer;
  color: var(--foam); font-size: 1.6rem; line-height: 1;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s, background 0.2s;
}
.carousel-arrow:hover { background: rgba(13,29,43,0.75); }
.carousel-prev { left: 0.6rem; }
.carousel-next { right: 0.6rem; }
.surf-exp-img.carousel:hover .carousel-arrow { opacity: 1; }

.carousel-dots {
  position: absolute; bottom: 0.7rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.4rem; z-index: 2;
}
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%; padding: 0;
  background: rgba(250,249,245,0.35); border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--foam); transform: scale(1.3); }

.surf-exp-txt h3 {
  font-size: 2.2rem; font-weight: 600;
  color: var(--marine); line-height: 1.05; margin-bottom: 1rem;
}
.surf-exp-txt > p { font-size: 1.05rem; font-weight: 300; color: var(--mid); line-height: 1.9; margin-bottom: 1.5rem; }

.surf-tags { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin-bottom: 2rem; }
.surf-tag  { font-size: 0.95rem; font-weight: 400; color: var(--mid); display: flex; align-items: center; gap: 0.55rem; }
.surf-tag::before { content: ''; display: inline-block; width: 12px; height: 1.5px; background: var(--teal); flex-shrink: 0; }

.surf-btn-group { display: flex; align-items: center; gap: 0.75rem; }
.surf-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--foam); background: var(--marine); border: none; cursor: pointer; transition: background 0.2s;
}
.surf-btn:hover { background: var(--teal); }
.surf-btn span:last-child { transition: transform 0.2s; }
.surf-btn:hover span:last-child { transform: translateX(3px); }
.surf-btn.shop-btn { text-decoration: none; }

.wa-icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(37,211,102,0.12); color: #1a9648;
  border: none; cursor: pointer; transition: background 0.2s;
}
.wa-icon-btn:hover { background: rgba(37,211,102,0.28); }

.products { padding: 6rem 3rem; background: var(--sand); }
.products-in { max-width: 1160px; margin: 0 auto; }

.product-teaser { display: grid; grid-template-columns: 260px 1fr; gap: 5rem; margin-top: 3.5rem; align-items: center; }
.product-teaser-img { background: var(--foam); padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.product-teaser-img img { max-height: 240px; width: auto; margin: 0 auto; }

.product-lbl   { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 0.5rem; }
.product-name  { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--marine); line-height: 1.05; margin-bottom: 1rem; }
.product-teaser-body > p { font-size: 1rem; font-weight: 300; color: var(--mid); line-height: 1.85; margin-bottom: 1.2rem; }
.product-price-sm { font-size: 1.8rem; font-weight: 700; color: var(--marine); margin-bottom: 1.6rem; }

.reviews { padding: 6rem 3rem; background: var(--foam); }
.reviews-in { max-width: 1160px; margin: 0 auto; }

.review-card  { margin-top: 3rem; max-width: 780px; }
.review-quote { border-left: 2.5px solid var(--teal); padding: 1.2rem 2rem; }
.review-quote p    { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 500; line-height: 1.55; color: var(--marine); margin-bottom: 1rem; }
.review-cite  { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); opacity: 0.6; }

.contact    { padding: 2rem 3rem; background: var(--ink); }
.contact-in { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; gap: 3rem; }
.contact-in > div:first-child { flex-shrink: 0; }
.contact-in > div:first-child .sec-lbl { margin-bottom: 0.2rem; }
.contact-in > div:first-child .sec-h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 0; }

.contact-info { display: flex; flex-direction: row; gap: 2.5rem; align-items: flex-start; }
.ci-lbl { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,249,245,0.32); display: block; margin-bottom: 0.15rem; }
.ci-val { font-size: 0.9rem; font-weight: 300; color: var(--foam); text-decoration: none; transition: color 0.2s; display: inline-block; }
.ci-val:hover { color: var(--teal); }

.wa-link { display: flex; align-items: center; color: rgba(37,211,102,0.8); transition: color 0.2s; }
.wa-link:hover { color: #25D366; }
.ci-icon { display: flex; align-items: center; color: rgba(250,249,245,0.4); transition: color 0.2s; }
.ci-icon:hover { color: var(--foam); }

@media (max-width: 900px) {
  .hero-content { padding: 5rem 1.6rem 3rem; }
  .hero-bottom  { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  .about     { padding: 5rem 1.6rem; }
  .about-in  { grid-template-columns: 1fr; gap: 3rem; }
  .about-vis { order: -1; }

  .surf    { padding: 5rem 1.6rem; }
  .surf-exp { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 0; }
  .surf-exp.flip .surf-exp-img,
  .surf-exp.flip .surf-exp-txt { order: 0; }

  .products           { padding: 4rem 1.6rem; }
  .product-teaser     { grid-template-columns: 1fr; gap: 2rem; }
  .product-teaser-img { min-height: 220px; padding: 2rem; }

  .reviews   { padding: 5rem 1.6rem; }

  .contact    { padding: 2rem 1.6rem; }
  .contact-in { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .contact-info { flex-direction: column; gap: 0.9rem; }
}

@media (max-width: 520px) {
  .hero-title { font-size: clamp(3rem, 14vw, 4.5rem); }
}
