/* =================================================================
   ALBIDENT — Design system
   Oral care brand · clean / clinical / fresh
   ================================================================= */

:root {
  /* Brand palette — Smile Loop (green → teal → sky-blue gradient) */
  --ink:        #2c4a48;   /* headings / dark text */
  --teal-900:   #234f4b;   /* darkest heading */
  --teal-800:   #2a665d;
  --teal-700:   #1f8378;   /* primary (buttons / links) */
  --teal-600:   #2f988a;   /* hover */
  --teal-500:   #4bb3a3;   /* accent teal-green */
  --aqua-400:   #70bdad;   /* brand teal */
  --aqua-300:   #89d0e9;   /* brand sky-blue */
  --aqua-200:   #b6e2ec;
  --aqua-100:   #dcf1ec;
  --mint-50:    #f1faf8;
  --paper:      #ffffff;
  --muted:      #7b908d;
  --line:       #e4efeb;

  --green:      #a0c992;   /* brand green */

  --grad-deep:  linear-gradient(160deg, #2e7d6f 0%, #1d5450 58%, #143f43 100%);
  --grad-hero:  linear-gradient(180deg, #ffffff 0%, #f1faf8 45%, #dcf1ec 100%);
  --grad-aqua:  linear-gradient(115deg, #89d0e9 0%, #70bdad 52%, #a0c992 100%);

  --shadow-sm:  0 1px 2px rgba(11,58,67,.06), 0 2px 8px rgba(11,58,67,.05);
  --shadow-md:  0 6px 24px rgba(11,58,67,.10);
  --shadow-lg:  0 24px 60px rgba(11,58,67,.16);

  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  26px;

  --container:  1180px;
  --pad:        clamp(20px, 5vw, 64px);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.12; font-weight: 700; letter-spacing: -.02em; color: var(--teal-900); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p  { color: #2c4a50; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: #355a61; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-500);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--grad-aqua);
}
.eyebrow.center::before { display: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
section { padding-block: clamp(60px, 9vw, 120px); }
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--teal-700); color: #fff; box-shadow: 0 8px 20px rgba(14,90,102,.28); }
.btn-primary:hover { background: var(--teal-600); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(14,90,102,.34); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--teal-700); border: 1.5px solid var(--aqua-200); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--teal-500); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 600; color: var(--teal-600);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.site-header.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(11,58,67,.06);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { height: 34px; width: auto; }
.brand-name {
  font-weight: 800; font-size: 1.18rem; letter-spacing: .04em; line-height: 1;
  text-transform: uppercase; color: #fff; transition: color .3s;
}
.site-header.scrolled .brand-name,
.site-header.solid    .brand-name,
.site-header.light    .brand-name { color: var(--ink); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: .98rem; font-weight: 500; color: rgba(255,255,255,.92);
  position: relative; padding: 6px 0; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--aqua-300); border-radius: 2px; transition: width .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.site-header.scrolled .nav-links a,
.site-header.solid    .nav-links a,
.site-header.light    .nav-links a { color: var(--teal-900); }
.site-header.scrolled .nav-links a.active,
.site-header.solid    .nav-links a.active,
.site-header.light    .nav-links a.active { color: var(--teal-700); }

/* Lang switch */
.lang-switch { display: flex; align-items: center; background: rgba(255,255,255,.16); border-radius: 100px; padding: 3px; }
.site-header.scrolled .lang-switch,
.site-header.solid    .lang-switch,
.site-header.light    .lang-switch { background: var(--mint-50); border: 1px solid var(--line); }
.lang-switch button {
  font-size: .8rem; font-weight: 700; letter-spacing: .03em;
  color: rgba(255,255,255,.7); padding: 5px 11px; border-radius: 100px; transition: all .2s;
}
.site-header.scrolled .lang-switch button,
.site-header.solid    .lang-switch button,
.site-header.light    .lang-switch button { color: var(--muted); }
.lang-switch button.active { background: #fff; color: var(--teal-700); box-shadow: var(--shadow-sm); }
.site-header.scrolled .lang-switch button.active,
.site-header.solid    .lang-switch button.active,
.site-header.light    .lang-switch button.active { background: var(--teal-700); color: #fff; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s var(--ease); }
.site-header.scrolled .burger span,
.site-header.solid    .burger span,
.site-header.light    .burger span { background: var(--teal-900); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; gap: 4px; align-items: stretch;
    background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
    padding: 18px var(--pad) 28px; box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .4s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { color: var(--teal-900) !important; padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav-links a::after { display: none; }
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative; padding-top: 140px; padding-bottom: clamp(60px, 8vw, 110px);
  background: var(--grad-hero); overflow: hidden;
  min-height: clamp(620px, 90vh, 920px); display: flex; align-items: center;
}
.hero::before {
  content: ""; position: absolute; top: -20%; left: -10%; width: 55vw; height: 55vw; max-width: 640px; max-height: 640px;
  background: radial-gradient(circle, rgba(127,210,224,.4), transparent 65%);
  border-radius: 50%; filter: blur(10px); pointer-events: none; z-index: 1;
}
/* Woman photo pinned to a right-side panel; its LEFT 46% fades into the
   hero background. The fade is a fraction of the panel itself, so it blends
   identically at every screen size. */
.hero-bg {
  position: absolute; top: 0; right: 0; bottom: 0; z-index: 1;
  width: clamp(440px, 58vw, 1120px);
  background: url("../img/hero.webp") center right / cover no-repeat;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 46%);
          mask-image: linear-gradient(to right, transparent 0%, #000 46%);
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
}
.hero-grid {
  position: relative; z-index: 2; display: block; width: 100%;
}
.hero-copy { max-width: 540px; }
.hero-copy h1 { margin-top: 18px; }
.hero-copy .lead { margin-top: 22px; max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 40px; }
.hero-trust .ht {
  display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 500; color: var(--teal-800);
}
.hero-trust .ht svg { width: 22px; height: 22px; color: var(--teal-500); flex: none; }

.hero-visual { position: relative; }
.hero-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #fff; border: 1px solid rgba(255,255,255,.6);
  transform: rotate(0deg);
}
.hero-card img { width: 100%; height: auto; }
.hero-badge {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow-md);
  padding: 12px 16px; display: flex; align-items: center; gap: 11px;
}
.hero-badge .ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--mint-50); color: var(--teal-600); }
.hero-badge .ico svg { width: 20px; height: 20px; }
.hero-badge b { display: block; font-size: 1.1rem; color: var(--teal-800); line-height: 1; }
.hero-badge span { font-size: .76rem; color: var(--muted); }
.hero-badge.b1 { top: 18px; left: -22px; animation: float 6s ease-in-out infinite; }
.hero-badge.b2 { bottom: 24px; right: -18px; animation: float 6s ease-in-out infinite 1.5s; }

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

@media (max-width: 880px) {
  .hero { min-height: auto; padding-top: 128px; padding-bottom: clamp(44px, 10vw, 72px); }
  .hero-copy { max-width: none; }
  .hero-bg {
    width: 100%; background-position: top right;
    -webkit-mask-image: none; mask-image: none;
  }
  .hero-bg::before {
    background:
      linear-gradient(to right, var(--mint-50) 0%, rgba(241,249,251,.7) 42%, rgba(241,249,251,.32) 100%),
      linear-gradient(to bottom, rgba(255,255,255,.55) 0%, rgba(241,249,251,.15) 60%);
  }
}

/* =================================================================
   MARQUEE / strip
   ================================================================= */
.strip { background: var(--grad-deep); color: #fff; padding-block: 26px; }
.strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 48px; }
.strip .item { display: flex; align-items: center; gap: 12px; font-weight: 600; letter-spacing: .01em; }
.strip .item svg { width: 26px; height: 26px; color: var(--aqua-300); }
.strip .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.3); }
@media (max-width: 680px){ .strip .dot { display: none; } }

/* =================================================================
   FEATURE CARDS
   ================================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--aqua-200); }
.card .ico {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: var(--grad-aqua); color: #fff; margin-bottom: 22px; box-shadow: 0 8px 18px rgba(26,143,160,.28);
}
.card .ico svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; color: #4a6b71; }

/* =================================================================
   PRODUCT GRID
   ================================================================= */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-media {
  position: relative; aspect-ratio: 4/5; display: grid; place-items: center;
  background: #ffffff;
  padding: 10px; border-bottom: 1px solid var(--line); overflow: hidden;
}
.product-media svg { width: 100%; height: 100%; max-height: 150px; }
.product-media img { width: 100%; height: 100%; object-fit: contain; }
.product-tag {
  position: absolute; top: 14px; left: 14px; font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--teal-700); background: #fff; padding: 6px 11px; border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.product-tag.accent { background: var(--grad-aqua); color: #fff; }
.product-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.2rem; }
.product-body p { font-size: .94rem; color: #4a6b71; margin-top: 8px; flex: 1; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip {
  font-size: .78rem; font-weight: 600; color: var(--teal-700);
  background: var(--mint-50); border: 1px solid var(--aqua-100); padding: 5px 11px; border-radius: 100px;
}

/* =================================================================
   SPLIT / ALTERNATING
   ================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-copy h2 { margin-top: 16px; }
.split-copy p { margin-top: 18px; }
.split-list { margin-top: 28px; display: grid; gap: 16px; }
.split-list li { display: flex; gap: 14px; align-items: flex-start; }
.split-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--aqua-100); color: var(--teal-600); margin-top: 2px;
}
.split-list .tick svg { width: 15px; height: 15px; }
.split-list b { color: var(--teal-900); }
.split-list span { display: block; font-size: .95rem; color: #4a6b71; }
.split-media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  background: var(--grad-deep);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media.illus { aspect-ratio: 1/1; display: grid; place-items: center; padding: clamp(30px,5vw,60px); }
.split-media.illus svg { width: 80%; height: auto; }
/* light product showcase card (e.g. EvoClean premium) */
.split-media.product {
  position: relative; aspect-ratio: 1/1; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 38%, #ffffff 0%, #ffffff 55%, var(--mint-50) 100%);
  border: 1px solid var(--line); padding: clamp(22px,4vw,46px);
}
.split-media.product img { width: 100%; height: 100%; object-fit: contain; }
.split-badge {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; background: var(--grad-aqua); padding: 7px 14px; border-radius: 100px;
  box-shadow: 0 6px 16px rgba(26,143,160,.28);
}
@media (max-width: 820px){
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

/* =================================================================
   STATS
   ================================================================= */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 28px 16px; border-radius: var(--radius); background: var(--mint-50); border: 1px solid var(--line); }
.stat .num { font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.03em;
  background: var(--grad-aqua); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat .lbl { margin-top: 10px; font-size: .92rem; color: var(--muted); font-weight: 500; }
@media (max-width:680px){ .stats { grid-template-columns: repeat(2,1fr);} }
.stats-wrap { margin-top: clamp(40px, 6vw, 76px); padding-top: clamp(32px, 4vw, 48px); border-top: 1px solid var(--line); }
.stats-eyebrow {
  text-align: center; font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal-500); margin-bottom: 26px;
}

/* =================================================================
   ECO LINE (home highlight + products category)
   ================================================================= */
.bg-eco { background: linear-gradient(170deg, #eef7e9 0%, #e6f2df 100%); }
.eco-band { background: linear-gradient(160deg, #eef7e9 0%, #e6f2df 55%, #dcefe4 100%); }
.eco-eyebrow { color: #5fa052; }
.eco-eyebrow::before { background: linear-gradient(90deg, #a0c992, #70bdad); }
.eco-feats { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 36px; margin-top: 6px; }
.eco-feat { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #3f7140; font-size: .98rem; }
.eco-feat svg { width: 24px; height: 24px; color: #6cae5e; flex: none; }
.eco-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 46px; }
.eco-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 16px 18px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.eco-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.eco-item img { width: 100%; aspect-ratio: 4/5; object-fit: contain; }
.eco-item span { text-align: center; font-weight: 600; font-size: .92rem; color: var(--teal-900); margin-top: 10px; }
@media (max-width: 760px){ .eco-products { grid-template-columns: repeat(2, 1fr); } }

/* =================================================================
   CTA band
   ================================================================= */
.cta-band { position: relative; background: var(--grad-deep); color: #fff; text-align: center; overflow: hidden; border-radius: 0; }
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(127,210,224,.35), transparent 70%);
}
.cta-band::before { width: 480px; height: 480px; top: -180px; left: -120px; }
.cta-band::after  { width: 420px; height: 420px; bottom: -200px; right: -100px; }
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 540px; margin: 16px auto 32px; }
.cta-band .hero-actions { justify-content: center; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding-block: 64px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo .brand-mark { height: 32px; }
.footer-logo .brand-name { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .95rem; max-width: 32ch; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--teal-600); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: .95rem; color: rgba(255,255,255,.66); transition: color .2s; }
.footer-col a:hover { color: var(--aqua-300); }
.footer-bottom {
  margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; color: rgba(255,255,255,.5);
}
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }

/* =================================================================
   PAGE HEADER (inner pages)
   ================================================================= */
.page-hero { background: var(--grad-deep); color: #fff; padding-top: 150px; padding-bottom: clamp(56px,7vw,90px); position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; top:-30%; right:-5%; width:50vw; height:50vw; max-width:560px; max-height:560px;
  background: radial-gradient(circle, rgba(127,210,224,.3), transparent 65%); border-radius:50%; }
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: var(--aqua-300); }
.page-hero h1 { color: #fff; margin-top: 16px; max-width: 16ch; }
.page-hero p { color: rgba(255,255,255,.82); margin-top: 18px; max-width: 56ch; }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.breadcrumb a:hover { color: #fff; }

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px,5vw,64px); align-items: start; }
.info-list { display: grid; gap: 22px; margin-top: 10px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ico { flex:none; width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--mint-50); color: var(--teal-600); border: 1px solid var(--line); }
.info-item .ico svg { width: 22px; height: 22px; }
.info-item b { display: block; color: var(--teal-900); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 3px; }
.info-item a, .info-item p { color: #355a61; font-size: 1.05rem; }
.info-item a:hover { color: var(--teal-600); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,4vw,42px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--teal-800); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--mint-50);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal-500); background: #fff; box-shadow: 0 0 0 4px rgba(26,143,160,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.form-msg { display:none; margin-top:18px; padding:14px 16px; border-radius:12px; font-size:.95rem; font-weight:500; }
.form-msg.ok { display:block; background: var(--aqua-100); color: var(--teal-800); border:1px solid var(--aqua-200); }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* Map / faq */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { display:block; width:100%; height: 360px; border:0; filter: grayscale(.2) contrast(1.05); }

.faq { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px; text-align: left; font-size: 1.1rem; font-weight: 600; color: var(--teal-900); }
.faq-q .pm { flex:none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--aqua-200); display:grid; place-items:center; color: var(--teal-600); transition: all .3s var(--ease); }
.faq-q .pm svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.faq-item.open .pm { background: var(--teal-700); border-color: var(--teal-700); color:#fff; }
.faq-item.open .pm svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 24px; color: #4a6b71; }

/* =================================================================
   VALUES (about)
   ================================================================= */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value { padding: 32px 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.value .n { font-size: .8rem; font-weight: 800; letter-spacing: .1em; color: var(--aqua-400); }
.value h3 { margin: 12px 0 10px; font-size: 1.3rem; }
.value p { font-size: .96rem; color: #4a6b71; }

.timeline { max-width: 760px; margin-inline: auto; position: relative; padding-left: 34px; }
.timeline::before { content:""; position:absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--aqua-300), var(--aqua-100)); }
.tl-item { position: relative; padding-bottom: 38px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content:""; position:absolute; left: -33px; top: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid var(--teal-500); box-shadow: 0 0 0 4px var(--aqua-100); }
.tl-item .yr { font-weight: 800; color: var(--teal-600); font-size: 1.05rem; }
.tl-item h3 { font-size: 1.2rem; margin: 4px 0 8px; }
.tl-item p { font-size: .96rem; color: #4a6b71; }

/* =================================================================
   Reveal animation
   ================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-badge { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Utility */
.bg-mint { background: var(--mint-50); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
[hidden] { display: none !important; }
