/* ================================================
   Arthakara — Coastal Craft Stylesheet
   Beachy · Organic · Warm & Sun-bleached
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Nunito:wght@300;400;500;600;700&family=Caveat:wght@400;500;600&display=swap');

/* === Design Tokens === */
:root {
  --sand:        #F5EFE0;
  --sand-deep:   #E8DEC8;
  --driftwood:   #C8B89A;
  --sea:         #7EC8D8;
  --sea-light:   #B8E4EE;
  --sea-pale:    #EBF7FA;
  --sea-dark:    #4A9EB5;
  --coral:       #E07A5F;
  --coral-light: #F9DDD7;
  --kelp:        #5C7A5C;
  --foam:        #FAFCFD;
  --ink:         #2C3E35;
  --ink-mid:     #5A6B62;
  --ink-muted:   #8A9E96;
  --border:      rgba(126,200,216,0.25);
  --border-warm: rgba(200,184,154,0.4);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', sans-serif;
  --font-script:  'Caveat', cursive;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-pill:100px;

  --shadow-sm:  0 2px 12px rgba(74,158,181,0.08);
  --shadow-md:  0 8px 32px rgba(74,158,181,0.14);
  --shadow-warm:0 8px 28px rgba(200,184,154,0.25);

  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.6;
}

@keyframes pageFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: height 0.3s ease, background var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.navbar.scrolled {
  background: rgba(245,239,224,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 20px rgba(74,158,181,0.1);
  border-bottom: 1px solid var(--border-warm);
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600; font-style: italic;
  color: var(--ink); letter-spacing: 0.01em;
}
.navbar-logo .logo-icon {
  width: 38px; height: 38px;
  background: var(--sea);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--sea-dark);
}
.navbar-logo .logo-icon span {
  color: white; font-family: var(--font-script); font-size: 1.1rem; font-weight: 600;
}
.navbar-links {
  display: flex; align-items: center; gap: 38px;
}
.navbar-links a {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  color: var(--ink-mid); position: relative; padding-bottom: 3px;
  letter-spacing: 0.03em; transition: color var(--transition);
}
.navbar-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--sea-dark); border-radius: 2px;
  transition: width var(--transition);
}
.navbar-links a:hover, .navbar-links a.active { color: var(--sea-dark); }
.navbar-links a:hover::after, .navbar-links a.active::after { width: 100%; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: var(--transition);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 700;
  cursor: pointer; border: none; transition: var(--transition); letter-spacing: 0.04em;
}
.btn-primary {
  background: var(--sea-dark); color: white;
  box-shadow: 0 4px 18px rgba(74,158,181,0.3);
}
.btn-primary:hover { background: #3A8EA5; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(74,158,181,0.4); }
.btn-outline {
  background: transparent; color: var(--sea-dark); border: 2px solid var(--sea-dark);
}
.btn-outline:hover { background: var(--sea-dark); color: white; transform: translateY(-3px); }
.btn-ghost {
  background: var(--sea-pale); color: var(--sea-dark); border: 1px solid var(--sea-light);
}
.btn-ghost:hover { background: var(--sea-light); transform: translateY(-2px); }
.btn-coral { background: var(--coral); color: white; box-shadow: 0 4px 18px rgba(224,122,95,0.3); }
.btn-coral:hover { background: #C96845; transform: translateY(-3px); }
.btn-sand { background: var(--sand); color: var(--ink); border: 1.5px solid var(--border-warm); }
.btn-sand:hover { background: var(--sand-deep); transform: translateY(-2px); }

/* ================================================
   LAYOUT
   ================================================ */
.container { width: 90%; max-width: 1140px; margin: 0 auto; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

.section-tag {
  display: inline-block; font-family: var(--font-script);
  font-size: 1.05rem; font-weight: 500; color: var(--sea-dark);
  letter-spacing: 0.02em; margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600;
  line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--sea-dark); }
.section-sub {
  font-size: 0.975rem; color: var(--ink-muted); max-width: 520px; line-height: 1.75;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* Wavy SVG row divider */
.wavy-divider { width: 100%; overflow: hidden; line-height: 0; margin: -2px 0; }
.wavy-divider svg { display: block; width: 100%; }

/* Squiggle underline accent */
.squiggle {
  display: block; width: 60px; height: 12px; margin: 6px 0 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='12' viewBox='0 0 60 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6 C5 1,10 11,15 6 S25 1,30 6 S40 11,45 6 S55 1,60 6' fill='none' stroke='%234A9EB5' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.center .squiggle { margin: 6px auto 20px; }

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ================================================
   IMAGE PLACEHOLDERS
   ================================================ */
.img-placeholder {
  background: linear-gradient(135deg, var(--sea-pale) 0%, var(--sea-light) 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--sea-dark); font-size: 0.8rem;
  font-family: var(--font-script); font-weight: 500; letter-spacing: 0.05em; overflow: hidden;
}
.img-placeholder::before { content: '[ image ]'; }
.img-placeholder.warm { background: linear-gradient(135deg, var(--sand-deep) 0%, var(--driftwood) 60%); color: var(--ink-mid); }
.img-placeholder.coral { background: linear-gradient(135deg, var(--coral-light) 0%, #f0c4bb 100%); color: var(--coral); }

/* ================================================
   CARD BASE
   ================================================ */
.card {
  background: var(--foam); border-radius: var(--radius-lg);
  border: 1px solid var(--border-warm); box-shadow: var(--shadow-sm); transition: var(--transition); overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-warm); transform: translateY(-6px); }

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; background: var(--sand);
  position: relative; overflow: hidden;
}
.hero-blob {
  position: absolute; top: -120px; right: -100px;
  width: 680px; height: 680px;
  background: radial-gradient(ellipse at 40% 40%, var(--sea-light) 0%, var(--sea-pale) 55%, transparent 75%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: blobFloat 9s ease-in-out infinite alternate; z-index: 0;
}
.hero-blob-2 {
  position: absolute; bottom: -80px; left: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(ellipse, var(--coral-light) 0%, transparent 70%);
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  animation: blobFloat 12s ease-in-out infinite alternate-reverse; z-index: 0;
}
@keyframes blobFloat {
  0%   { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; transform: rotate(0deg) scale(1); }
  100% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; transform: rotate(8deg) scale(1.04); }
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sea-pale); border: 1px solid var(--sea-light);
  border-radius: var(--radius-pill); padding: 6px 16px 6px 12px; margin-bottom: 22px;
}
.hero-eyebrow .shell { font-size: 1rem; }
.hero-eyebrow span { font-family: var(--font-script); font-size: 0.95rem; color: var(--sea-dark); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--sea-dark); }
.hero-title .hand { font-family: var(--font-script); font-size: 1.1em; color: var(--coral); font-weight: 500; }
.hero-sub {
  font-size: 1rem; color: var(--ink-muted); line-height: 1.8;
  margin-bottom: 36px; max-width: 440px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-img {
  width: 100%; height: 520px;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  overflow: hidden; border: 4px solid var(--sea-light);
  transition: transform 0.6s ease;
}
.hero-img .img-placeholder { width: 100%; height: 100%; border-radius: 0; }
.hero-img:hover { transform: scale(1.025) rotate(-1deg); }
.hero-sticker {
  position: absolute; bottom: 28px; left: -28px;
  background: white; border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-warm);
  border: 1px solid var(--border-warm);
  display: flex; align-items: center; gap: 12px;
}
.hero-sticker .sticker-icon { font-size: 1.6rem; }
.hero-sticker strong { display: block; font-size: 0.88rem; color: var(--ink); font-weight: 700; }
.hero-sticker span { font-size: 0.75rem; color: var(--ink-muted); }

/* ================================================
   WAVE DIVIDER COLORS
   ================================================ */
.wave-sand  { fill: var(--sand); }
.wave-deep  { fill: var(--sand-deep); }
.wave-foam  { fill: var(--foam); }
.wave-dark  { fill: var(--ink); }

/* ================================================
   SUPPORTED BY
   ================================================ */
.supported { background: var(--sand-deep); padding: 40px 0; }
.supported-label { text-align: center; font-family: var(--font-script); font-size: 1.05rem; color: var(--ink-muted); margin-bottom: 28px; margin-top: -45px;}
.supported-logos { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.supported-logos .partner-img-wrap { flex: 0 0 250px; height: 56px; display: flex; align-items: center; justify-content: center; }
.supported-logos .partner-img-wrap img { width: 250px; height: 56px; object-fit: contain; display: block; }
.logo-placeholder {
  width: 116px; height: 44px; background: var(--sand);
  border: 1px solid var(--border-warm); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; color: var(--ink-muted); font-weight: 600;
  letter-spacing: 0.04em; transition: var(--transition);
}
.logo-placeholder:hover { border-color: var(--sea-dark); color: var(--sea-dark); background: var(--sea-pale); transform: translateY(-2px); }

/* ================================================
   ABOUT TEASER
   ================================================ */
.about-teaser { background: var(--foam); }
.about-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-teaser-img {
  width: 100%; height: 420px;
  border-radius: 0;
  border: none;
}
  
  
}
.about-teaser-img .img-placeholder { width: 100%; height: 100%; border-radius: 0; }
.about-teaser-img:hover { transform: scale(1.02) rotate(1deg); }

/* ================================================
   PRODUCT TEASER (HOME)
   ================================================ */
.product-teaser { background: var(--sand); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: var(--foam); border-radius: var(--radius-xl);
  border: 1px solid var(--border-warm); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: var(--transition);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-warm); }
.product-card-img { height: 230px; overflow: hidden; }
.product-card-img .img-placeholder { width: 100%; height: 100%; border-radius: 0; transition: transform 0.5s ease; }
.product-card:hover .product-card-img .img-placeholder { transform: scale(1.06); }
.product-card-body { padding: 20px 22px 14px; }
.product-card-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 7px; }
.product-card-desc { font-size: 0.86rem; color: var(--ink-muted); line-height: 1.65; margin-bottom: 16px; }
.product-card-footer { padding: 0 22px 20px; display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--sea-dark); }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-wrap { padding: 0 5% 100px; }
.cta-section {
  background: linear-gradient(135deg, var(--sea-dark) 0%, #3A8EA5 100%);
  border-radius: var(--radius-xl); padding: 80px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '🌊'; position: absolute;
  font-size: 220px; bottom: -50px; right: -10px;
  opacity: 0.06; line-height: 1; pointer-events: none;
}
.cta-section .section-tag { color: var(--sea-light); }
.cta-section .section-title { color: white; }
.cta-section .section-sub { color: rgba(255,255,255,0.72); margin: 0 auto 36px; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,0.55); padding: 70px 0 28px; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .navbar-logo { color: white; margin-bottom: 14px; }
.footer-brand .navbar-logo .logo-icon { background: var(--sea); border-color: var(--sea-dark); }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 220px; }
.footer-col h5 { font-family: var(--font-script); font-size: 1.05rem; color: white; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 0.875rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--sea-light); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  color: rgba(255,255,255,0.55); transition: var(--transition); cursor: pointer;
}
.social-icon:hover { background: var(--sea); border-color: var(--sea); color: white; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }

.footer-col a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--sea-light);
}
/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: var(--sand); padding: 160px 0 90px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, var(--sea-pale) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .section-title { font-size: clamp(2.4rem, 4.5vw, 3.8rem); position: relative; }

/* ================================================
   ABOUT — NAME SECTION
   ================================================ */
.name-section { background: var(--foam); }
.name-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.name-word {
  font-family: var(--font-display); font-size: 5.5rem; font-weight: 700; font-style: italic;
  letter-spacing: -0.03em; line-height: 1; color: var(--sea-dark); margin-bottom: 6px;
  text-shadow: 4px 4px 0px var(--sea-light);
}
.name-etymology { font-family: var(--font-script); font-size: 1rem; color: var(--ink-muted); margin-bottom: 20px; }
.name-split { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.name-chip {
  background: var(--sea-pale); border: 1px solid var(--sea-light);
  border-radius: var(--radius-md); padding: 14px 20px; flex: 1; min-width: 120px;
}
.name-chip strong {
  display: block; font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 600; font-style: italic; color: var(--sea-dark); margin-bottom: 4px;
}
.name-chip span { font-size: 0.82rem; color: var(--ink-muted); }

/* ================================================
   VALUES
   ================================================ */
.values-section { background: var(--sand); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.value-card { padding: 30px; background: var(--foam); }
.value-icon {
  font-size: 1.8rem; width: 54px; height: 54px;
  background: var(--sea-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; border: 2px solid var(--sea-light);
}
.value-card h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; font-style: italic; color: var(--ink); margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.7; }

/* ================================================
   ORG CHART
   ================================================ */
.org-section { background: var(--foam); }
.org-chart { display: flex; flex-direction: column; align-items: center; }
.org-level { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.org-connector { width: 2px; height: 32px; background: var(--sea-light); margin: 0 auto; }
.org-node {
  background: var(--sand); border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-md); padding: 14px 22px;
  text-align: center; min-width: 140px;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.org-node:hover { border-color: var(--sea-dark); transform: translateY(-3px); }
.org-node.top { background: var(--sea-dark); border-color: var(--sea-dark); color: white; }
.org-node h6 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; }
.org-node span { font-size: 0.74rem; opacity: 0.7; }

/* ================================================
   TEAM
   ================================================ */
.team-section { background: var(--sand-deep); }
.team-card { text-align: center; padding: 28px 18px; background: var(--foam); }
.team-photo { width: 176px; height: 176px; border-radius: 50%; margin: 0 auto 14px; border: 3px solid var(--sea-light); overflow: hidden; }
.team-photo .img-placeholder { width: 100%; height: 100%; border-radius: 50%; }
.team-photo .img-placeholder::before { content: ''; }
.team-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.team-pos { font-family: var(--font-script); font-size: 0.92rem; color: var(--sea-dark); }

/* ================================================
   PRODUCT PAGE
   ================================================ */
.products-section { background: var(--sand); padding: 80px 0 120px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.product-full-card {
  background: var(--foam); border-radius: var(--radius-xl);
  border: 1px solid var(--border-warm); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: var(--transition);
}
.product-full-card:hover { box-shadow: var(--shadow-warm); transform: translateY(-8px); }
.product-full-card.featured {
  border: 2.5px solid var(--sea-dark);
  box-shadow: 0 12px 44px rgba(74,158,181,0.2);
  transform: translateY(-14px);
}
.product-full-card.featured:hover { transform: translateY(-20px); }
.product-badge-wrap { padding: 14px 22px 0; }
.product-badge {
  display: inline-block; background: var(--coral); color: white;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: var(--radius-pill);
}
.product-full-img { height: 280px; overflow: hidden; }
.product-full-img .img-placeholder { width: 100%; height: 100%; border-radius: 0; transition: transform 0.5s ease; }
.product-full-card:hover .product-full-img .img-placeholder { transform: scale(1.05); }
.product-full-body { padding: 24px 24px 12px; }
.product-full-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; font-style: italic; margin-bottom: 10px; }
.product-full-desc { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.65; margin-bottom: 16px; }
.product-full-footer { padding: 0 24px 24px; display: flex; align-items: center; justify-content: space-between; }
.product-full-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--sea-dark); }

/* ================================================
   BLOG
   ================================================ */
.blog-section { background: var(--sand); padding: 80px 0 120px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: var(--foam); border-radius: var(--radius-xl); border: 1px solid var(--border-warm); overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-warm); transform: translateY(-6px); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img .img-placeholder { width: 100%; height: 100%; border-radius: 0; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img .img-placeholder { transform: scale(1.05); }
.blog-card-body { padding: 22px; }
.blog-tag { display: inline-block; font-family: var(--font-script); font-size: 0.9rem; color: var(--sea-dark); margin-bottom: 10px; }
.blog-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; font-style: italic; color: var(--ink); margin-bottom: 9px; line-height: 1.4; }
.blog-card-excerpt { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.65; margin-bottom: 18px; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero-inner, .about-teaser-inner, .name-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-img { height: 380px; border-radius: 50%; }
  .about-teaser-img { height: 340px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: none !important; }
  .navbar-links {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: center;
    justify-content: flex-end;
  }
  .navbar-links a {
    font-size: 0.78rem;
  }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .name-word { font-size: 3.5rem; }
}


/* ================================================
   TEAM — DEPARTMENT BLOCKS & GRID
   ================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-grid-center {
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
}
.team-grid-center .team-card {
  grid-column: auto;
  width: 100%;
}
.team-dept-block {
  margin-bottom: 56px;
}
.team-dept-label {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--sea-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1.5px dashed var(--sea-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.team-dept-label::before {
  content: '🐚';
  font-size: 1rem;
}
.team-card-leader {
  border: 2px solid var(--sea-dark) !important;
  position: relative;
}
.team-leader-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--sea-dark);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* ================================================
   VALUES — 3-COL ACROSTIC GRID
   ================================================ */
.values-grid-acro {
  grid-template-columns: repeat(3, 1fr) !important;
}
.value-icon.acro-letter {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--sea-dark);
  background: var(--sea-pale);
  border: 2px solid var(--sea-light);
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ================================================
   RESPONSIVE ADDITIONS
   ================================================ */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid-center .team-card { grid-column: 2 / 3; }
  .values-grid-acro { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid-center .team-card { grid-column: 1 / -1; }
  .values-grid-acro { grid-template-columns: repeat(2, 1fr) !important; }
  /* Override the base responsive rule that collapses values-grid */
  .values-grid.values-grid-acro { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .values-grid-acro { grid-template-columns: 1fr !important; }
}

/* ================================================
   PROBLEM SECTION — Product Page
   ================================================ */
.problem-section { background: var(--foam); }

.problem-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.problem-block:last-child { margin-bottom: 0; }

.problem-block-reverse {
  direction: rtl;
}
.problem-block-reverse > * { direction: ltr; }

.problem-img {
  width: 100%;
  height: 340px;
  border-radius: 50% 40% 50% 40% / 40% 50% 40% 50%;
  border: 4px solid var(--sea-light);
  overflow: hidden;
  transition: transform 0.6s ease;
}
.problem-img .img-placeholder { width: 100%; height: 100%; border-radius: 0; }
.problem-img:hover { transform: scale(1.02) rotate(1deg); }

.problem-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--sea-light);
  line-height: 1;
  margin-bottom: 4px;
}
.problem-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.25;
}
.problem-desc {
  font-size: 0.975rem;
  color: var(--ink-muted);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .problem-block { grid-template-columns: 1fr; gap: 32px; }
  .problem-block-reverse { direction: ltr; }
  .problem-img { height: 260px; border-radius: 50%; }
}

/* ================================================
		SECTION — Product Page
   ================================================ */
.contact-section { background: var(--sand-deep); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.contact-card {
  background: var(--foam);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-warm);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-warm); transform: translateY(-5px); }
.contact-card-wide {
  grid-column: 1 / -1;
}
.contact-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.contact-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--sea-dark);
  margin-bottom: 8px;
}
.contact-val {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.7;
}
.contact-hours { display: flex; flex-direction: column; gap: 8px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--ink-mid);
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--border-warm);
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card-wide { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card-wide { grid-column: 1 / -1; }
}

.contact-val a {
  color: var(--sea-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}
.contact-val a:hover {
  color: var(--coral);
}

/* ================================================
   FOOTER — SLIM (3-column, no social icons)
   ================================================ */
.footer-inner-slim {
  grid-template-columns: 1.5fr 1fr 1fr !important;
}

@media (max-width: 1024px) {
  .footer-inner-slim { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 768px) {
  .footer-inner-slim { grid-template-columns: 1fr !important; }
}

/* ================================================
   HOME — SINGLE PRODUCT FEATURE
   ================================================ */
.product-single-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--foam);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-warm);
  box-shadow: var(--shadow-warm);
  overflow: hidden;
}
.product-single-img {
  height: 420px;
  overflow: hidden;
}
.product-single-img .img-placeholder {
  width: 100%; height: 100%;
  border-radius: 0;
  transition: transform 0.6s ease;
}
.product-single-wrap:hover .product-single-img .img-placeholder {
  transform: scale(1.04);
}
.product-single-body {
  padding: 48px 48px 48px 0;
}
.product-single-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.product-single-desc {
  font-size: 0.975rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.product-single-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .product-single-wrap { grid-template-columns: 1fr; }
  .product-single-img { height: 260px; }
  .product-single-body { padding: 28px; }
}

/* ================================================
   HOME — FULL-WIDTH PRODUCT BANNER
   ================================================ */
.product-banner {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}
.product-banner-img {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}
.product-banner:hover .product-banner-img {
  transform: scale(1.04);
}
.product-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(44,62,53,0.78) 0%, rgba(44,62,53,0.3) 60%, transparent 100%),
              radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  gap: 14px;
}
.product-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.product-banner-title em {
  font-style: italic;
  color: var(--sea-light);
}
.product-banner-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 420px;
}

@media (max-width: 768px) {
  .product-banner { height: 380px; }
  .product-banner-overlay { padding: 36px; }
}
@media (max-width: 480px) {
  .product-banner { height: 320px; border-radius: var(--radius-lg); }
  .product-banner-overlay { padding: 28px; }
}

/* ================================================
   ACROSTIC VALUES BLOCK
   ================================================ */
.acro-block { display: flex; flex-direction: column; }
.acro-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border-warm);
  transition: var(--transition);
}
.acro-row:hover {
  background: var(--sea-pale);
  border-radius: var(--radius-md);
  padding-left: 12px;
}
.acro-letter-box {
 flex: 0 0 52px;
  height: 52px;
  background: var(--sea-pale);
  border: 2px solid var(--sea-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--sea-dark);
  transition: var(--transition);
}
.acro-row:hover .acro-letter-box {
  background: var(--sea-dark);
  color: white;
  border-color: var(--sea-dark);
}
.acro-content { display: flex; flex-direction: column; justify-content: center; }
.acro-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  margin: 0;
}
.acro-desc { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.65; }

/* ================================================
   VISION & MISSION
   ================================================ */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--sand);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-warm);
  box-shadow: var(--shadow-warm);
  overflow: hidden;
}
.vm-card {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--transition);
}
.vm-card:hover { background: var(--sea-pale); }
.vm-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.vm-label {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--sea-dark);
}
.vm-text {
  font-size: 0.975rem;
  color: var(--ink-muted);
  line-height: 1.8;
}
.vm-divider {
  width: 1px;
  background: var(--border-warm);
  margin: 40px 0;
}

@media (max-width: 768px) {
  .vm-grid { grid-template-columns: 1fr; }
  .vm-divider { width: 100%; height: 1px; margin: 0 40px; width: auto; }
  .vm-card { padding: 36px 32px; }
}

/* ================================================
   PROBLEM SECTION — OVERVIEW ROW
   ================================================ */
.problem-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 0;
}
.problem-overview-img {
  width: 100%;
  height: 380px;
  border-radius: 50% 40% 50% 40% / 40% 50% 40% 50%;
  border: 4px solid var(--sea-light);
  overflow: hidden;
  transition: transform 0.6s ease;
}
.problem-overview-img .img-placeholder {
  width: 100%; height: 100%; border-radius: 0;
}
.problem-overview-img:hover { transform: scale(1.02) rotate(1deg); }

@media (max-width: 768px) {
  .problem-overview { grid-template-columns: 1fr; gap: 36px; }
  .problem-overview-img { height: 260px; border-radius: 50%; }
}

.problem-title em {
  font-style: italic;
  color: var(--sea-dark);
}

/* ================================================
   HERO — CINEMATIC FULLSCREEN
   ================================================ */
.hero-cinematic {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
  isolation: auto;

}
.hero-cin-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
}
.hero-cin-bg img {
  width: 100%;
  height: 160%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0%;
  left: 0;
  transition: none;
}

.hero-cin-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, transparent 70%),
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.6) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.5) 100%);
}
.hero-cin-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
}
.hero-cin-statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-cin-pre {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--sea-light);
  letter-spacing: 0.04em;
}
.hero-cin-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  font-style: italic;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 4px 60px rgba(0,0,0,0.4);
}
.hero-cin-slogan {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 12px;
  line-height: 1.7;
}

/* Scroll indicator */
.hero-cin-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.scroll-arrow {
  color: rgba(255,255,255,0.6);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ================================================
   NAVBAR — smooth hide/show on scroll
   ================================================ */
.navbar:not(.scrolled) .navbar-links a { color: rgba(255,255,255,0.85); }
.navbar:not(.scrolled) .navbar-links a:hover { color: white; }
.navbar:not(.scrolled) .navbar-links a::after { background: white; }
.navbar:not(.scrolled) .navbar-logo { color: white; }
.navbar:not(.scrolled) .nav-toggle span { background: white; }

/* ================================================
   PRODUCT PAGE — SINGLE PRODUCT FEATURE
   ================================================ */
.product-single-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--foam);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-warm);
  box-shadow: var(--shadow-warm);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  
}
.product-feature-img {
  position: relative;
  overflow: hidden;
  height: 420px;
}
.product-feature-img .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: transform 0.6s ease;
  min-height: 500px;
}
.product-single-feature:hover .product-feature-img .img-placeholder {
  transform: scale(1.04);
}
.product-feature-body {
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.product-feature-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  line-height: 1.15;
}
.product-feature-desc {
  font-size: 0.975rem;
  color: var(--ink-muted);
  line-height: 1.85;
}
.product-feature-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.product-feature-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sea-dark);
}

@media (max-width: 768px) {
  .product-single-feature { grid-template-columns: 1fr; }
  .product-feature-img .img-placeholder { min-height: 300px; }
  .product-feature-body { padding: 36px 28px; }
}
/* ================================================
   PRODUCTS — DUO SUPPORTING CARDS
   ================================================ */
.products-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.product-duo-card {
  background: var(--foam);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-warm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.product-duo-card:hover {
  box-shadow: var(--shadow-warm);
  transform: translateY(-5px);
}
.product-duo-img {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.product-duo-img .img-placeholder,
.product-duo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.6s ease;
}
.product-duo-card:hover .product-duo-img img,
.product-duo-card:hover .product-duo-img .img-placeholder {
  transform: scale(1.04);
}
.product-duo-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-duo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
}
.product-duo-desc {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
.product-duo-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sea-dark);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .products-duo { grid-template-columns: 1fr; }
  .product-duo-img { height: 220px; }
}
//* ================================================
   CAROUSEL
   ================================================ */
[data-carousel] {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.carousel-slide {
  min-width: 100%;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}
[data-carousel]:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover { background: white; }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }
.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dot.active {
  background: white;
  transform: scale(1.3);
}

.product-duo-img[data-carousel] {
  overflow: hidden;
}
.product-duo-img[data-carousel] .carousel-slide {
  transform: none !important;
  transition: none !important;
}
/* ================================================
   TURTLE DECORATIONS
   ================================================ */
.turtle-deco {
  position: absolute;
  z-index: 1;
  opacity: 0.30;
  pointer-events: none;
  animation: turtleFloat 6s ease-in-out infinite;
}
.turtle-deco-1 {
  width: 240px;
  top: 35%;
  left: 30%;
  transform: rotate(-15deg);
  animation-delay: 0s;
}
.turtle-deco-2 {
  width: 210px;
  top: 25%;
  right: 33%;
  transform: rotate(12deg);
  animation-delay: 1.5s;
}
.turtle-deco-3 {
  width: 150px;
  top: 68%;
  right: 37%;
  transform: rotate(12deg);
  animation-delay: 1.5s;
}

@keyframes turtleFloat {
  0%, 100% { transform: translateY(0) rotate(-15deg); }
  50%       { transform: translateY(-12px) rotate(-15deg); }
}

/* Second turtle has its own rotation */
.turtle-deco-2 {
  animation-name: turtleFloat2;
}
@keyframes turtleFloat2 {
  0%, 100% { transform: translateY(0) rotate(12deg); }
  50%       { transform: translateY(-10px) rotate(12deg); }
}

.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.social-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ================================================
   CUSTOM CURSOR
   ================================================ */
* { cursor: none; }
*,
*::before,
*::after,
a, button, input, textarea, select,
[role="button"],
label {
  cursor: none !important;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--sea-dark);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s ease, width 0.2s ease, height 0.2s ease;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid var(--sea-dark);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  opacity: 0.6;
}

/* Expand ring on hover over clickable elements */
a:hover ~ .cursor-ring,
button:hover ~ .cursor-ring {
  width: 52px;
  height: 52px;
  opacity: 0.4;
}

/* ================================================
   BLOG — COMING SOON
   ================================================ */
.blog-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 0;
  max-width: 560px;
  margin: 0 auto;
}
.blog-coming-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  animation: turtleFloat 3s ease-in-out infinite;
}

/* ================================================
   MOBILE FIXES
   ================================================ */

/* 1. Navbar — ensure z-index is high enough and toggle works */
@media (max-width: 768px) {
  .navbar-links {
    z-index: 9999;
  }
  .navbar {
    z-index: 99999;
  }
}

/* 2. Supported by logos — wrap cleanly on mobile */
@media (max-width: 768px) {
  .supported-logos {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0 20px;
  }
  .supported-logos .partner-img-wrap {
    flex: 0 0 120px;
    height: 48px;
  }
  .supported-logos .partner-img-wrap img {
    width: 120px;
    height: 48px;
    object-fit: contain;
  }
}

/* ================================================
   MOBILE FIXES v2
   ================================================ */

/* Fix hamburger — disable custom cursor on mobile so clicks register */
@media (max-width: 768px) {
  *, *::before, *::after,
  a, button, input, textarea, select,
  [role="button"], label {
    cursor: auto !important;
  }
  .cursor-dot, .cursor-ring {
    display: none !important;
  }
}

/* Fix turtles — reasonable size, spread to corners */
@media (max-width: 768px) {
  .turtle-deco-1 {
    width: 120px !important;
    top: 8% !important;
    left: 2% !important;
  }
  .turtle-deco-2 {
    width: 110px !important;
    top: 8% !important;
    right: 2% !important;
  }
  .turtle-deco-3 {
    width: 100px !important;
    top: 65% !important;
    right: 4% !important;
  }
}

.carousel-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  height: 420px;
  flex-shrink: 0;
  display: block;
  position: relative;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}