/* ═══════════════════════════════════════════════════════════
   Petzspinn — Design System
   Palette: #111 black · #5a5a5a grey · #e9496f coral (accent) · #fff white
   ═══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #111111;
  --grey-dark:   #3a3a3a;
  --grey:        #5a5a5a;
  --grey-light:  #909090;
  --grey-faint:  #e8e8e8;
  --coral:       #e9496f;
  --coral-dark:  #c73055;
  --white:       #ffffff;
  --surface:     #f7f7f7;
  --footer-bg:   #0d0d0d;

  --font-head: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  --font-body: 'DM Sans', 'Plus Jakarta Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);

  --nav-h: 64px;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.section-head {
  max-width: 560px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 0.75rem; }
.section-head p  { color: var(--grey); font-size: 1.0625rem; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.15s, box-shadow 0.18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-coral {
  background: var(--coral);
  color: var(--white);
}
.btn-coral:hover { background: var(--coral-dark); box-shadow: 0 4px 14px rgba(233,73,111,.3); }

.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover { background: var(--grey-dark); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.8);
}
.btn-outline:hover { border-color: rgba(255,255,255,.5); color: var(--white); }

.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--grey-faint);
  color: var(--black);
}
.btn-outline-dark:hover { border-color: var(--black); }

/* ── NAVIGATION ────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-faint);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey);
  transition: color 0.15s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--black); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.nav-cta { margin-left: 1rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  background: var(--black);
  padding: 6rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

/* Subtle dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Faint coral glow top-right */
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(233,73,111,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Two-column hero grid */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-inner { /* left column */ }

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: normal;
  color: var(--coral);
}

.hero-lead {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* ── HERO VISUAL (right column) ────────────────────────────── */
.hero-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Brand colour glows behind each card */
.hero-glow-green {
  position: absolute;
  top: 30px; right: 20px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,122,36,.18) 0%, transparent 70%);
  pointer-events: none;
  animation: floatA 5s ease-in-out infinite;
}
.hero-glow-blue {
  position: absolute;
  bottom: 30px; left: 20px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,91,142,.18) 0%, transparent 70%);
  pointer-events: none;
  animation: floatB 5s ease-in-out infinite;
  animation-delay: -2.5s;
}

/* Rings */
.hero-ring {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.06);
}
.hero-ring-2 {
  position: absolute;
  width: 230px; height: 230px;
  border-radius: 50%;
  border: 1px dashed rgba(233,73,111,.1);
  animation: slowSpin 28s linear infinite;
}
.hero-ring-3 {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.04);
  animation: slowSpin 18s linear infinite reverse;
}

/* Tiny orbit dots on ring-2 */
.hero-ring-2::before,
.hero-ring-2::after {
  content: '';
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
}
.hero-ring-2::before {
  background: rgba(61,122,36,.7);
  top: -3.5px; left: 50%;
  transform: translateX(-50%);
}
.hero-ring-2::after {
  background: rgba(13,91,142,.7);
  bottom: -3.5px; left: 50%;
  transform: translateX(-50%);
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Central paw pulse */
.hero-pulse {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(233,73,111,.07);
  border: 1px solid rgba(233,73,111,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: corePulse 2.8s ease-in-out infinite;
  z-index: 2;
}
.hero-pulse i { font-size: 1.875rem; color: rgba(233,73,111,.55); }

@keyframes corePulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(233,73,111,.12), 0 0 0 0   rgba(233,73,111,.06); }
  50%       { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(233,73,111,.0), 0 0 0 24px rgba(233,73,111,.0); }
}

/* Connecting dashed line */
.hero-connector {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 140px;
  background: linear-gradient(to bottom,
    rgba(61,122,36,.3) 0%,
    rgba(255,255,255,.08) 50%,
    rgba(13,91,142,.3) 100%);
  z-index: 1;
}

/* Brand cards */
.hcard {
  position: absolute;
  width: 228px;
  background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem 1rem;
  backdrop-filter: blur(14px);
  z-index: 3;
}

/* Status indicator row */
.hcard-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.75rem;
}
.hcard-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: statusBlink 2.2s ease-in-out infinite;
}
@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.hcard-status-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.hcard-logo {
  height: 22px;
  width: auto;
  margin-bottom: 0.5rem;
  opacity: 0.88;
}

.hcard-tag {
  display: block;
  font-size: 0.6875rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 0.75rem;
}

.hcard-bar {
  height: 2px;
  border-radius: 2px;
  opacity: 0.45;
  margin-bottom: 0.75rem;
}

.hcard-metric {
  font-size: 0.75rem;
  color: rgba(255,255,255,.38);
  line-height: 1.4;
}
.hcard-metric strong { color: rgba(255,255,255,.7); font-weight: 700; }

/* Furrtify card */
.hcard-furrtify {
  top: 24px; right: 0;
  border-color: rgba(61,122,36,.25);
  animation: floatA 5.5s ease-in-out infinite;
}
.hcard-furrtify .hcard-bar { background: linear-gradient(to right, #3d7a24, #7bc860); }

/* Aquozy card */
.hcard-aquozy {
  bottom: 24px; left: 0;
  border-color: rgba(13,91,142,.25);
  animation: floatB 5.5s ease-in-out infinite;
  animation-delay: -2.75s;
}
.hcard-aquozy .hcard-bar { background: linear-gradient(to right, #0D5B8E, #5db3e8); }

@keyframes floatA {
  0%, 100% { transform: translateY(0)   rotate(-1.5deg); box-shadow: 0 10px 36px rgba(0,0,0,.35); }
  50%       { transform: translateY(-20px) rotate(0.8deg); box-shadow: 0 24px 48px rgba(0,0,0,.45); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0)   rotate(2deg);   box-shadow: 0 10px 36px rgba(0,0,0,.35); }
  50%       { transform: translateY(-16px) rotate(-1deg); box-shadow: 0 24px 48px rgba(0,0,0,.45); }
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--grey-faint);
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid var(--grey-faint);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--black); }
.team-role { font-size: 0.8125rem; color: var(--grey-light); }

/* ── STATS STRIP ───────────────────────────────────────────── */
.stats-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--grey-faint);
  padding: 2rem 0;
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem 2rem;
  border-right: 1px solid var(--grey-faint);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.03em;
}
.stat-num span { color: var(--coral); }
.stat-label {
  font-size: 0.8125rem;
  color: var(--grey-light);
  margin-top: 0.125rem;
}

/* ── BRANDS SECTION ────────────────────────────────────────── */
.brands-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.brand-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.brand-card-body {
  padding: 2.5rem 2.5rem 2rem;
  flex: 1;
}

.brand-pill {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.brand-card-name {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.brand-card-tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 320px;
}

.brand-card-footer {
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.1);
}

.brand-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.15s;
}
.brand-link:hover { gap: 0.65rem; }

/* Furrtify card */
.brand-card-furrtify { background: #1e2e1a; }
.brand-card-furrtify .brand-pill { background: rgba(61,122,36,.25); color: #7bc860; }
.brand-card-furrtify .brand-card-tagline { color: rgba(255,255,255,.55); }
.brand-card-furrtify .brand-card-footer { background: rgba(61,122,36,.15); }

/* Aquozy card */
.brand-card-aquozy { background: #0e1e2e; }
.brand-card-aquozy .brand-pill { background: rgba(13,91,142,.3); color: #5db3e8; }
.brand-card-aquozy .brand-card-tagline { color: rgba(255,255,255,.55); }
.brand-card-aquozy .brand-card-footer { background: rgba(13,91,142,.2); }

/* ── VALUES / PILLARS ──────────────────────────────────────── */
.values-section {
  background: var(--surface);
  padding: 5.5rem 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid var(--grey-faint);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.pillar-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--grey-faint);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ── ABOUT STRIP ───────────────────────────────────────────── */
.about-strip {
  background: var(--white);
  padding: 5.5rem 0;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-strip-text h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.about-strip-text p  { color: var(--grey); line-height: 1.75; margin-bottom: 1rem; }
.about-strip-text p:last-of-type { margin-bottom: 1.75rem; }

.about-visual {
  background: var(--surface);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-faint);
}
.about-visual-placeholder {
  text-align: center;
}
.about-visual-placeholder .icon {
  font-size: 3rem;
  color: var(--grey-faint);
  margin-bottom: 0.5rem;
}
.about-visual-placeholder p {
  font-size: 0.8125rem;
  color: var(--grey-light);
}

/* ── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: var(--black);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(233,73,111,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,.45);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand img { height: 22px; width: auto; margin-bottom: 1rem; }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,.3);
  line-height: 1.65;
  max-width: 200px;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.45);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: rgba(255,255,255,.8); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.2);
}

.footer-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.6;
}

/* ── PAGE HEADER (inner pages) ─────────────────────────────── */
.page-header {
  background: var(--black);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); font-size: clamp(1.875rem, 4vw, 2.75rem); margin-bottom: 0.625rem; }
.page-header p  { color: rgba(255,255,255,.45); font-size: 1rem; max-width: 480px; }

/* ── BRANDS PAGE ───────────────────────────────────────────── */
.brand-detail {
  padding: 5rem 0;
}
.brand-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.brand-detail-inner.reverse { direction: rtl; }
.brand-detail-inner.reverse > * { direction: ltr; }
.brand-detail-text h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 0.875rem; }
.brand-detail-text p  { color: var(--grey); line-height: 1.75; margin-bottom: 1rem; }
.brand-detail-text p:last-of-type { margin-bottom: 1.75rem; }
.brand-badge-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }
.brand-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  background: var(--surface);
  color: var(--grey);
  border: 1px solid var(--grey-faint);
}

.brand-visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-visual-furrtify { background: #1e2e1a; }
.brand-visual-aquozy   { background: #0e1e2e; }

.brand-visual-icon {
  font-size: 4rem;
  opacity: 0.25;
}

/* Divider */
.brand-divider {
  border: none;
  border-top: 1px solid var(--grey-faint);
  margin: 0;
}

/* ── ABOUT PAGE ────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.team-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--grey-faint);
}
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid var(--grey-faint);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-role { font-size: 0.8125rem; color: var(--grey-light); }

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--black); }
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey-faint);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
  transition: border-color 0.15s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--coral); }
.form-group textarea { min-height: 130px; resize: vertical; }

.contact-info { padding-top: 0.5rem; }
.contact-info h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-faint);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--grey);
  flex-shrink: 0;
  border: 1px solid var(--grey-faint);
}
.contact-info-label { font-size: 0.75rem; color: var(--grey-light); margin-bottom: 0.125rem; }
.contact-info-value { font-size: 0.9375rem; font-weight: 500; }
.contact-info-value a { color: var(--black); }
.contact-info-value a:hover { color: var(--coral); }

.contact-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-faint);
}
.contact-success .check {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--coral);
}
.contact-success h3 { margin-bottom: 0.5rem; }
.contact-success p  { color: var(--grey); font-size: 0.9375rem; }

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }

/* ── MOBILE NAV DROPDOWN ───────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--grey-faint);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 2rem;
    font-size: 0.9375rem;
  }
  .nav-links a.active::after { display: none; }
  .nav-cta { display: none; }
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid            { grid-template-columns: 1fr; }
  .hero-visual          { display: none; }
  .brands-grid          { grid-template-columns: 1fr; }
  .footer-inner         { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-strip-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .brand-detail-inner   { grid-template-columns: 1fr; }
  .brand-detail-inner.reverse { direction: ltr; }
  .contact-grid         { grid-template-columns: 1fr; }
  .pillars-grid         { grid-template-columns: 1fr; }
  .stats-inner          { flex-wrap: wrap; }
  .stat-item            { flex: 1 1 45%; border-right: none; border-bottom: 1px solid var(--grey-faint); padding: 1rem; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 600px) {
  .container            { padding: 0 1.25rem; }
  .hero                 { padding: 4.5rem 0 4rem; }
  .brands-section,
  .values-section,
  .about-strip,
  .brand-detail         { padding: 3.5rem 0; }
  .footer-inner         { grid-template-columns: 1fr; gap: 1.75rem; }
  .team-grid            { grid-template-columns: 1fr 1fr; }
  .footer-bottom        { flex-direction: column; gap: 0.75rem; text-align: center; }
}
