/* ============================================================
   ARCANE DESIGNER — styles.css
   Brand: Arcane Designer LLC — "Where Strategy Meets Sorcery"
   Palette: BlastForge
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --navy:   #1A113D;
  --blue:   #238DBB;
  --teal:   #08D8A0;
  --pink:   #FF6B93;
  --gray:   #EEEEEE;
  --white:  #FFFFFF;
  --black:  #000000;

  /* Derived */
  --teal-glow: rgba(8, 216, 160, .35);
  --pink-glow: rgba(255, 107, 147, .30);
  --navy-90:  rgba(26, 17, 61, .92);
  --navy-70:  rgba(26, 17, 61, .70);

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
  --section-pad: 80px 24px;
  --radius: 12px;
  --radius-sm: 8px;

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease);
}

ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; }

.section-title {
  text-align: center;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  color: #555;
  font-size: 1.05rem;
}

/* Accent underline decoration */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--teal);
  margin: 12px auto 0;
  border-radius: 2px;
}

.dark-section .section-title {
  color: var(--white);
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-light {
  padding: var(--section-pad);
  background: var(--white);
}

.section-gray {
  padding: var(--section-pad);
  background: var(--gray);
}

.dark-section {
  padding: var(--section-pad);
  background: var(--navy);
  color: var(--white);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--teal-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-secondary:hover {
  background: var(--teal);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--teal-glow);
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
}

.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--pink-glow);
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(26, 17, 61, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}

.site-nav.scrolled {
  background: rgba(26, 17, 61, .97);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

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

.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--teal);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background: var(--navy);
    gap: 24px;
    padding: 24px;
    transition: right .35s var(--ease);
    box-shadow: -4px 0 30px rgba(0,0,0,.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 24px 60px;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero-text h1 .accent {
  color: var(--teal);
}

.hero-text .tagline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0 0 auto;
  max-width: 340px;
}

.hero-image img {
  width: 100%;
  filter: drop-shadow(0 8px 30px rgba(8, 216, 160, .25));
  animation: float 4s ease-in-out infinite;
}

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

/* Hexagon background */
.hex-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hex-bg .hex {
  position: absolute;
  width: 100px;
  height: 115px;
  background: var(--teal);
  opacity: .04;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexFloat 12s ease-in-out infinite;
}

.hex-bg .hex:nth-child(2) { background: var(--pink); width: 80px; height: 92px; animation-delay: -3s; animation-duration: 15s; }
.hex-bg .hex:nth-child(3) { background: var(--blue); width: 60px; height: 69px; animation-delay: -6s; animation-duration: 18s; }
.hex-bg .hex:nth-child(4) { background: var(--teal); width: 120px; height: 138px; animation-delay: -2s; animation-duration: 20s; opacity: .03; }
.hex-bg .hex:nth-child(5) { background: var(--pink); width: 50px; height: 58px; animation-delay: -8s; animation-duration: 14s; }
.hex-bg .hex:nth-child(6) { background: var(--blue); width: 90px; height: 104px; animation-delay: -4s; animation-duration: 16s; opacity: .03; }
.hex-bg .hex:nth-child(7) { background: var(--teal); width: 70px; height: 81px; animation-delay: -10s; animation-duration: 22s; }
.hex-bg .hex:nth-child(8) { background: var(--pink); width: 110px; height: 127px; animation-delay: -1s; animation-duration: 19s; opacity: .025; }

.hex-bg .hex:nth-child(1) { top: 10%; left: 5%; }
.hex-bg .hex:nth-child(2) { top: 60%; left: 15%; }
.hex-bg .hex:nth-child(3) { top: 20%; left: 45%; }
.hex-bg .hex:nth-child(4) { top: 70%; left: 70%; }
.hex-bg .hex:nth-child(5) { top: 30%; left: 85%; }
.hex-bg .hex:nth-child(6) { top: 80%; left: 40%; }
.hex-bg .hex:nth-child(7) { top: 5%; left: 75%; }
.hex-bg .hex:nth-child(8) { top: 50%; left: 55%; }

@keyframes hexFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .04; }
  25%      { transform: translateY(-20px) rotate(5deg); opacity: .06; }
  50%      { transform: translateY(-8px) rotate(-3deg); opacity: .03; }
  75%      { transform: translateY(-25px) rotate(4deg); opacity: .055; }
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid rgba(0,0,0,.06);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(26, 17, 61, .12);
}

/* Hexagon accent on card top */
.card::before {
  content: '';
  position: absolute;
  top: -1px; left: 24px;
  width: 40px; height: 4px;
  background: var(--teal);
  border-radius: 0 0 4px 4px;
}

.card:nth-child(even)::before {
  background: var(--pink);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(8, 216, 160, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.card:nth-child(even) .card-icon {
  background: rgba(255, 107, 147, .1);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.card p {
  color: #555;
  font-size: .95rem;
  margin-bottom: 0;
}

/* Dark section cards */
.dark-section .card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
}

.dark-section .card:hover {
  box-shadow: 0 12px 36px rgba(8, 216, 160, .1);
  border-color: rgba(8, 216, 160, .2);
}

.dark-section .card h3 { color: var(--white); }
.dark-section .card p { color: rgba(255,255,255,.7); }

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid rgba(0,0,0,.06);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(26, 17, 61, .1);
}

.blog-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
}

.blog-card-image::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 60px; height: 69px;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(255,255,255,.1);
}

.dark-section .blog-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}

.dark-section .blog-card-image {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 50%, var(--pink) 100%);
}

.dark-section .blog-card h3 { color: var(--white); }
.dark-section .blog-card p { color: rgba(255,255,255,.7); }
.dark-section .blog-card .blog-date { color: var(--teal); }

.blog-card-body {
  padding: 24px;
}

.blog-date {
  font-size: .8rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.15rem;
}

.blog-card p {
  color: #555;
  font-size: .9rem;
}

.blog-card .read-more {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--teal);
  transition: color .25s var(--ease);
}

.blog-card .read-more:hover {
  color: var(--pink);
}

/* ---------- Shop / Product Cards ---------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(26, 17, 61, .1);
}

.product-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

/* Different gradient combos for products */
.product-card:nth-child(1) .product-image { background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%); }
.product-card:nth-child(2) .product-image { background: linear-gradient(135deg, var(--blue) 0%, var(--pink) 100%); }
.product-card:nth-child(3) .product-image { background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%); }
.product-card:nth-child(4) .product-image { background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%); }
.product-card:nth-child(5) .product-image { background: linear-gradient(135deg, var(--navy) 0%, var(--pink) 100%); }
.product-card:nth-child(6) .product-image { background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%); }

/* Hexagon decorations on product images */
.product-image::before,
.product-image::after {
  content: '';
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(255,255,255,.08);
}

.product-image::before {
  width: 80px; height: 92px;
  top: 20%; right: 15%;
}

.product-image::after {
  width: 50px; height: 58px;
  bottom: 15%; left: 20%;
  background: rgba(255,255,255,.05);
}

.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--teal);
  margin-bottom: 10px;
}

.product-body p {
  color: #555;
  font-size: .9rem;
  flex: 1;
}

.product-body .btn {
  align-self: flex-start;
  margin-top: 14px;
  padding: 10px 24px;
  font-size: .85rem;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 60px) 24px 60px;
  background: var(--navy);
  text-align: center;
  overflow: hidden;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.page-hero .tagline {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ---------- About Page ---------- */
.about-intro {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-intro-text {
  flex: 1;
}

.about-intro-text p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-intro-image {
  flex: 0 0 260px;
}

.about-intro-image img {
  width: 100%;
  filter: drop-shadow(0 6px 24px rgba(8, 216, 160, .2));
}

/* Track record cards */
.track-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}

.track-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 216, 160, .3);
}

.track-card .tag {
  display: inline-block;
  padding: 4px 14px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(8, 216, 160, .15);
  color: var(--teal);
  border-radius: 20px;
  margin-bottom: 14px;
  font-weight: 600;
}

.track-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.track-card p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  margin-bottom: 0;
}

/* ---------- Contact Form ---------- */
.contact-wrapper {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-form {
  flex: 1;
}

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

.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 216, 160, .15);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-image {
  flex: 0 0 280px;
}

.contact-image img {
  width: 100%;
  filter: drop-shadow(0 6px 24px rgba(8, 216, 160, .2));
}

.contact-alt {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
  font-size: .95rem;
}

.contact-alt a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-alt a:hover {
  color: var(--pink);
}

/* ---------- Blog Page Sidebar ---------- */
.blog-layout {
  display: flex;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.blog-main {
  flex: 1;
}

.blog-sidebar {
  flex: 0 0 280px;
}

.sidebar-box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-box h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 16px;
}

.sidebar-box h3::after {
  content: '';
  display: block;
  width: 30px; height: 3px;
  background: var(--teal);
  margin-top: 8px;
  border-radius: 2px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input {
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: .9rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .3s var(--ease);
}

.subscribe-form input:focus {
  border-color: var(--teal);
}

.category-list li {
  margin-bottom: 8px;
}

.category-list a {
  font-size: .9rem;
  color: #555;
  transition: color .25s var(--ease);
}

.category-list a:hover {
  color: var(--teal);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a1a5e 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
}

/* ---------- Zigzag Wave Divider ---------- */
.zigzag-divider {
  height: 20px;
  background: var(--navy);
  position: relative;
}

.zigzag-divider::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(135deg, var(--teal) 25%, transparent 25%) -50px 0,
              linear-gradient(225deg, var(--teal) 25%, transparent 25%) -50px 0,
              linear-gradient(315deg, var(--teal) 25%, transparent 25%),
              linear-gradient(45deg, var(--teal) 25%, transparent 25%);
  background-size: 40px 20px;
  opacity: .35;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 60px 24px 32px;
  position: relative;
  overflow: hidden;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-inner > * {
  flex: 1 1 0;
  min-width: 0;
}

.footer-brand {
  text-align: center;
}

.footer-links {
  text-align: center;
}

.footer-social {
  text-align: center;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin: 0 auto 14px;
  border-radius: 6px;
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal);
  margin-bottom: 14px;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .25s var(--ease);
}

.footer-links a:hover {
  color: var(--teal);
}

/* Horizontal quick links row */
.footer-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.footer-links-row a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .25s var(--ease);
  padding: 4px 14px;
}

.footer-links-row a:hover {
  color: var(--teal);
}

.footer-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Arc centered under Connect section */
.footer-arc-centered {
  margin-top: 12px;
  text-align: center;
}

.footer-arc-centered img {
  width: 80px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
  opacity: .75;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.footer-social-icons a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  transition: background .3s var(--ease), color .3s var(--ease);
}

.footer-social-icons a:hover {
  background: var(--teal);
  color: var(--navy);
}

.footer-bottom {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.footer-arc {
  position: absolute;
  bottom: 60px;
  right: 5%;
  width: 120px;
  opacity: .6;
  pointer-events: none;
}

.footer-arc img {
  width: 100%;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}

/* ---------- Scroll Fade-In ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

/* ---------- Section w/ Arc Character ---------- */
.arc-float {
  position: relative;
}

.arc-float-img {
  width: 160px;
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.15));
}

/* ---------- View All Link ---------- */
.view-all {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .95rem;
  color: var(--teal);
  transition: color .25s var(--ease);
}

.view-all:hover {
  color: var(--pink);
}

/* ---------- Track Record Title with Arc ---------- */
.track-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.track-title-row .section-title {
  margin-bottom: 0;
}

.track-title-row .section-title::after {
  margin-top: 10px;
}

.track-title-arc {
  width: 72px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.3));
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Shop Note ---------- */
.shop-note {
  text-align: center;
  margin-top: 48px;
  font-size: .85rem;
  color: #888;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root { --section-pad: 60px 20px; }

  .hero-image { max-width: 260px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 48px 16px; }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-ctas { justify-content: center; }

  .hero-image {
    max-width: 220px;
    margin-top: 24px;
  }

  .about-intro {
    flex-direction: column;
    text-align: center;
  }

  .about-intro-image {
    flex: auto;
    max-width: 200px;
    margin: 0 auto;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-image {
    flex: auto;
    max-width: 200px;
    margin: 0 auto;
  }

  .blog-layout {
    flex-direction: column;
  }

  .blog-sidebar {
    flex: auto;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }

  .footer-inner > * {
    flex: auto;
    width: 100%;
  }

  .footer-arc-centered img {
    width: 70px;
  }

  /* Track record title row on mobile */
  .track-title-row {
    gap: 12px;
    margin-bottom: 32px;
  }

  .track-title-arc {
    width: 56px;
  }

  /* Contact page mobile fixes */
  .contact-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .contact-form {
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
  }

  .contact-image {
    flex: auto;
    max-width: 180px;
    margin: 0 auto;
    order: 1;
  }
}

@media (max-width: 480px) {
  :root { --section-pad: 40px 12px; }

  .hero { min-height: auto; padding-bottom: 48px; }

  .btn {
    padding: 12px 24px;
    font-size: .9rem;
    width: 100%;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .footer-links-row {
    flex-direction: column;
    gap: 8px;
  }

  .footer-divider {
    display: none;
  }

  .contact-form .btn {
    width: 100%;
  }
}
