/* =========================================================
   Leo Canin — Peluquería canina & boutique · Badalona
   Design system: playful pet boutique + caring pros
   ========================================================= */

:root {
  /* Palette */
  --coral:        #E85D50;
  --coral-dark:   #D24A3E;
  --coral-soft:   #FBE1DC;
  --aubergine:    #30252F;
  --aubergine-80: #4A3D48;
  --cream:        #FFF7EC;
  --turquoise:    #83D2C2;
  --turquoise-soft:#E4F5F0;
  --yellow:       #F5C95D;
  --yellow-soft:  #FCEEC9;
  --white:        #FFFCF8;
  --grey:         #756C70;

  /* Fonts */
  --font-heading: "Fredoka", "Segoe UI", sans-serif;
  --font-body:    "Manrope", "Segoe UI", sans-serif;

  /* Radii */
  --r-card: 24px;
  --r-img: 32px;
  --r-btn: 999px;

  /* Shadows */
  --shadow-sm: 0 6px 18px rgba(48, 37, 47, 0.06);
  --shadow-md: 0 18px 40px rgba(48, 37, 47, 0.10);
  --shadow-lg: 0 30px 60px rgba(48, 37, 47, 0.14);

  --maxw: 1160px;
}

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

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.1; font-weight: 600; letter-spacing: -0.01em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 14px 26px; border-radius: var(--r-btn);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 10px 24px rgba(232,93,80,.32); }
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(232,93,80,.4); }
.btn-dark { background: var(--aubergine); color: var(--cream); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--aubergine); border: 2px solid rgba(48,37,47,.14); }
.btn-ghost:hover { border-color: var(--aubergine); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--aubergine); box-shadow: var(--shadow-sm); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 247, 236, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(48,37,47,.06);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-weight: 700; font-size: 22px; color: var(--aubergine); }
.brand .brand-mark { width: 42px; height: 42px; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); margin-top: 2px; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  font-weight: 600; font-size: 15px; color: var(--aubergine);
  padding: 9px 15px; border-radius: 999px; transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--coral-soft); color: var(--coral-dark); }
.main-nav a.active { background: var(--aubergine); color: var(--cream); }

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Language toggle */
.lang-toggle { display: inline-flex; background: var(--white); border: 1px solid rgba(48,37,47,.1); border-radius: 999px; padding: 3px; box-shadow: var(--shadow-sm); }
.lang-toggle button { font-weight: 700; font-size: 13px; color: var(--grey); padding: 6px 12px; border-radius: 999px; transition: .15s; font-family: var(--font-heading); }
.lang-toggle button.active { background: var(--coral); color: #fff; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 14px; background: var(--white); box-shadow: var(--shadow-sm); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:""; display:block; width: 20px; height: 2px; background: var(--aubergine); border-radius: 2px; position: relative; transition: .2s; }
.nav-toggle span::before { position:absolute; top:-6px; } .nav-toggle span::after { position:absolute; top:6px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:8px; background: var(--turquoise-soft); color: #2f8676; font-weight: 700; font-size: 13px; letter-spacing:.04em; padding: 7px 15px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(38px, 5.4vw, 62px); font-weight: 700; line-height: 1.02; }
.hero h1 .hl { color: var(--coral); }
.hero p.lead { font-size: 19px; color: var(--aubergine-80); max-width: 30em; margin: 22px 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual { position: relative; }
.hero-blob { position: absolute; inset: -6% -8% -6% -2%; background: linear-gradient(135deg, var(--coral) 0%, #f0836f 55%, var(--yellow) 130%); border-radius: 46% 54% 58% 42% / 54% 44% 56% 46%; z-index: 0; animation: blobmove 14s ease-in-out infinite; }
.hero-visual .photo { position: relative; z-index: 1; }
.hero-badge {
  position: absolute; z-index: 3; bottom: 18px; left: -14px;
  background: var(--white); border-radius: 18px; padding: 13px 18px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 11px;
  font-weight: 700; font-family: var(--font-heading); font-size: 14px; max-width: 230px; line-height: 1.25;
}
.hero-badge .dot { width: 40px; height: 40px; border-radius: 12px; background: var(--turquoise-soft); display:flex; align-items:center; justify-content:center; flex:none; }
.hero-badge .dot svg { width: 22px; height: 22px; color: #2f8676; }

@keyframes blobmove { 0%,100% { border-radius: 46% 54% 58% 42% / 54% 44% 56% 46%; } 50% { border-radius: 56% 44% 44% 56% / 46% 56% 44% 54%; } }

/* decorative paw trail (used sparingly) */
.paw-trail { position:absolute; opacity:.5; z-index:0; pointer-events:none; }

/* ---------- Photo placeholders ---------- */
.photo { border-radius: var(--r-img); overflow: hidden; position: relative; background: var(--white); box-shadow: var(--shadow-md); }
.photo::after { /* subtle warm treatment */ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(245,201,93,.05), rgba(232,93,80,.06)); mix-blend-mode: multiply; pointer-events:none; }
.photo.ratio-45 { aspect-ratio: 4/5; }
.photo.ratio-11 { aspect-ratio: 1/1; }
.photo.ratio-43 { aspect-ratio: 4/3; }
.photo-inner { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; text-align:center; padding:20px; }
.photo-inner svg { width: 30%; max-width: 96px; opacity: .9; }
.photo-inner .cap { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: rgba(255,255,255,.95); }
.photo-inner .note { font-size: 11px; letter-spacing:.1em; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight:700; }
.ph-coral  { background: linear-gradient(150deg,#f0836f,#E85D50); }
.ph-turq   { background: linear-gradient(150deg,#9adecf,#5fbfac); }
.ph-yellow { background: linear-gradient(150deg,#f8d888,#f0b93f); }
.ph-aub    { background: linear-gradient(150deg,#514455,#30252F); }

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: 84px 0; }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.eyebrow { display:inline-block; font-family: var(--font-heading); font-weight: 600; color: var(--coral); font-size: 14px; letter-spacing:.1em; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { color: var(--grey); margin-top: 14px; font-size: 18px; }

/* wave divider */
.wave { display:block; width:100%; height:auto; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--aubergine); color: var(--cream); }
.trustbar .wrap { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 0; padding: 26px 24px; }
.trust-item { display:flex; flex-direction:column; align-items:center; padding: 0 34px; text-align:center; }
.trust-item strong { font-family: var(--font-heading); font-weight: 700; font-size: clamp(38px, 4.4vw, 50px); line-height: 1; color: #fff; letter-spacing: -.02em; text-shadow: 0 4px 20px rgba(0,0,0,.2); }
.trust-item strong.rating { color: var(--yellow); }
.trust-item .lbl { font-size: 15px; color: rgba(255,247,236,.82); font-weight: 600; letter-spacing:.01em; margin-top: 10px; }
.trust-item .est { display:inline-block; font-size: 10px; color: rgba(255,247,236,.62); font-weight: 700; letter-spacing:.12em; text-transform: uppercase; background: rgba(255,255,255,.1); padding: 3px 10px; border-radius: 999px; margin-top: 9px; }
.trust-sep { width: 8px; height: 8px; border-radius: 999px; background: var(--coral); }

/* ---------- Service cards ---------- */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card { background: var(--white); border-radius: var(--r-card); padding: 28px 24px 26px; box-shadow: var(--shadow-sm); border: 1px solid rgba(48,37,47,.04); transition: transform .2s, box-shadow .2s; position: relative; overflow: hidden; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-ico { width: 58px; height: 58px; border-radius: 18px; display:flex; align-items:center; justify-content:center; margin-bottom: 18px; }
.svc-ico svg { width: 30px; height: 30px; }
.svc-card h3 { font-size: 21px; margin-bottom: 8px; }
.svc-card p { font-size: 15px; color: var(--grey); line-height: 1.55; }
.i-coral { background: var(--coral-soft); color: var(--coral-dark); }
.i-turq  { background: var(--turquoise-soft); color: #2f8676; }
.i-yellow{ background: var(--yellow-soft); color: #b98a1e; }
.i-aub   { background: #ebe6ea; color: var(--aubergine); }

/* ---------- Before/After ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ba-card { background: var(--white); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.ba-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; position: relative; }
.ba-pair .photo { border-radius: 0; box-shadow: none; }
.ba-tag { position:absolute; top: 12px; padding: 4px 11px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing:.08em; text-transform: uppercase; }
.ba-tag.before { left: 12px; background: rgba(48,37,47,.82); color: #fff; }
.ba-tag.after  { right: 12px; background: var(--coral); color: #fff; }
.ba-meta { padding: 16px 20px 18px; }
.ba-meta h4 { font-family: var(--font-heading); font-weight: 600; font-size: 18px; }
.ba-meta span { color: var(--grey); font-size: 14px; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card { text-align: center; padding: 34px 26px; background: var(--white); border-radius: var(--r-card); box-shadow: var(--shadow-sm); }
.why-ico { width: 72px; height: 72px; border-radius: 22px; margin: 0 auto 20px; display:flex; align-items:center; justify-content:center; }
.why-ico svg { width: 38px; height: 38px; }
.why-card h3 { font-size: 22px; margin-bottom: 10px; }
.why-card p { color: var(--grey); font-size: 16px; }

/* ---------- Review (single, prominent) ---------- */
.review { background: linear-gradient(160deg, var(--turquoise-soft), var(--cream)); }
.review-card { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: center; background: var(--white); border-radius: 32px; padding: 20px; box-shadow: var(--shadow-md); max-width: 900px; margin: 0 auto; }
.review-card .photo { aspect-ratio: 1/1; }
.review-body .quote-mark { font-family: var(--font-heading); font-size: 70px; line-height: .6; color: var(--coral); }
.review-body p { font-size: 21px; font-weight: 500; color: var(--aubergine); margin: 6px 0 18px; }
.review-body .stars { color: var(--yellow); font-size: 20px; letter-spacing: 2px; }
.review-body .who { font-family: var(--font-heading); font-weight: 600; margin-top: 6px; }
.review-body .who small { display:block; font-family: var(--font-body); font-weight:500; color: var(--grey); font-size: 13px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--aubergine); color: var(--cream); border-radius: 40px; position: relative; overflow: hidden; }
.cta-band .wrap { position: relative; z-index: 2; padding: 66px 40px; text-align: center; }
.cta-band h2 { font-size: clamp(30px, 4.4vw, 46px); color: #fff; }
.cta-band p { color: rgba(255,247,236,.82); max-width: 34em; margin: 16px auto 28px; font-size: 18px; }
.cta-blob { position:absolute; width: 380px; height: 380px; background: radial-gradient(circle at 40% 40%, var(--coral), transparent 68%); border-radius: 50%; opacity: .55; z-index: 1; }
.cta-blob.a { top: -120px; right: -80px; } .cta-blob.b { bottom: -160px; left: -100px; background: radial-gradient(circle at 40% 40%, var(--turquoise), transparent 68%); opacity:.4; }
.cta-outer { padding: 0 24px; margin: 40px auto 0; max-width: var(--maxw); }

/* ---------- Footer ---------- */
.site-footer { background: var(--white); border-top: 1px solid rgba(48,37,47,.06); padding: 60px 0 28px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
.footer-grid h4 { font-family: var(--font-heading); font-weight: 600; font-size: 16px; margin-bottom: 16px; }
.footer-grid a, .footer-grid p { color: var(--grey); font-size: 15px; display: block; margin-bottom: 9px; transition: color .15s; }
.footer-grid a:hover { color: var(--coral); }
.foot-brand p { max-width: 26em; }
.foot-social { display:flex; gap: 10px; margin-top: 4px; }
.foot-social a { width: 40px; height: 40px; border-radius: 12px; background: var(--cream); display:flex; align-items:center; justify-content:center; margin:0; }
.foot-social a:hover { background: var(--coral-soft); }
.foot-social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(48,37,47,.07); margin-top: 40px; padding-top: 22px; display:flex; flex-wrap:wrap; gap:8px; justify-content: space-between; color: var(--grey); font-size: 13px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25D366; box-shadow: 0 12px 28px rgba(37,211,102,.45); display:flex; align-items:center; justify-content:center; transition: transform .18s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
.wa-float::after { content: attr(data-tip); position:absolute; right: 72px; background: var(--aubergine); color: #fff; font-size: 13px; font-weight:600; padding: 8px 13px; border-radius: 12px; white-space: nowrap; opacity: 0; pointer-events:none; transform: translateX(6px); transition: .2s; }
.wa-float:hover::after { opacity: 1; transform: translateX(0); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 56px 0 40px; text-align: center; }
.page-hero h1 { font-size: clamp(34px, 5vw, 52px); font-weight: 700; }
.page-hero p { color: var(--grey); font-size: 19px; max-width: 34em; margin: 16px auto 0; }

/* ---------- Services page ---------- */
.price-block { background: var(--white); border-radius: var(--r-card); box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 26px; }
.price-block > header { display:flex; align-items:center; gap: 16px; padding: 22px 28px; border-bottom: 1px solid rgba(48,37,47,.06); }
.price-block > header .svc-ico { margin: 0; width: 48px; height: 48px; border-radius: 14px; }
.price-block > header .svc-ico svg { width: 24px; height: 24px; }
.price-block > header h3 { font-size: 22px; }
.price-block > header p { color: var(--grey); font-size: 14px; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th { text-align: left; font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing:.06em; text-transform: uppercase; color: var(--grey); padding: 14px 28px; background: var(--cream); }
.price-table td { padding: 15px 28px; border-top: 1px solid rgba(48,37,47,.05); font-size: 16px; }
.price-table tr td:first-child { font-weight: 600; }
.price-table .price { font-family: var(--font-heading); font-weight: 600; color: var(--coral-dark); white-space: nowrap; text-align: right; }

/* Self-labeling price cards (responsive, no horizontal scroll) */
.price-list { display: flex; flex-direction: column; }
.price-row { display: grid; grid-template-columns: 1.4fr 2fr; gap: 20px; align-items: center; padding: 18px 26px; border-top: 1px solid rgba(48,37,47,.06); }
.price-row:first-child { border-top: none; }
.price-name { font-family: var(--font-heading); font-weight: 600; font-size: 17px; line-height: 1.25; }
.price-sizes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.price-size { background: var(--cream); border-radius: 14px; padding: 10px 8px; display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; transition: background .15s; }
.price-size:hover { background: var(--coral-soft); }
.price-size .sz { font-size: 10.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--grey); }
.price-size .pr { font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--coral-dark); white-space: nowrap; }
.pill-note { display:inline-block; background: var(--yellow-soft); color: #97701a; font-weight: 700; font-size: 13px; padding: 5px 13px; border-radius: 999px; }

.shop-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.shop-card { background: var(--white); border-radius: var(--r-card); padding: 26px; box-shadow: var(--shadow-sm); }
.shop-card .svc-ico { margin-bottom: 14px; }
.shop-card h3 { font-size: 19px; margin-bottom: 6px; }
.shop-card p { color: var(--grey); font-size: 15px; }
.shop-banner { text-align:center; background: linear-gradient(150deg, var(--coral-soft), var(--yellow-soft)); border-radius: var(--r-card); padding: 34px; margin-top: 30px; }
.shop-banner h3 { font-size: 24px; margin-bottom: 8px; }
.shop-banner p { color: var(--aubergine-80); margin-bottom: 18px; }

.addons { display:flex; flex-wrap:wrap; gap: 12px; justify-content:center; }
.addon { background: var(--white); border: 1px solid rgba(48,37,47,.08); border-radius: 999px; padding: 10px 20px; font-weight: 600; font-size: 15px; display:flex; align-items:center; gap: 9px; box-shadow: var(--shadow-sm); }
.addon svg { width: 18px; height: 18px; color: var(--coral); }

/* ---------- Gallery ---------- */
.gallery-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-grid .g-item { position: relative; border-radius: var(--r-img); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s; }
.gallery-grid .g-item:hover { transform: translateY(-5px) scale(1.01); }
.gallery-grid .g-item .photo { border-radius: 0; box-shadow: none; }
.g-name { position:absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 14px; background: linear-gradient(transparent, rgba(48,37,47,.72)); color: #fff; font-family: var(--font-heading); font-weight: 600; font-size: 15px; }
.ig-strip { text-align:center; margin-top: 48px; }
.ig-strip a { display:inline-flex; align-items:center; gap: 10px; font-weight: 700; color: var(--coral-dark); }

/* ---------- About ---------- */
.about-story { display:grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items:center; }
.about-story .photo { aspect-ratio: 4/5; }
.about-story h2 { font-size: clamp(28px,3.6vw,40px); margin-bottom: 18px; }
.about-story p { color: var(--aubergine-80); margin-bottom: 16px; }
.values-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value { background: var(--white); border-radius: var(--r-card); padding: 30px; box-shadow: var(--shadow-sm); }
.value .why-ico { margin: 0 0 18px; width: 60px; height: 60px; }
.team-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.team-card { text-align:center; }
.team-card .photo { aspect-ratio: 1/1; margin-bottom: 16px; }
.team-card h4 { font-family: var(--font-heading); font-weight: 600; font-size: 20px; }
.team-card span { color: var(--coral); font-weight: 600; font-size: 14px; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.contact-form { background: var(--white); border-radius: 28px; padding: 34px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-size: 24px; margin-bottom: 6px; }
.contact-form > p { color: var(--grey); margin-bottom: 22px; font-size: 15px; }
.field { margin-bottom: 18px; }
.field label { display:block; font-weight: 700; font-size: 14px; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--aubergine);
  background: var(--cream); border: 2px solid transparent; border-radius: 14px; padding: 13px 16px; transition: border .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--coral); background: #fff; }
.field-row { display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 13px; color: var(--grey); margin-top: 8px; }

.contact-side .info-card { background: var(--white); border-radius: 24px; padding: 26px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.contact-side h4 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 16px; }
.info-row { display:flex; gap: 14px; align-items:flex-start; margin-bottom: 16px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--coral-soft); color: var(--coral-dark); display:flex; align-items:center; justify-content:center; flex:none; }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row b { font-family: var(--font-heading); font-weight: 600; display:block; font-size: 15px; }
.info-row span { color: var(--grey); font-size: 14px; }
.hours-list { list-style:none; }
.hours-list li { display:flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed rgba(48,37,47,.1); font-size: 15px; }
.hours-list li:last-child { border: none; }
.hours-list li span:last-child { color: var(--grey); font-weight: 600; }
.map-embed { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-sm); height: 260px; background: var(--turquoise-soft); position: relative; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Placeholder ribbon (honesty) ---------- */
.ph-ribbon { position: fixed; left: 0; bottom: 0; z-index: 80; background: var(--aubergine); color: var(--cream); font-size: 12px; font-weight: 600; padding: 7px 14px; border-top-right-radius: 12px; box-shadow: var(--shadow-md); opacity:.92; }
.ph-ribbon b { color: var(--yellow); }
.ph-ribbon button { color: var(--cream); margin-left: 10px; opacity:.6; font-size: 14px; }

/* =========================================================
   v2 — real photos · brand rainbow motif · richer motion
   ========================================================= */

/* Photos fill their rounded container */
.photo img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.photo .photo-inner { z-index:1; }
.ba-pair .photo img, .g-item .photo img, .about-story .photo img, .team-card .photo img, .review-card .photo img { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.ba-card:hover .photo img, .g-item:hover .photo img, .team-card:hover .photo img { transform: scale(1.06); }

/* Real logo mark */
.brand .brand-logo { width:48px; height:48px; border-radius:50%; flex:none; object-fit:cover; box-shadow:0 4px 14px rgba(48,37,47,.16); }
.site-footer .brand .brand-logo { width:44px; height:44px; }

/* Rainbow gradient echoing the real logo ring */
.hero-blob { background: conic-gradient(from 210deg, #E85D50, #F5C95D, #83D2C2, #5B8DEF, #A56BD6, #E85D50) !important; opacity:.92; filter:saturate(1.05); }
.deco-ring { position:absolute; border-radius:50%; z-index:2; pointer-events:none;
  background: conic-gradient(from 0deg, #E85D50, #F5C95D, #83D2C2, #5B8DEF, #A56BD6, #E85D50);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 8px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 8px));
  animation: spin 22s linear infinite; }
.hero-visual .deco-ring { width:96px; height:96px; top:-30px; right:8px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Rainbow underline accent under eyebrows / section heads */
.rainbow-line { display:block; width:60px; height:5px; border-radius:999px; margin:14px auto 0;
  background: linear-gradient(90deg,#E85D50,#F5C95D,#83D2C2,#5B8DEF,#A56BD6); background-size:200% 100%; animation: rainbowslide 6s linear infinite; }
@keyframes rainbowslide { to { background-position:200% 0; } }
.section-head .rainbow-line { margin-left:auto; margin-right:auto; }
.section-head h2::after { content:""; display:block; width:62px; height:5px; border-radius:999px; margin:16px auto 0;
  background: linear-gradient(90deg,#E85D50,#F5C95D,#83D2C2,#5B8DEF,#A56BD6); background-size:200% 100%; animation: rainbowslide 6s linear infinite; }
.section-head[style*="left"] h2::after { margin-left:0; }

/* Trust bar count-up */
.trust-item strong { font-variant-numeric: tabular-nums; }
.trust-item .count { display:inline-block; min-width:1ch; }
.trustbar .trust-sep { background: linear-gradient(180deg,#F5C95D,#E85D50); }

/* Floating decorative dots (parallax) */
.floaty { position:absolute; border-radius:50%; z-index:0; pointer-events:none; opacity:.5; }
.floaty.c1 { width:16px; height:16px; background:var(--turquoise); }
.floaty.c2 { width:22px; height:22px; background:var(--yellow); }
.floaty.c3 { width:12px; height:12px; background:var(--coral); }

/* Parallax + entrance polish */
[data-parallax] { will-change: transform; }
.hero-badge { animation: bob 5s ease-in-out infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }
.reveal { transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.btn-coral svg, .wa-float svg { transition: transform .3s ease; }
.btn-coral:hover svg { transform: rotate(-8deg) scale(1.08); }

@media (prefers-reduced-motion: reduce) {
  .hero-blob, .deco-ring, .rainbow-line, .hero-badge { animation: none !important; }
  [data-parallax] { transform: none !important; }
  .reveal { transition: none; opacity:1; transform:none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .ba-grid, .why-grid, .shop-grid, .values-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .review-card { grid-template-columns: 1fr; text-align:center; }
  .review-card .photo { max-width: 240px; margin: 0 auto; }
  .about-story, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; padding-bottom: 82px; }
  body.menu-open { overflow:hidden; }
  .wrap { padding: 0 18px; }
  .header-inner { height: 62px; gap: 8px; }
  .brand { font-size: 18px; gap: 9px; }
  .brand .brand-logo { width: 38px; height: 38px; }
  .brand small { display: none; }
  .header-actions { margin-left: auto; gap: 8px; }
  .nav-toggle { order: 2; }
  .lang-toggle button { padding: 6px 10px; font-size: 12px; }
  .main-nav { position: fixed; z-index:99; inset: 62px 0 auto 0; background: rgba(255,247,236,.97); border-bottom: 1px solid rgba(48,37,47,.08); padding: 10px 18px 20px; margin: 0; transform: translateY(-130%); visibility:hidden; transition: transform .25s,visibility .25s; box-shadow: var(--shadow-md); backdrop-filter:blur(18px); }
  .main-nav.open { transform: translateY(0); visibility:visible; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { display:block; padding: 13px 15px; }
  .nav-toggle { display: flex; }
  .header-desktop-cta { display: none; }
  .cards-4, .why-grid, .values-grid, .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .cards-4, .shop-grid, .ba-grid { display:grid; grid-auto-flow:column; grid-auto-columns:min(84vw,340px); grid-template-columns:none; gap:14px; margin-inline:-18px; padding:4px 18px 20px; overflow-x:auto; overscroll-behavior-inline:contain; scroll-snap-type:inline mandatory; scrollbar-width:none; }
  .cards-4::-webkit-scrollbar, .shop-grid::-webkit-scrollbar, .ba-grid::-webkit-scrollbar { display:none; }
  .cards-4 > *, .shop-grid > *, .ba-grid > * { scroll-snap-align:center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section-pad { padding: 58px 0; }
  .hero { padding: 34px 0 56px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
  .page-hero { padding: 38px 0 22px; }
  .trustbar .wrap { display:grid; grid-template-columns:repeat(3,1fr); gap:0; padding:10px 8px; }
  .trust-item { flex-direction:column; min-width:0; padding:12px 6px; text-align:center; }
  .trust-item strong { font-size:clamp(18px,6vw,26px); }
  .trust-item .lbl { font-size:10px; line-height:1.25; }
  .trust-sep { display:block; width:1px; height:54px; }
  .review-body p { font-size: 18px; }
  .review-card { padding: 16px; gap: 20px; }
  .cta-band { border-radius: 28px; }
  .cta-outer { padding: 0 18px; }
  .wa-float { display:none; }
  .contact-form { padding: 24px; }
  .price-row { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
  .price-name { font-size: 18px; }
  .price-size { padding: 11px 6px; }
  .price-size .pr { font-size: 14.5px; }
  .price-table { display:block; overflow-x:auto; -webkit-overflow-scrolling:touch; }
  .price-table table { min-width:620px; }
  .site-footer { padding-bottom:90px; }
  .ph-ribbon { display:none; }
  .mobile-dock { position:fixed; z-index:140; left:12px; right:12px; bottom:calc(10px + env(safe-area-inset-bottom)); display:grid; grid-template-columns:1fr 1.25fr 1fr; gap:6px; padding:7px; border:1px solid rgba(48,37,47,.1); border-radius:22px; background:rgba(255,252,248,.92); box-shadow:0 16px 45px rgba(48,37,47,.24); backdrop-filter:blur(18px); }
  .mobile-dock a { display:flex; min-height:54px; flex-direction:column; align-items:center; justify-content:center; gap:1px; border-radius:16px; color:var(--aubergine); font-size:11px; }
  .mobile-dock a span { font-size:17px; line-height:1; }
  .mobile-dock .dock-main { background:var(--coral); color:white; box-shadow:0 9px 20px rgba(232,93,80,.3); }
  .gallery-grid { gap:10px; }
  .gallery-grid .g-item { border-radius:18px; }
  .page-hero h1 { font-size:clamp(34px,11vw,46px); }
  .page-hero p { font-size:16px; }
  input, select, textarea { font-size:16px !important; }
}

.mobile-dock { display:none; }
@media (max-width:640px) { .mobile-dock { display:grid; } }

.gallery-grid .g-item > img { width:100%; aspect-ratio:4/5; object-fit:cover; display:block; }
