/* ===========================
   RUSTY GROOMING — VARIANT 2
   EDITORIAL / JOTEX-INSPIRED
   Sky Blue · Terracotta · Cream
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700;1,800;1,900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ─── TOKENS ───────────────────────────────────────────────────────────────── */
:root {
  /* Sky blue palette */
  --sky:        #C4D9E8;
  --sky-deep:   #A8C4D8;
  --sky-light:  #E0EDF5;
  --sky-pale:   #EFF6FA;

  /* Terracotta palette */
  --terra:      #E8571A;
  --terra-deep: #A84E2C;
  --terra-warm: #D4734E;
  --terra-pale: #FDEADE;

  /* Neutrals */
  --cream:      #F5EDE0;
  --sand:       #E8D5B8;
  --sand-deep:  #C8B898;
  --charcoal:   #1C1C28;
  --charcoal-2: #2E2E3A;
  --dark-mid:   #3D3D4E;
  --muted:      #7A7A8A;
  --light-text: #9A9AAA;

  /* Sage accent */
  --sage:       #9EB5A4;
  --sage-light: #C8D9CC;

  /* Surfaces */
  --bg-sky:     #C4D9E8;
  --bg-cream:   #F5EDE0;
  --bg-dark:    #1C1C28;
  --bg-sand:    #EDE4D4;
  --bg-white:   #FAFAF8;

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-serif:   'Playfair Display', serif;

  /* Spacing & shape */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   28px;
  --r-xl:   48px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(28, 28, 40, 0.08);
  --shadow-md:    0 8px 32px rgba(28, 28, 40, 0.12);
  --shadow-lg:    0 20px 60px rgba(28, 28, 40, 0.16);
  --shadow-terra: 0 8px 28px rgba(232, 87, 26, 0.35);

  /* Transitions */
  --ease:    0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  --nav-h: 76px;
  --max-w: 1320px;
}

/* ─── RESET ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-sky);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--ease); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sky-pale); }
::-webkit-scrollbar-thumb { background: var(--sky-deep); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--terra); }

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

h1 { font-size: clamp(3.5rem, 9vw, 8rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h4 { font-size: 1.4rem; }

.display-italic {
  font-style: italic;
  color: var(--terra);
}

p { font-size: 1rem; line-height: 1.7; }

.eyebrow-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.eyebrow-v2::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--terra);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ─── LAYOUT ─────────────────────────────────────────────────────────────────── */
.v2-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.v2-section {
  padding: 120px 0;
}

/* ─── BUTTONS V2 ─────────────────────────────────────────────────────────────── */
.btn-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
  border-radius: inherit;
}

.btn-v2:active::after { background: rgba(255,255,255,0.15); }

.btn-terra {
  background: var(--terra);
  color: white;
  box-shadow: var(--shadow-terra);
}
.btn-terra:hover {
  background: var(--terra-deep);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(196, 96, 58, 0.40);
}

.btn-dark {
  background: var(--charcoal);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-dark:hover {
  background: var(--charcoal-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-v2-sm {
  padding: 11px 24px;
  font-size: 0.8rem;
}

.btn-v2-lg {
  padding: 20px 48px;
  font-size: 1.05rem;
}

/* ─── NAVIGATION V2 ──────────────────────────────────────────────────────────── */
.navbar-v2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--ease);
}

.navbar-v2.scrolled {
  background: rgba(196, 217, 232, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 2px 20px rgba(28, 28, 40, 0.08);
}

.navbar-v2 .v2-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.v2-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.v2-logo-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1;
}

.v2-logo-mark span {
  color: var(--terra);
}

.v2-logo-sub {
  display: none;
}

.v2-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.v2-nav-links a {
  padding: 8px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: var(--ease);
}

.v2-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--terra);
  transform: scaleX(0);
  transition: transform var(--ease);
  transform-origin: left;
}

.v2-nav-links a:hover,
.v2-nav-links a.active {
  color: var(--terra);
}

.v2-nav-links a:hover::after,
.v2-nav-links a.active::after {
  transform: scaleX(1);
}

.v2-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.v2-cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(28, 28, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  border: 1.5px solid rgba(28, 28, 40, 0.12);
}
.v2-cart-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: white;
}
.v2-cart-btn svg { width: 18px; height: 18px; }

.v2-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  background: var(--terra);
  color: white;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-sky);
}

.v2-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.v2-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 1px;
  transition: var(--ease);
}

/* Mobile Drawer */
.v2-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--bg-sky);
  z-index: 999;
  padding: 40px 32px;
  transform: translateX(100%);
  transition: transform var(--ease);
  overflow-y: auto;
}
.v2-drawer.open { transform: translateX(0); }
.v2-drawer .drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
}
.v2-drawer .drawer-links a {
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: var(--r-md);
  transition: var(--ease);
}
.v2-drawer .drawer-links a:hover,
.v2-drawer .drawer-links a.active {
  color: var(--terra);
  background: rgba(196, 96, 58, 0.07);
}

/* ─── HERO V2 ────────────────────────────────────────────────────────────────── */
.hero-v2 {
  min-height: 100vh;
  background: var(--bg-sky);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

/* Terra color block — like the orange panel in the reference */
.hero-v2::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: var(--cream);
  z-index: 0;
}

.hero-v2-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px var(--max-w);
  padding-left: max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
}

/* Adjust left padding properly */
.hero-v2 .v2-container {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - var(--nav-h));
}

.hero-v2-content {
  padding: 80px 64px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-v2-content .hero-v2-overline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-v2-content .hero-v2-overline .dot-live {
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(158, 181, 164, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(158, 181, 164, 0); }
}

.hero-v2-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  color: var(--charcoal);
  margin-bottom: 32px;
  font-size: clamp(4rem, 9vw, 8.5rem);
}

.hero-v2-title .line-terra {
  color: var(--terra);
  font-style: italic;
  display: block;
}

.hero-v2-title .line-outline {
  -webkit-text-stroke: 2px var(--charcoal);
  color: transparent;
  display: block;
}

.hero-v2-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero-v2-meta {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(28, 28, 40, 0.12);
}

.hero-v2-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-v2-meta-item .meta-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--charcoal);
}

.hero-v2-meta-item .meta-num em {
  color: var(--terra);
  font-style: normal;
}

.hero-v2-meta-item .meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-text);
}

/* Right visual column */
.hero-v2-visual {
  position: relative;
  background: var(--cream);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 60px 40px 0;
}

.hero-v2-photo {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3/4;
  background: var(--sand);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  position: relative;
  overflow: hidden;
}

.hero-v2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating tags on the visual */
.hero-v2-tag {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  animation: floatSlow 5s ease-in-out infinite;
}

.hero-v2-tag:nth-child(2) { animation-delay: 1.8s; }

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

.hero-v2-tag.tag-rating {
  left: -20px;
  top: 80px;
}

.hero-v2-tag.tag-award {
  right: -10px;
  bottom: 100px;
}

.tag-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.tag-icon.terra { background: var(--terra-pale); }
.tag-icon.sage { background: var(--sage-light); }

.tag-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 2px;
}

.tag-text span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Terra block decoration */
.hero-v2-terra-block {
  position: absolute;
  width: 80px;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--terra);
  opacity: 0.15;
}

/* ─── FEATURES STRIP ─────────────────────────────────────────────────────────── */
.features-strip {
  background: var(--charcoal);
  padding: 0;
  overflow: hidden;
}

.features-strip-inner {
  display: flex;
  align-items: stretch;
}

.feature-cell {
  flex: 1;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.feature-cell::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transition: transform var(--ease);
  transform-origin: left;
}

.feature-cell:hover::before { transform: scaleX(1); }
.feature-cell:hover { background: rgba(255,255,255,0.04); }

.feature-cell:last-child { border-right: none; }

.feature-icon-v2 {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--ease);
}

.feature-cell:hover .feature-icon-v2 {
  background: var(--terra);
}

.feature-text-v2 h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 4px;
}

.feature-text-v2 p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ─── SERVICES V2 ────────────────────────────────────────────────────────────── */
.services-v2 {
  background: var(--bg-sky);
  padding: 120px 0;
}

.services-v2-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.services-v2-header .header-left h2 {
  line-height: 0.9;
  margin-bottom: 0;
}

.services-v2-header .header-right {
  padding-bottom: 8px;
}

.services-v2-header .header-right p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.services-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-v2-card {
  background: var(--cream);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.service-v2-card:first-child {
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}

.service-v2-card:last-child {
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}

.service-v2-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terra);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.service-v2-card:hover::after { transform: scaleY(1); }

.service-v2-card > * { position: relative; z-index: 1; }

.service-v2-card:hover .svc-num,
.service-v2-card:hover .svc-title,
.service-v2-card:hover .svc-desc,
.service-v2-card:hover .svc-price-block { color: white; }

.service-v2-card:hover .svc-cta {
  background: white;
  color: var(--terra);
}

.svc-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--terra);
  margin-bottom: 24px;
  transition: var(--ease);
}

.svc-emoji {
  font-size: 40px;
  margin-bottom: 20px;
  transition: var(--ease);
  display: block;
}

.svc-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 0.95;
  margin-bottom: 16px;
  transition: var(--ease);
}

.svc-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 28px;
  transition: color var(--ease);
}

.svc-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  color: var(--charcoal);
  transition: var(--ease);
}

.svc-price-from {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

.svc-price-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-full);
  background: var(--charcoal);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--ease);
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

/* ─── GALLERY V2 ─────────────────────────────────────────────────────────────── */
.gallery-v2 {
  background: var(--bg-cream);
  padding: 120px 0;
}

.gallery-v2-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.gallery-v2-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-v2 {
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1.5px solid rgba(28, 28, 40, 0.18);
  cursor: pointer;
  transition: var(--ease);
}

.filter-v2:hover,
.filter-v2.active {
  background: var(--charcoal);
  color: white;
  border-color: var(--charcoal);
}

.gallery-v2-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gv2-item {
  background: var(--sand);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.gv2-item:nth-child(1) { grid-column: span 5; grid-row: span 2; aspect-ratio: auto; min-height: 520px; }
.gv2-item:nth-child(2) { grid-column: span 4; aspect-ratio: 4/3; }
.gv2-item:nth-child(3) { grid-column: span 3; aspect-ratio: 1; }
.gv2-item:nth-child(4) { grid-column: span 3; aspect-ratio: 1; }
.gv2-item:nth-child(5) { grid-column: span 4; aspect-ratio: 4/3; }

.gv2-item:nth-child(2n) { background: var(--sky-deep); }
.gv2-item:nth-child(3n) { background: var(--terra-pale); }

.gv2-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  opacity: 0.5;
}

.gv2-item:first-child .gv2-placeholder { font-size: 120px; }

.gv2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 28, 40, 0.75), transparent 40%);
  opacity: 0;
  transition: opacity var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gv2-item:hover .gv2-overlay { opacity: 1; }

.gv2-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: var(--terra);
  padding: 5px 14px;
  border-radius: var(--r-full);
}

/* ─── SHOP TEASER V2 ─────────────────────────────────────────────────────────── */
.shop-v2 {
  background: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.shop-v2::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: var(--charcoal-2);
}

.shop-v2 .v2-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.shop-v2-left h2 {
  color: white;
  margin-bottom: 20px;
}

.shop-v2-left p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 380px;
}

.shop-v2-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.product-v2-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--ease);
  position: relative;
}

.product-v2-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}

.product-v2-card:nth-child(even):hover {
  transform: translateY(-6px) rotate(1deg);
}

.product-v2-card:first-child {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-v2-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  background: var(--sky-pale);
}

.product-v2-card:first-child .product-v2-img { font-size: 80px; }
.product-v2-card:nth-child(2) .product-v2-img { background: var(--terra-pale); }
.product-v2-card:nth-child(3) .product-v2-img { background: var(--sage-light); }
.product-v2-card:nth-child(4) .product-v2-img { background: var(--sand); }

.product-v2-body {
  padding: 18px 20px;
}

.product-v2-card:first-child .product-v2-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px;
}

.product-v2-brand {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.product-v2-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 10px;
}

.product-v2-card:first-child .product-v2-name {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.product-v2-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--terra);
  margin-bottom: 14px;
}

.product-v2-card:first-child .product-v2-price {
  font-size: 2rem;
}

.btn-add-v2 {
  width: 100%;
  padding: 10px;
  border-radius: var(--r-full);
  background: var(--charcoal);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-add-v2:hover {
  background: var(--terra);
  box-shadow: var(--shadow-terra);
}

/* ─── TESTIMONIALS V2 ─────────────────────────────────────────────────────────── */
.testimonials-v2 {
  background: var(--bg-cream);
  padding: 120px 0;
}

.testi-v2-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.testi-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-v2-card {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 36px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.testi-v2-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 900;
  color: var(--sand);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.testi-v2-card > * { position: relative; z-index: 1; }

.testi-v2-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testi-v2-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testi-v2-stars span {
  color: var(--terra);
  font-size: 1rem;
}

.testi-v2-text {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testi-v2-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--sand);
}

.testi-v2-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--terra-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--terra);
  flex-shrink: 0;
}

.testi-v2-author strong {
  display: block;
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.testi-v2-author span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── CTA SECTION V2 ─────────────────────────────────────────────────────────── */
.cta-v2 {
  background: var(--terra);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-v2::before,
.cta-v2::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-v2::before { width: 600px; height: 600px; top: -250px; left: -200px; }
.cta-v2::after  { width: 400px; height: 400px; bottom: -200px; right: -100px; }

.cta-v2 .v2-container { position: relative; z-index: 1; }

.cta-v2-kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta-v2-kicker::before,
.cta-v2-kicker::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.cta-v2 h2 {
  color: white;
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 20px;
}

.cta-v2 p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.cta-v2-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── FOOTER V2 ──────────────────────────────────────────────────────────────── */
.footer-v2 {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
}

.footer-v2-top {
  padding: 80px 0 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-v2-brand .v2-logo-mark {
  color: white;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 16px;
}

.footer-v2-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-v2-socials {
  display: flex;
  gap: 10px;
}

.footer-v2-social {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  transition: var(--ease);
}

.footer-v2-social:hover {
  background: var(--terra);
  border-color: var(--terra);
  transform: translateY(-3px);
}

.footer-v2-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.footer-v2-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-v2-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: var(--ease);
}

.footer-v2-links a:hover { color: white; padding-left: 4px; }

.footer-v2-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-v2-contact-item .fc-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: rgba(196, 96, 58, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-v2-contact-item strong {
  display: block;
  color: white;
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.footer-v2-contact-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-v2-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-v2-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

.footer-v2-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-v2-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  transition: var(--ease);
}
.footer-v2-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ─── MODAL V2 ────────────────────────────────────────────────────────────────── */
.modal-v2-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 40, 0.65);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.modal-v2-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-v2 {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 52px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.88) translateY(24px);
  transition: transform var(--ease-spring);
  position: relative;
}

.modal-v2-overlay.open .modal-v2 {
  transform: scale(1) translateY(0);
}

.modal-v2-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sky-pale);
  border: none;
  cursor: pointer;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  color: var(--muted);
}

.modal-v2-close:hover {
  background: var(--terra);
  color: white;
}

.modal-v2 h3 {
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.modal-v2 > p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.form-v2-group {
  margin-bottom: 20px;
}

.form-v2-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-v2-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-v2-group input,
.form-v2-group textarea,
.form-v2-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--sand);
  background: var(--sky-pale);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: var(--ease);
}

.form-v2-group input:focus,
.form-v2-group textarea:focus,
.form-v2-group select:focus {
  border-color: var(--terra);
  background: white;
  box-shadow: 0 0 0 4px rgba(196, 96, 58, 0.08);
}

.form-v2-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* ─── TOAST V2 ────────────────────────────────────────────────────────────────── */
.toast-v2 {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--charcoal);
  color: white;
  padding: 16px 24px;
  border-radius: var(--r-lg);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 4px solid var(--terra);
}

.toast-v2.show {
  transform: translateY(0);
  opacity: 1;
}

/* ─── SCROLL TOP V2 ──────────────────────────────────────────────────────────── */
.scroll-top-v2 {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--charcoal);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--ease);
}

.scroll-top-v2.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top-v2:hover {
  background: var(--terra);
  box-shadow: var(--shadow-terra);
  transform: translateY(-3px);
}

.scroll-top-v2 svg { width: 20px; height: 20px; }

/* ─── FADE ANIMATIONS ─────────────────────────────────────────────────────────── */
.v2-fade {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.v2-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-stagger-1 { transition-delay: 0.12s; }
.v2-stagger-2 { transition-delay: 0.24s; }
.v2-stagger-3 { transition-delay: 0.36s; }
.v2-stagger-4 { transition-delay: 0.48s; }

/* ─── PAGE HERO V2 ────────────────────────────────────────────────────────────── */
.page-hero-v2 {
  padding: calc(var(--nav-h) + 100px) 0 100px;
  background: var(--bg-sky);
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero-v2::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 32%;
  background: var(--cream);
}

.page-hero-v2 .v2-container {
  position: relative;
  z-index: 1;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  padding-left: max(40px, calc((100vw - 1320px) / 2 + 40px));
  padding-right: max(40px, calc(34% + 40px));
}

.page-hero-v2 h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  margin-bottom: 20px;
  max-width: 700px;
}

.page-hero-v2 p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.75;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-v2 .v2-container { grid-template-columns: 1fr; }
  .hero-v2::before { display: none; }
  .hero-v2-visual { display: none; }
  .hero-v2-content { padding: 80px 0; }

  .services-v2-header { grid-template-columns: 1fr; gap: 24px; }
  .services-v2-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-v2-card:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .service-v2-card:last-child { border-radius: 0 0 var(--r-lg) var(--r-lg); }

  .gallery-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gv2-item:nth-child(1) { grid-column: span 2; grid-row: span 1; min-height: 280px; }
  .gv2-item:nth-child(2) { grid-column: span 1; }
  .gv2-item:nth-child(3) { grid-column: span 1; }
  .gv2-item:nth-child(4) { grid-column: span 1; }
  .gv2-item:nth-child(5) { grid-column: span 1; }

  .shop-v2::before { display: none; }
  .shop-v2 .v2-container { grid-template-columns: 1fr; gap: 48px; }

  .testi-v2-header { grid-template-columns: 1fr; gap: 24px; }
  .testi-v2-grid { grid-template-columns: 1fr 1fr; }

  .footer-v2-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 66px; }

  .v2-nav-links, .v2-nav-actions .v2-phone { display: none; }
  .v2-burger { display: flex; }
  .v2-drawer { display: block; }

  .v2-section { padding: 80px 0; }
  .v2-container { padding: 0 20px; }

  h1 { font-size: 3rem; }
  h2 { font-size: 2.4rem; }

  .features-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .feature-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .services-v2-grid { grid-template-columns: 1fr; }
  .service-v2-card { border-radius: 0 !important; }
  .service-v2-card:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0 !important; }
  .service-v2-card:last-child { border-radius: 0 0 var(--r-lg) var(--r-lg) !important; }

  .gallery-v2-header { flex-direction: column; align-items: flex-start; }

  .testi-v2-grid { grid-template-columns: 1fr; }

  .shop-v2-right { grid-template-columns: 1fr; }
  .product-v2-card:first-child {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .footer-v2-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-v2-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-v2-bottom-links { flex-wrap: wrap; justify-content: center; }

  .modal-v2 { padding: 32px 24px; }
  .form-v2-row { grid-template-columns: 1fr; }

  .cta-v2 h2 { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  h2 { font-size: 2rem; }
  .features-strip-inner { grid-template-columns: 1fr; }
  .shop-v2-right { grid-template-columns: 1fr; }
  .hero-v2-meta { gap: 20px; flex-wrap: wrap; }
}

/* ===========================
   INNER PAGES — V2 COMPONENTS
   =========================== */

/* ─── PRICE TABLE (services) ──────────────────────────────── */
.price-section { padding: 80px 0 100px; }

.price-category {
  margin-bottom: 72px;
}

.price-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 4px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(28,28,40,0.08);
}

.price-cat-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.price-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.pci-terra { background: var(--terra-pale); }
.pci-sky   { background: var(--sky-light); }
.pci-cream { background: var(--sand); }
.pci-sage  { background: var(--sage-light); }
.pci-blue  { background: rgba(100,180,255,0.15); }

.price-cat-title h3 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.price-cat-title p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
}

.price-rows { display: flex; flex-direction: column; gap: 2px; margin-top: 4px; }

.price-row-v2 {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.6);
  transition: var(--ease);
  position: relative;
}

.price-row-v2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--terra);
  border-radius: 2px;
  transition: height var(--ease);
  border-radius: var(--r-sm);
}

.price-row-v2:hover { background: white; box-shadow: var(--shadow-sm); }
.price-row-v2:hover::before { height: 55%; }

.price-row-name {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.price-row-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

.price-row-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--charcoal);
  white-space: nowrap;
}

.price-note {
  background: rgba(255,255,255,0.7);
  border-radius: var(--r-lg);
  padding: 32px 40px;
  margin-top: 20px;
  border-left: 4px solid var(--terra);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.price-note-icon { font-size: 28px; flex-shrink: 0; }
.price-note h4 { font-size: 1.1rem; margin-bottom: 8px; }
.price-note p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ─── SHOP V2 INNER ────────────────────────────────────────── */
.shop-inner { padding: 60px 0 100px; background: var(--bg-sky); }

.shop-inner-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

.sidebar-v2 {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.sidebar-block {
  background: rgba(255,255,255,0.7);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  margin-bottom: 12px;
}

.sidebar-block h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.sidebar-opts { display: flex; flex-direction: column; gap: 10px; }

.sidebar-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.sidebar-opt input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--terra);
  cursor: pointer;
  border-radius: 4px;
}

.sidebar-opt label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--charcoal);
  cursor: pointer;
  flex: 1;
}

.sidebar-opt .opt-count {
  font-size: 0.7rem;
  color: var(--muted);
  background: var(--sky-light);
  padding: 2px 8px;
  border-radius: var(--r-full);
}

.shop-main-v2 {}

.shop-tabs-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.tab-v2 {
  padding: 9px 20px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(28,28,40,0.1);
  cursor: pointer;
  transition: var(--ease);
}

.tab-v2:hover, .tab-v2.active {
  background: var(--charcoal);
  color: white;
  border-color: var(--charcoal);
}

.shop-toolbar-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.shop-toolbar-v2 .results {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--muted);
}

.sort-v2 {
  padding: 10px 18px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(28,28,40,0.12);
  background: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--charcoal);
  outline: none;
  cursor: pointer;
  transition: var(--ease);
}

.sort-v2:focus { border-color: var(--terra); }

.products-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card-v2 {
  background: rgba(255,255,255,0.85);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--ease);
  position: relative;
}

.product-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: white;
}

.product-img-v2 {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  background: var(--sky-light);
  position: relative;
}

.product-card-v2:nth-child(3n+2) .product-img-v2 { background: var(--terra-pale); }
.product-card-v2:nth-child(3n+3) .product-img-v2 { background: var(--sage-light); }
.product-card-v2:nth-child(4n)   .product-img-v2 { background: var(--sand); }

.product-wish-v2 {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--ease);
}

.product-wish-v2:hover { transform: scale(1.2); }

.product-badge-v2 {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pbv-terra { background: var(--terra); color: white; }
.pbv-sky   { background: var(--sky-deep); color: white; }
.pbv-dark  { background: var(--charcoal); color: white; }

.product-body-v2 { padding: 18px 20px; }

.product-brand-v2 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.product-name-v2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 10px;
}

.product-footer-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

.product-price-v2 .old-p {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-price-v2 .new-p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
}

/* ─── ABOUT V2 ─────────────────────────────────────────────── */
.about-split {
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-img-col { position: relative; }

.about-main-block {
  width: 85%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 120px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.about-terra-stripe {
  position: absolute;
  bottom: 0; right: -20px;
  width: 50px;
  height: 60%;
  background: var(--terra);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: 0.85;
}

.about-float-badge {
  position: absolute;
  bottom: -24px;
  left: 10%;
  background: white;
  border-radius: var(--r-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 150px;
}

.about-float-badge .big-n {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--terra);
  line-height: 1;
}

.about-float-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-text-col { padding-bottom: 24px; }
.about-text-col h2 { margin-bottom: 24px; }
.about-text-col p {
  color: var(--muted); font-size: 1.02rem;
  line-height: 1.8; margin-bottom: 18px;
}

.about-vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.about-val-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.65);
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--charcoal);
  transition: var(--ease);
}

.about-val-item:hover {
  background: white;
  box-shadow: var(--shadow-sm);
}

.about-val-item .vi { font-size: 18px; }

/* Stats bar */
.about-stats-bar {
  background: var(--charcoal);
  padding: 60px 0;
}

.about-stats-bar .v2-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-cell {
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: var(--ease);
}

.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(255,255,255,0.04); }

.stat-cell .stat-n {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-cell .stat-n em { color: var(--terra); font-style: normal; }

.stat-cell .stat-l {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Timeline v2 */
.timeline-v2 {
  padding: 80px 0 100px;
  background: var(--bg-cream);
}

.timeline-track {
  position: relative;
  padding: 20px 0;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(196,96,58,0.25) 15%, rgba(196,96,58,0.25) 85%, transparent);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.tl-item:nth-child(even) .tl-content { grid-column: 3; text-align: left; }
.tl-item:nth-child(even) .tl-empty   { grid-column: 1; grid-row: 1; }
.tl-item:nth-child(even) .tl-dot     { grid-column: 2; grid-row: 1; }

.tl-content {
  background: rgba(255,255,255,0.8);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  transition: var(--ease);
}

.tl-content:hover {
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.tl-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--terra);
  margin-bottom: 6px;
}

.tl-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.tl-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.tl-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--terra);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-terra);
  position: relative; z-index: 1;
  justify-self: center;
}

/* Team V2 */
.team-v2 { padding: 80px 0 100px; background: var(--bg-sky); }

.team-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card-v2 {
  background: rgba(255,255,255,0.75);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--ease);
}

.team-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  background: white;
}

.team-img-v2 {
  height: 280px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 96px;
  position: relative;
  overflow: hidden;
}

.team-card-v2:nth-child(2) .team-img-v2 { background: var(--sky-light); }
.team-card-v2:nth-child(3) .team-img-v2 { background: var(--sand); }

.team-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--terra);
}

.team-body-v2 { padding: 28px; }

.team-name-v2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.team-role-v2 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}

.team-bio-v2 {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.team-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}

.team-tag-v2 {
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: var(--sky-pale);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dark-mid);
}

/* Certs V2 */
.certs-v2 {
  padding: 80px 0 100px;
  background: var(--bg-cream);
}

.certs-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cert-card-v2 {
  background: rgba(255,255,255,0.75);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--ease);
}

.cert-card-v2:hover {
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.cert-ic { font-size: 40px; margin-bottom: 12px; }

.cert-card-v2 h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.cert-card-v2 p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── CONTACTS V2 ──────────────────────────────────────────── */
.contacts-grid {
  padding: 80px 0 100px;
  background: var(--bg-sky);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contacts-left-col {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.contact-info-card {
  background: rgba(255,255,255,0.75);
  border-radius: var(--r-xl);
  padding: 36px;
  margin-bottom: 16px;
}

.contact-info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.c-info-list { display: flex; flex-direction: column; gap: 16px; }

.c-info-item {
  display: flex; gap: 14px; align-items: flex-start;
}

.c-info-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}

.ci-terra { background: var(--terra-pale); }
.ci-sky   { background: var(--sky-light); }
.ci-sand  { background: var(--sand); }
.ci-sage  { background: var(--sage-light); }

.c-info-content strong {
  display: block;
  font-weight: 800;
  color: var(--charcoal);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.c-info-content span,
.c-info-content a {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.c-info-content a:hover { color: var(--terra); }

.map-v2 {
  height: 260px;
  background: var(--cream);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(28,28,40,0.06);
}

.map-v2-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.contact-form-v2 {
  background: rgba(255,255,255,0.8);
  border-radius: var(--r-xl);
  padding: 48px;
}

.contact-form-v2 h2 { font-size: 2.2rem; margin-bottom: 8px; }
.contact-form-v2 > p { color: var(--muted); margin-bottom: 32px; font-size: 0.95rem; }

.contact-quick-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--sand);
}

/* FAQ V2 */
.faq-v2 { padding: 80px 0 100px; background: var(--bg-cream); }

.faq-list-v2 {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item-v2 {
  background: rgba(255,255,255,0.8);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--ease);
}

.faq-item-v2:hover { background: white; }

.faq-q-v2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.975rem;
  color: var(--charcoal);
  text-align: left;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--ease);
}

.faq-arrow-v2 {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sky-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--ease);
}

.faq-a-v2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-a-v2 p {
  padding: 0 28px 20px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── HOW-TO-GET SECTION ───────────────────────────────────── */
.how-get-v2 { padding: 80px 0 100px; background: var(--bg-sky); }

.routes-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.route-v2 {
  background: rgba(255,255,255,0.75);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--ease);
}

.route-v2:hover {
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.route-v2 .r-icon { font-size: 40px; margin-bottom: 16px; }

.route-v2 h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.route-v2 p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CTA BANNER (reusable inline) ─────────────────────────── */
.inner-cta {
  background: var(--terra);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-cta::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -250px; left: -150px;
}

.inner-cta h2 { color: white; font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 16px; }
.inner-cta p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 480px; margin: 0 auto 36px; line-height: 1.75; }

.inner-cta-btns {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
}

/* ─── RESPONSIVE for inner pages ───────────────────────────── */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .about-img-col { display: none; }
  .shop-inner-layout { grid-template-columns: 1fr; }
  .sidebar-v2 { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .products-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .team-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .certs-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .about-stats-bar .v2-container { grid-template-columns: repeat(2, 1fr); }
  .tl-item { grid-template-columns: auto 1fr; }
  .tl-item:nth-child(even) .tl-content { grid-column: 2; }
  .tl-item:nth-child(even) .tl-empty { display: none; }
  .tl-item .tl-empty { display: none; }
  .timeline-track::before { left: 24px; }
  .contacts-grid { grid-template-columns: 1fr; padding: 60px 0 80px; }
  .contacts-left-col { position: static; }
}

@media (max-width: 768px) {
  .price-row-v2 { grid-template-columns: 1fr auto; }
  .price-row-v2 .btn-v2-sm { grid-column: 1 / -1; justify-content: center; }
  .routes-v2 { grid-template-columns: 1fr; }
  .team-grid-v2 { grid-template-columns: 1fr; }
  .certs-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .about-stats-bar .v2-container { grid-template-columns: repeat(2, 1fr); }
  .contact-form-v2 { padding: 28px 20px; }
  .contact-quick-btns { grid-template-columns: 1fr; }
  .products-grid-v2 { grid-template-columns: 1fr 1fr; }
  .sidebar-v2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid-v2 { grid-template-columns: 1fr; }
  .certs-grid-v2 { grid-template-columns: 1fr; }
}

/* ─── SHOP ADD-TO-CART BUTTON ──────────────────────────────── */
.btn-add-v2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: var(--r-full);
  background: var(--charcoal);
  color: white;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}

.btn-add-v2:hover {
  background: var(--terra);
  transform: translateY(-2px);
}

/* ─── CTA OUTLINE-WHITE BUTTON ─────────────────────────────── */
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  color: white;
}

/* ─── PAGE HERO V2 eyebrow fix ──────────────────────────────── */
.page-hero-v2 .eyebrow-v2 { display: block; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════
   VIVID ACCENTS — GEOMETRIC SHAPES & COLOR BLOCKS
   ══════════════════════════════════════════════════════ */

/* ─── HERO OVERHAUL ──────────────────────────────────── */
.hero-v2 {
  position: relative;
  overflow: hidden;
}

/* Big terracotta arc — like the circle in the reference */
.hero-v2::before {
  content: '';
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.12;
  right: -180px;
  top: -160px;
  pointer-events: none;
  z-index: 0;
}

/* Sky-blue circle bottom-left */
.hero-v2::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--sky-deep);
  opacity: 0.07;
  left: -120px;
  bottom: -140px;
  pointer-events: none;
  z-index: 0;
}

/* Explicit decorative circle in hero visual */
.hero-deco-circle {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.18;
  right: -60px;
  top: 50%;
  transform: translateY(-52%);
  z-index: 0;
  pointer-events: none;
}

/* Stroke circle */
.hero-deco-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 3px solid var(--terra);
  opacity: 0.2;
  right: 60px;
  top: 50%;
  transform: translateY(-44%);
  z-index: 0;
  pointer-events: none;
}

/* Small accent dot cluster */
.hero-dots {
  position: absolute;
  right: 56px;
  bottom: 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  z-index: 0;
  pointer-events: none;
}

.hero-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.35;
  display: block;
}

/* ─── HERO PHOTO — SHAPED ────────────────────────────── */
.hero-v2-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* Diagonal color split inside the photo block */
}

/* Terra corner accent on photo */
.hero-v2-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: var(--terra);
  border-radius: var(--r-xl) 0 0 0;
  z-index: 2;
  opacity: 0.8;
}

/* ─── COLOR-BLOCKED SECTION STRIP ───────────────────── */
.accent-strip {
  height: 6px;
  background: linear-gradient(90deg, var(--terra) 0%, var(--terra) 35%, var(--sky-deep) 35%, var(--sky-deep) 65%, var(--sage) 65%);
  width: 100%;
  flex-shrink: 0;
}

/* ─── FEATURES STRIP ─────────────────────────────────── */
.features-strip {
  position: relative;
  z-index: 1;
}

.features-strip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--terra);
}

/* ─── SERVICES SECTION — VIVID ACCENTS ───────────────── */
.services-v2 {
  position: relative;
  overflow: hidden;
}

/* Large faint circle top-right */
.services-v2::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 60px solid rgba(196,96,58,0.07);
  right: -140px;
  top: -140px;
  pointer-events: none;
  z-index: 0;
}

/* Terra accent bar on service cards */
.service-v2-card:nth-child(1) { --card-accent: var(--terra); }
.service-v2-card:nth-child(2) { --card-accent: var(--sky-deep); }
.service-v2-card:nth-child(3) { --card-accent: var(--sage); }

.service-v2-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-accent, var(--terra));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  opacity: 0;
  transition: opacity var(--ease);
}

.service-v2-card:hover::before {
  opacity: 1;
}

/* Bold number accent */
.svc-num {
  font-size: 4rem;
  line-height: 0.85;
  color: var(--card-accent, var(--terra));
  opacity: 0.12;
  transition: opacity var(--ease);
}

.service-v2-card:hover .svc-num {
  opacity: 0.25;
}

/* ─── GALLERY — VIVID COLOR BLOCK ────────────────────── */
.gallery-v2 {
  position: relative;
  overflow: hidden;
}

/* Color block left strip */
.gallery-v2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--terra), var(--sky-deep));
}

/* Gallery item bold hover accent */
.gv2-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--terra);
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--ease);
  pointer-events: none;
}

.gv2-item:hover::after {
  opacity: 1;
}

/* ─── SHOP SECTION — DIAGONAL SPLIT ─────────────────── */
.shop-v2 {
  position: relative;
  overflow: hidden;
}

/* Diagonal geometric accent */
.shop-v2::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -80px;
  left: 120px;
  pointer-events: none;
}

/* ─── TESTIMONIALS VIVID BLOCK ───────────────────────── */
.testimonials-v2 {
  position: relative;
  overflow: hidden;
}

/* Arc behind testimonials */
.testimonials-v2::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.05;
  left: -200px;
  bottom: -300px;
  pointer-events: none;
}

/* ─── CTA V2 SECTION — BOLD SHAPES ──────────────────── */
.cta-v2 {
  position: relative;
  overflow: hidden;
}

/* Big ring top right */
.cta-v2::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,0.06);
  right: -120px;
  top: -120px;
  pointer-events: none;
}

/* ─── INLINE ACCENT SHAPE ELEMENTS ──────────────────── */

/* A big decorative circle (use as HTML element) */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.deco-circle-terra {
  background: var(--terra);
}

.deco-circle-sky {
  background: var(--sky-deep);
}

.deco-circle-sage {
  background: var(--sage);
}

.deco-circle-outline-terra {
  background: transparent;
  border: 3px solid var(--terra);
}

.deco-circle-outline-sky {
  background: transparent;
  border: 3px solid var(--sky-deep);
}

/* ─── ACCENT BAR (horizontal colored strip) ──────────── */
.accent-bar {
  display: flex;
  height: 5px;
  border-radius: var(--r-full);
  overflow: hidden;
  margin: 28px 0;
}

.accent-bar-terra { flex: 3; background: var(--terra); }
.accent-bar-sky   { flex: 2; background: var(--sky-deep); }
.accent-bar-sage  { flex: 1; background: var(--sage); }
.accent-bar-sand  { flex: 2; background: var(--sand); }

/* ─── BOLD SECTION DIVIDER ───────────────────────────── */
.section-divider-v2 {
  width: 100%;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.section-divider-v2 svg {
  display: block;
  width: 100%;
  height: 40px;
}

/* ─── VIVID HERO PHOTO RING ──────────────────────────── */
/* Adds a thick coloured ring around the hero photo box */
.hero-v2-photo {
  outline: 4px solid transparent;
  outline-offset: 6px;
  transition: outline-color var(--ease);
}

.hero-v2:hover .hero-v2-photo {
  outline-color: rgba(196,96,58,0.25);
}

/* ─── VIVID NUMBER HERO META ─────────────────────────── */
.meta-num {
  position: relative;
}

.meta-num::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--terra);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.hero-v2-meta-item:hover .meta-num::before {
  transform: scaleX(1);
}

/* ─── VIVID FOOTER ACCENT ────────────────────────────── */
.footer-v2 {
  position: relative;
  overflow: hidden;
}

.footer-v2::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.025);
  right: -200px;
  bottom: -200px;
  pointer-events: none;
}

/* ─── "ВЫДЕЛЕННЫЙ" SECTION COLOR BLOCK ──────────────── */
/* Use on a wrapper div for a strong side-accent panel */
.panel-accent-left {
  position: relative;
  padding-left: 28px;
}

.panel-accent-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--terra);
  border-radius: 3px;
}

/* ─── BOUNCE-IN FOR DECO SHAPES ──────────────────────── */
@keyframes decoFadeScale {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

.deco-anim {
  animation: decoFadeScale 1s cubic-bezier(.16,1,.3,1) both;
}

.deco-anim-delay-1 { animation-delay: 0.15s; }
.deco-anim-delay-2 { animation-delay: 0.3s; }
.deco-anim-delay-3 { animation-delay: 0.5s; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-deco-circle,
  .hero-deco-ring,
  .hero-dots { display: none; }
}
