/* style.css - Complete stylesheet for AtoZ Embroidery pty Ltd */

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #D60000;
  --primary-dark: #111111;
  --primary-light: #ffe8e8;
  --gold: #ff3b30;
  --gold-light: #ffb3ad;
  --text: #181818;
  --white: #fff;
  --bg: #F7F7F6;
  --muted: #5f5f5f;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(rgba(214, 0, 0, 0.035) 0.7px, transparent 0.7px),
    radial-gradient(rgba(0, 0, 0, 0.045) 0.7px, transparent 0.7px);
  background-position: 0 0, 5px 5px;
  background-size: 10px 10px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 0.5rem auto 0;
}

/* ===== NAVIGATION ===== */
.navbar {
  background: var(--primary);
  color: var(--white);
  padding: 0.55rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 0;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(40, 8, 15, .25));
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--primary-dark);
  background-image: url('images/hero.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--white);
  padding: 5rem 0;
  min-height: clamp(520px, 72vh, 760px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, .97) 0%,
    rgba(12, 12, 12, .9) 25%,
    rgba(214, 0, 0, .55) 48%,
    rgba(214, 0, 0, .16) 68%,
    rgba(214, 0, 0, 0) 82%
  );
}

.hero-content {
  width: 100%;
}

.hero-text {
  max-width: 610px;
  padding: 2.25rem 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-kicker i { color: var(--gold); }

.hero-text h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 3px 22px rgba(24, 4, 8, .5);
}

.hero-text p {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 12px rgba(24, 4, 8, .5);
}

.hero .btn-primary {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(24, 4, 8, .28);
}

.hero .btn-primary:hover {
  background: var(--gold-light);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.hero-text-link {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px dashed rgba(255,255,255,.65);
  padding-bottom: .2rem;
}

.hero-text-link i { margin-left: .35rem; transition: transform .25s; }
.hero-text-link:hover i { transform: translateX(5px); }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.25rem;
  margin-top: 2rem;
  color: rgba(255,255,255,.86);
  font-size: .88rem;
  font-weight: 600;
}

.hero-proof i {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: .3rem;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: .58rem;
}

/* Moving selvage strip: an immediate snapshot of the full offering. */
.service-ticker {
  overflow: hidden;
  color: #fff;
  background: #111;
  border-top: 1px dashed var(--primary);
  border-bottom: 1px dashed var(--primary);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: .9rem 0;
  animation: tickerMove 26s linear infinite;
}

.ticker-track span {
  padding: 0 1.7rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(214,0,0,.16);
}

@keyframes tickerMove { to { transform: translateX(-50%); } }

/* Scroll progress behaves like a red thread being pulled through the page. */
.thread-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 0;
  height: 3px;
  background: #fff;
  box-shadow: 0 0 9px rgba(255,255,255,.75);
  pointer-events: none;
}

.thread-progress::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1rem;
  color: #fff;
  background: #111;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 99px;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  font-size: .88rem;
  font-weight: 800;
  transition: transform .25s, background .25s;
}

.whatsapp-float i { color: #25d366; font-size: 1.2rem; }
.whatsapp-float:hover { transform: translateY(-4px); background: var(--primary); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(214, 0, 0, 0.25);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary-dark);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--primary-dark);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-light {
  display: inline-block;
  background: var(--white);
  color: var(--primary-dark);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-light:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.section > .container {
  position: relative;
  z-index: 1;
}

/* Small sewing appliques scattered beneath the content layer. */
.sewing-overlay {
  position: absolute;
  z-index: 0;
  width: clamp(72px, 9vw, 132px);
  height: auto;
  border-radius: 0;
  opacity: .12;
  filter: grayscale(1) contrast(1.3) drop-shadow(0 3px 3px rgba(0,0,0,.12));
  pointer-events: none;
  user-select: none;
}

.bg-dark .sewing-overlay,
.bg-primary .sewing-overlay {
  opacity: .16;
  filter: brightness(0) invert(1);
}

.overlay-top-left { top: 9%; left: -28px; transform: rotate(-14deg); }
.overlay-top-right { top: 8%; right: -25px; transform: rotate(13deg); }
.overlay-bottom-left { bottom: 5%; left: 2%; transform: rotate(18deg); }
.overlay-bottom-right { bottom: 4%; right: 2%; transform: rotate(-16deg); }
.overlay-mid-left { top: 46%; left: -30px; transform: rotate(9deg); }
.overlay-mid-right { top: 48%; right: -24px; transform: rotate(-11deg); }

.overlay-ruler { width: clamp(130px, 18vw, 245px); }
.overlay-machine { width: clamp(90px, 12vw, 165px); }
.overlay-scissors { width: clamp(85px, 11vw, 155px); }
.overlay-thread { width: clamp(78px, 9vw, 128px); }
.overlay-needle, .overlay-safety-pin, .overlay-pins { width: clamp(62px, 7vw, 100px); }
.overlay-button { width: clamp(66px, 8vw, 112px); }

/* Wavy dashed seams make each section feel stitched to the next. */
.section::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 0;
  width: 100%;
  height: 15px;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='15' viewBox='0 0 120 15'%3E%3Cpath d='M0 7.5 C15 0 25 15 40 7.5 S65 0 80 7.5 S105 15 120 7.5' fill='none' stroke='%23D60000' stroke-width='2.5' stroke-linecap='round' stroke-dasharray='7 7'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}

.section:nth-of-type(even)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='15' viewBox='0 0 120 15'%3E%3Cpath d='M0 7.5 C15 0 25 15 40 7.5 S65 0 80 7.5 S105 15 120 7.5' fill='none' stroke='%23111111' stroke-width='2.5' stroke-linecap='round' stroke-dasharray='7 7'/%3E%3C/svg%3E");
}

/* A finishing tool sits at the end of each stitched seam. */
.section::after {
  content: '\1FAA1';
  position: absolute;
  top: -18px;
  right: max(18px, calc((100vw - 1200px) / 2 + 20px));
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--primary);
  background: var(--bg);
  border: 1px dashed var(--gold);
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  transform: rotate(42deg);
  box-shadow: 0 3px 10px rgba(48, 41, 42, 0.12);
  pointer-events: none;
}

.bg-light {
  background-color: #f3f3f3;
  background-image: repeating-linear-gradient(45deg, rgba(214,0,0,.035) 0 1px, transparent 1px 6px);
}

.bg-dark {
  background: var(--primary-dark);
  color: var(--white);
}

.bg-primary {
  background: var(--primary);
  color: var(--white);
}

/* ===== FABRIC SURFACES =====
   Each section uses a different, low-contrast textile weave. */
section.section:nth-of-type(5n + 1):not(.work-showcase) {
  /* Quilting cotton: a stable, even plain weave. */
  background-color: #f7f7f6;
  background-image:
    linear-gradient(90deg, rgba(214,0,0,.035) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 7px 7px;
  color: var(--text);
}

section.section:nth-of-type(5n + 2):not(.work-showcase) {
  /* Linen: irregular crossing fibres and a natural warm base. */
  background-color: #f1f1f1;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(214,0,0,.035) 5px 6px, transparent 6px 11px),
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(0,0,0,.055) 8px 9px, transparent 9px 15px);
  color: var(--text);
}

section.section:nth-of-type(5n + 3):not(.work-showcase) {
  /* Denim: a strong diagonal twill, recoloured in brand maroon. */
  background-color: #111111;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, rgba(214,0,0,.11) 2px 5px);
  color: var(--white);
}

section.section:nth-of-type(5n + 3):not(.work-showcase) p { color: #f5f5f5; }

section.section:nth-of-type(5n + 4):not(.work-showcase) {
  /* Jersey: a soft field of tiny knitted loops. */
  background-color: #f7f7f6;
  background-image: radial-gradient(ellipse at center, rgba(214,0,0,.07) 0 1px, transparent 1.5px);
  background-size: 8px 5px;
  color: var(--text);
}

section.section:nth-of-type(5n):not(.work-showcase) {
  /* Rib knit: close, raised vertical ribs. */
  background-color: #ececec;
  background-image: repeating-linear-gradient(90deg, rgba(214,0,0,.045) 0 2px, transparent 2px 8px);
  color: var(--text);
}

/* Preserve strong contrast for sections intentionally designed as dark panels. */
section.section.bg-dark:not(.work-showcase) {
  background-color: var(--primary-dark);
  background-image:
    repeating-linear-gradient(0deg, transparent 0 6px, rgba(255,255,255,.035) 6px 7px),
    repeating-linear-gradient(90deg, transparent 0 9px, rgba(214,0,0,.1) 9px 10px);
  color: var(--white);
}

section.section.bg-primary:not(.work-showcase) {
  background-color: var(--primary);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 2px, rgba(0,0,0,.12) 2px 5px);
  color: var(--white);
}

section.section.bg-dark h2,
section.section.bg-dark h3,
section.section.bg-dark p,
section.section.bg-dark li,
section.section.bg-primary h2,
section.section.bg-primary h3,
section.section.bg-primary p,
section.section.bg-primary li {
  color: var(--white);
}

/* ===== SERVICE CARDS (Preview) ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: var(--bg);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
  border-bottom: 4px solid transparent;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 80px;
  height: 80px;
  border: 2px dashed currentColor;
  border-radius: 50%;
  opacity: .09;
  transition: transform .4s, opacity .4s;
}

.service-card:hover::after { transform: scale(1.25) rotate(35deg); opacity: .18; }

/* The cards are individual fabric swatches within each collection. */
.service-card:nth-child(5n + 1),
.service-detail-card:nth-child(5n + 1) {
  background-color: #f7f7f6;
  background-image:
    linear-gradient(90deg, rgba(214,0,0,.035) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,.045) 1px, transparent 1px);
  background-size: 7px 7px;
  color: var(--text);
}

.service-card:nth-child(5n + 2),
.service-detail-card:nth-child(5n + 2) {
  background-color: #f0f0f0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 6px, rgba(214,0,0,.035) 6px 7px),
    repeating-linear-gradient(90deg, transparent 0 9px, rgba(0,0,0,.055) 9px 10px);
  color: var(--text);
}

.service-card:nth-child(5n + 3),
.service-detail-card:nth-child(5n + 3) {
  background-color: #171717;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 2px, rgba(214,0,0,.12) 2px 5px);
  color: var(--white);
  border-left-color: var(--gold);
}

.service-card:nth-child(5n + 3) i,
.service-detail-card:nth-child(5n + 3) i { color: var(--gold-light); }

.service-card:nth-child(5n + 3) h2,
.service-card:nth-child(5n + 3) h3,
.service-card:nth-child(5n + 3) p,
.service-card:nth-child(5n + 3) li,
.service-detail-card:nth-child(5n + 3) h2,
.service-detail-card:nth-child(5n + 3) h3,
.service-detail-card:nth-child(5n + 3) p,
.service-detail-card:nth-child(5n + 3) li {
  color: var(--white);
  text-shadow: 0 1px 1px rgba(0,0,0,.3);
}

.service-detail-card:nth-child(5n + 3) .service-icon i {
  color: var(--gold);
  background: rgba(255,255,255,.1);
}

.service-card:nth-child(5n + 4),
.service-detail-card:nth-child(5n + 4) {
  background-color: #f7f7f6;
  background-image: radial-gradient(ellipse, rgba(214,0,0,.09) 0 1px, transparent 1.5px);
  background-size: 8px 5px;
  color: var(--text);
}

.service-card:nth-child(5n),
.service-detail-card:nth-child(5n) {
  background-color: #ececec;
  background-image: repeating-linear-gradient(90deg, rgba(214,0,0,.05) 0 2px, transparent 2px 8px);
  color: var(--text);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-bottom-color: var(--primary);
}

.service-card i {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
}

/* Keep card copy tied to its card surface, even inside a dark fabric section. */
section.section .service-grid .service-card h3,
section.section .service-grid .service-card p {
  color: inherit;
}

.service-card:nth-child(5n + 1),
.service-card:nth-child(5n + 2) {
  border: 1px solid rgba(214, 0, 0, .2);
  box-shadow:
    0 14px 32px rgba(40, 8, 15, .2),
    inset 0 0 0 5px rgba(255,255,255,.38);
}

section.section .service-grid .service-card:nth-child(5n + 1) h3,
section.section .service-grid .service-card:nth-child(5n + 2) h3 {
  color: var(--primary);
}

section.section .service-grid .service-card:nth-child(5n + 1) p,
section.section .service-grid .service-card:nth-child(5n + 2) p {
  color: #3f3435;
  font-weight: 500;
}

/* ===== PROMO GRID (Home) ===== */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.promo-text ul {
  margin-top: 1.5rem;
}

.promo-text li {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.promo-text li i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.promo-image img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Editorial image stacks turn real workshop photos into visual proof. */
.product-collage {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.product-collage figure { margin: 0; }

.collage-main {
  position: absolute;
  inset: 4% 15% 7% 0;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 20px;
  background: #111;
  box-shadow: 0 22px 45px rgba(0,0,0,.2);
}

.collage-main img,
.collage-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.collage-main figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: .55rem .85rem;
  border-radius: 99px;
  color: #fff;
  background: rgba(17,17,17,.82);
  backdrop-filter: blur(7px);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.collage-small {
  position: absolute;
  right: 0;
  z-index: 2;
  width: 38%;
  height: 39%;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 15px;
  background: #111;
  box-shadow: 0 15px 30px rgba(0,0,0,.22);
}

.collage-small-top { top: 0; transform: rotate(4deg); }
.collage-small-bottom { bottom: 0; transform: rotate(-4deg); }

.studio-collage {
  position: relative;
  min-height: 540px;
}

.studio-main {
  position: absolute;
  inset: 0 13% 5% 0;
  width: 87%;
  height: 95%;
  object-fit: cover;
  border: 7px solid #fff;
  border-radius: 22px;
  box-shadow: 0 22px 45px rgba(0,0,0,.2);
}

.studio-detail {
  position: absolute;
  right: 0;
  bottom: 3%;
  width: 42%;
  height: 40%;
  object-fit: cover;
  border: 5px solid #fff;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,.25);
  transform: rotate(3deg);
}

.studio-note {
  position: absolute;
  top: 7%;
  right: -1%;
  z-index: 2;
  max-width: 175px;
  padding: .85rem 1rem;
  color: #fff;
  background: var(--primary);
  border-radius: 4px 14px 14px 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
  font-size: .82rem;
  line-height: 1.35;
  transform: rotate(2deg);
}

.studio-note strong { display: block; font-size: 1rem; }

/* ===== ABOUT PAGE ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
}

.page-header p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-top: 0.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-preview {
  padding: 2.75rem 0;
}

.about-preview .about-grid {
  gap: 2.5rem;
}

.about-preview h2 {
  margin-bottom: 0.75rem;
}

.about-preview .about-image img {
  width: 100%;
  max-width: 100%;
  height: 220px;
  object-fit: cover;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-text .btn-primary {
  margin-top: 0.75rem;
}

.about-text .btn-primary i {
  margin-left: 0.4rem;
  transition: transform 0.25s;
}

.about-text .btn-primary:hover i {
  transform: translateX(4px);
}

.about-image img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== VISION & MISSION ===== */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.vision-card {
  background: rgba(255,255,255,0.05);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}

.vision-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
}

.vision-card i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.vision-card h3 {
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}

.vision-card ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.vision-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* ===== SERVICES DETAIL PAGE ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.service-detail-card {
  background-color: var(--bg);
  background-image: repeating-linear-gradient(90deg, rgba(214,0,0,.025) 0 1px, transparent 1px 5px);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s;
  border-left: 5px solid var(--primary);
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-detail-card.full-width {
  grid-column: 1 / -1;
}

.service-icon {
  flex-shrink: 0;
}

.service-icon i {
  font-size: 3.5rem;
  color: var(--primary);
  background: var(--primary-light);
  padding: 1rem;
  border-radius: 12px;
}

.service-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.service-content ul {
  margin-top: 1rem;
}

.service-content ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-content ul li i {
  color: var(--primary);
}

/* ===== INTERACTIVE WORK DECK ===== */
.work-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(214, 0, 0, 0.14), transparent 25rem),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0 2px, transparent 2px 8px),
    #e9e7e7;
  color: var(--text);
}

.work-showcase .sewing-overlay {
  opacity: .12;
  filter: grayscale(1) contrast(1.3) drop-shadow(0 3px 3px rgba(0,0,0,.12));
}

.work-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.work-intro h2 { margin: 0.35rem 0 0.65rem; }
.work-intro p { color: var(--muted); max-width: 620px; }

.eyebrow {
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-showcase .eyebrow {
  color: var(--primary);
}

.shuffle-button,
.deck-arrow {
  border: 1px solid rgba(0,0,0,0.18);
  color: var(--white);
  background: var(--primary-dark);
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.shuffle-button {
  flex: 0 0 auto;
  padding: 0.85rem 1.2rem;
  border-radius: 99px;
  font: inherit;
  font-weight: 700;
}

.shuffle-button i { margin-right: 0.45rem; }
.shuffle-button:hover, .deck-arrow:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.shuffle-button:focus-visible, .deck-arrow:focus-visible, .work-index button:focus-visible, .work-deck:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.work-deck {
  position: relative;
  outline: none;
}

.deck-stage {
  position: relative;
  width: min(410px, 76vw);
  height: min(540px, 102vw);
  margin: 0 auto 2rem;
  perspective: 1200px;
}

.deck-card {
  position: absolute;
  inset: 0;
  padding: 0;
  overflow: hidden;
  border: 8px solid var(--gold-light);
  border-radius: 20px;
  background: var(--primary-dark);
  box-shadow: 0 28px 60px rgba(0,0,0,0.42);
  transform-origin: 50% 100%;
  transition: transform 0.55s cubic-bezier(.2,.8,.2,1), opacity 0.4s;
}

.deck-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 11px; }
.deck-card.is-front { z-index: 4; cursor: pointer; transform: rotate(0deg) translate(0, 0); }
.deck-card.is-second { z-index: 3; transform: rotate(6deg) translate(30px, 5px) scale(.97); }
.deck-card.is-third { z-index: 2; transform: rotate(-6deg) translate(-30px, 12px) scale(.94); }
.deck-card.is-back { z-index: 1; transform: rotate(2deg) translate(8px, 18px) scale(.91); opacity: .65; }
.deck-card.is-leaving { transform: translateX(120%) rotate(18deg) scale(.92); opacity: 0; }

.deck-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.deck-arrow { width: 48px; height: 48px; border-radius: 50%; font-size: 1rem; }
.deck-counter { min-width: 90px; text-align: center; font-variant-numeric: tabular-nums; color: var(--muted); }
.deck-counter strong, #workCurrent { color: var(--primary-dark); font-size: 1.45rem; font-weight: 800; }

.work-index {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  max-width: 600px;
  margin: 1.8rem auto 0;
}

.work-index button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 59, 48, .38);
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}

.work-index button.active { width: 28px; border-radius: 99px; background: var(--gold); }
.deck-hint { margin-top: 1.2rem; text-align: center; color: var(--muted); font-size: 0.88rem; }
.deck-hint i { margin-right: 0.35rem; }

/* ===== CONTACT ATELIER ===== */
.contact-header {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 5.5rem;
  text-align: left;
  background:
    radial-gradient(circle at 84% 25%, rgba(214,0,0,.52), transparent 24rem),
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 2px, transparent 2px 8px),
    #111;
}

.contact-header::after {
  content: 'A—Z';
  position: absolute;
  right: 5%;
  bottom: -4.5rem;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  font-size: clamp(9rem, 25vw, 22rem);
  font-weight: 900;
  line-height: .8;
  pointer-events: none;
}

.contact-header .container { position: relative; z-index: 2; }
.contact-hero-overlay {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: -18%;
  z-index: 1;
  width: clamp(270px, 31vw, 470px);
  height: 125%;
  object-fit: contain;
  object-position: right center;
  border-radius: 0;
  opacity: .78;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.38));
  pointer-events: none;
}
.contact-header h1 { max-width: 800px; margin-top: .6rem; font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -.055em; }
.contact-header h1 em { color: var(--gold); font-style: italic; font-weight: 500; }
.contact-header p { max-width: 610px; }

.contact-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-panel { position: sticky; top: 110px; padding-top: 1rem; }
.contact-number { color: var(--primary); font-size: .73rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.contact-panel h2 { margin: .6rem 0 1rem; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.04em; }
.contact-panel > p { color: var(--muted); font-size: 1.05rem; }

.contact-methods { display: grid; gap: .75rem; margin: 2rem 0; }
.contact-methods > * {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: var(--text);
  border: 1px dashed rgba(17,17,17,.22);
  border-radius: 12px;
  background: rgba(255,255,255,.55);
  transition: border-color .25s, transform .25s;
}

.contact-methods a:hover { border-color: var(--primary); transform: translateX(5px); }
.contact-methods i { width: 24px; color: var(--primary); text-align: center; }
.contact-methods span { min-width: 0; overflow-wrap: anywhere; }
.contact-methods small { display: block; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.contact-stamp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1rem;
  color: #fff;
  background: #111;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.project-form {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.8rem);
  background: #fff;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 4px 28px 4px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
}

.project-form::before {
  content: '';
  position: absolute;
  inset: 11px;
  border: 1px dashed rgba(214,0,0,.24);
  border-radius: 2px 20px 2px 20px;
  pointer-events: none;
}

.project-form > * { position: relative; z-index: 1; }
.form-heading { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 1.8rem; }
.form-heading p, .form-note { color: var(--muted); font-size: .78rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.project-form label, .project-form legend { font-size: .82rem; font-weight: 800; }
.project-form label { display: block; }
.project-form input:not([type='radio']), .project-form textarea {
  width: 100%;
  margin: .42rem 0 1.2rem;
  padding: .9rem 1rem;
  color: var(--text);
  background: #f5f5f5;
  border: 1px solid transparent;
  border-bottom-color: #bbb;
  border-radius: 8px 8px 2px 2px;
  font: inherit;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.project-form input:focus, .project-form textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(214,0,0,.1); }
.project-form textarea { resize: vertical; }
.project-form fieldset { margin: 0 0 1.4rem; border: 0; }
.project-form legend { margin-bottom: .7rem; }
.service-choices { display: flex; flex-wrap: wrap; gap: .55rem; }
.service-choices input { position: absolute; opacity: 0; pointer-events: none; }
.service-choices span { display: block; padding: .65rem .85rem; border: 1px dashed #aaa; border-radius: 99px; cursor: pointer; transition: all .2s; }
.service-choices input:checked + span { color: #fff; background: var(--primary); border-color: var(--primary); box-shadow: 0 5px 15px rgba(214,0,0,.2); }
.service-choices input:focus-visible + span { outline: 3px solid rgba(214,0,0,.25); outline-offset: 3px; }

.form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.2rem;
  color: #fff;
  background: #111;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: background .25s, transform .25s;
}

.form-submit i { color: #25d366; font-size: 1.35rem; }
.form-submit:hover { background: var(--primary); transform: translateY(-2px); }
.form-note { margin-top: .75rem; text-align: center; }

.process-heading { max-width: 600px; margin-bottom: 3rem; }
.process-heading h2 { margin: .5rem 0 0; }
.process-line { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; gap: 1.5rem; }
.process-line::before { content: ''; position: absolute; top: 42px; left: 13%; right: 13%; border-top: 2px dashed rgba(255,255,255,.25); }
.process-line article { position: relative; z-index: 1; padding: 1.5rem; background: #181818; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; }
.process-line article > span { position: absolute; top: 1rem; right: 1rem; color: rgba(255,255,255,.14); font-size: 2.3rem; font-weight: 900; }
.process-line article > i { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 1.4rem; color: #fff; background: var(--primary); border-radius: 50%; font-size: 1.25rem; box-shadow: 0 0 0 7px #181818; }
.process-line h3 { color: #fff; }
.process-line p { color: #cfcfcf !important; }

/* ===== CTA BOX ===== */
.cta-box {
  text-align: center;
  padding: 2rem 0;
}

.cta-box h2 {
  font-size: 2.5rem;
}

.cta-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  color: #f1f1f1;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

footer h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 0;
  filter: brightness(0) invert(1) drop-shadow(0 3px 5px rgba(0,0,0,.24));
}

footer p {
  margin-bottom: 0.5rem;
}

footer a {
  display: block;
  color: #f1f1f1;
  transition: color 0.3s;
  margin-bottom: 0.4rem;
}

footer a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  border-top: 1px dashed var(--gold);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--gold-light);
}

.footer-credit::before {
  content: '•';
  margin: 0 .55rem;
  color: var(--primary);
}

.footer-bottom .footer-credit a {
  display: inline;
  margin: 0;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px dashed var(--primary);
}

.footer-bottom .footer-credit a:hover { color: var(--gold-light); }

/* ===== ANIMATIONS ===== */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-card {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-card:nth-child(1) { animation-delay: 0.1s; }
.animate-card:nth-child(2) { animation-delay: 0.2s; }
.animate-card:nth-child(3) { animation-delay: 0.3s; }
.animate-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid,
  .promo-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card.full-width {
    grid-column: 1;
  }

  .hero {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .about-image img {
    max-width: 80%;
    margin: 0 auto;
  }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-panel { position: static; }
}

@media (max-width: 768px) {
  .hero {
    min-height: 600px;
    background-position: 67% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(12,12,12,.92) 45%, rgba(214,0,0,.5) 72%, rgba(214,0,0,.15) 100%);
  }

  .hero-text { max-width: 86%; }

  .contact-hero-overlay {
    right: -7rem;
    width: 330px;
    opacity: .28;
  }

  .product-collage { min-height: 430px; }
  .studio-collage { min-height: 480px; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--primary-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: left 0.4s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: block;
  }

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

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .cta-box h2 {
    font-size: 1.8rem;
  }

  .service-detail-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-intro { align-items: flex-start; flex-direction: column; }
  .deck-stage { height: min(520px, 112vw); }
  .process-line { grid-template-columns: 1fr; }
  .process-line::before { top: 6%; bottom: 6%; left: 42px; right: auto; border-top: 0; border-left: 2px dashed rgba(255,255,255,.25); }
}

@media (max-width: 480px) {
  .logo img { width: 48px; height: 48px; }

  .product-collage { min-height: 380px; }
  .collage-main { right: 11%; }
  .collage-small { width: 42%; height: 36%; }
  .studio-collage { min-height: 410px; }
  .studio-main { right: 8%; width: 92%; }
  .studio-detail { width: 44%; height: 36%; }
  .studio-note { top: 4%; right: 0; max-width: 145px; }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span { display: none; }
  .whatsapp-float i { font-size: 1.35rem; }

  .hero-proof { gap: .6rem; }
  .hero-proof span { width: 100%; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-header { padding: 4rem 0; }
  .contact-header h1 { font-size: 2.8rem; }

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

  .hero-text h1 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand { justify-content: center; }

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

@media (prefers-reduced-motion: reduce) {
  .deck-card, .shuffle-button, .deck-arrow, .work-index button { transition: none; }
  .ticker-track { animation: none; }
}
