/* =====================================================
   THOLLOWCREST - Custom CSS
   Isometric Accent Design System
   ===================================================== */


:root {
  --clr-bg: #f5f2ee;
  --clr-bg-alt: #ede9e3;
  --clr-bg-dark: #1a1612;
  --clr-bg-dark2: #231f1a;
  --clr-text: #1e1a16;
  --clr-text-muted: #6b6258;
  --clr-text-light: #f5f2ee;
  --clr-amber: #c8852a;
  --clr-amber-light: #e8a84a;
  --clr-amber-dark: #9a6318;
  --clr-rust: #8b3a2a;
  --clr-rust-light: #b5523f;
  --clr-olive: #5a6b3a;
  --clr-olive-light: #7a8f52;
  --clr-slate: #3a4a5a;
  --clr-slate-light: #526275;
  --clr-border: #d4cdc5;
  --clr-border-dark: #3a342c;

  --shadow-sm: 0 1px 3px rgba(26,22,18,0.08), 0 1px 2px rgba(26,22,18,0.06);
  --shadow-md: 0 4px 12px rgba(26,22,18,0.10), 0 2px 4px rgba(26,22,18,0.08);
  --shadow-lg: 0 10px 30px rgba(26,22,18,0.14), 0 4px 8px rgba(26,22,18,0.08);
  --shadow-xl: 0 20px 50px rgba(26,22,18,0.18), 0 8px 16px rgba(26,22,18,0.10);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --nav-height: 80px;
  --nav-height-scrolled: 60px;
  --max-w: 1180px;
  --narrow-w: 680px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }


h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  color: var(--clr-text);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { color: var(--clr-text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
}
.btn--solid {
  background: var(--clr-amber);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--solid:hover {
  background: var(--clr-amber-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border: 2px solid var(--clr-border);
}
.btn--ghost:hover {
  border-color: var(--clr-amber);
  color: var(--clr-amber);
}
.btn--outline {
  background: transparent;
  color: var(--clr-amber);
  border: 2px solid var(--clr-amber);
}
.btn--outline:hover {
  background: var(--clr-amber);
  color: #fff;
}
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; min-height: 56px; }


.sectionTag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-amber);
  background: rgba(200, 133, 42, 0.12);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.sectionTag--light {
  color: var(--clr-amber-light);
  background: rgba(232, 168, 74, 0.15);
}

/* =====================================================
   ISOMETRIC DECORATIONS
   ===================================================== */
.isoDecor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.isoDecor::before,
.isoDecor::after {
  content: '';
  position: absolute;
  border-radius: 4px;
}


.isoDecor--hero1 {
  width: 140px;
  height: 140px;
  top: 12%;
  right: 8%;
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
  background: linear-gradient(135deg, rgba(200,133,42,0.18) 0%, rgba(200,133,42,0.05) 100%);
  border-radius: var(--radius-md);
}
.isoDecor--hero2 {
  width: 80px;
  height: 80px;
  top: 55%;
  right: 15%;
  transform: rotate(30deg) skewX(-20deg);
  background: linear-gradient(135deg, rgba(139,58,42,0.15) 0%, rgba(139,58,42,0.04) 100%);
  border-radius: var(--radius-sm);
}
.isoDecor--hero3 {
  width: 200px;
  height: 60px;
  bottom: 15%;
  left: 5%;
  transform: rotate(-15deg) skewY(-10deg);
  background: linear-gradient(90deg, rgba(90,107,58,0.10) 0%, transparent 100%);
  border-radius: var(--radius-sm);
}
.isoDecor--stmt1 {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 3%;
  transform: rotate(45deg) skewX(-20deg) skewY(-20deg);
  background: linear-gradient(135deg, rgba(200,133,42,0.12) 0%, transparent 100%);
  border-radius: var(--radius-md);
}
.isoDecor--proc1 {
  width: 160px;
  height: 100px;
  top: 5%;
  left: 2%;
  transform: rotate(-30deg) skewY(-15deg);
  background: linear-gradient(135deg, rgba(90,107,58,0.12) 0%, transparent 100%);
  border-radius: var(--radius-md);
}
.isoDecor--proc2 {
  width: 90px;
  height: 90px;
  bottom: 10%;
  right: 5%;
  transform: rotate(60deg) skewX(-10deg);
  background: linear-gradient(135deg, rgba(58,74,90,0.12) 0%, transparent 100%);
  border-radius: var(--radius-sm);
}
.isoDecor--pers1 {
  width: 180px;
  height: 80px;
  top: 20%;
  right: 0;
  transform: rotate(-20deg) skewY(-10deg);
  background: linear-gradient(135deg, rgba(200,133,42,0.10) 0%, transparent 100%);
  border-radius: var(--radius-md);
}
.isoDecor--cta1 {
  width: 200px;
  height: 120px;
  top: 10%;
  left: 5%;
  transform: rotate(30deg) skewX(-15deg) skewY(-15deg);
  background: linear-gradient(135deg, rgba(200,133,42,0.15) 0%, transparent 100%);
  border-radius: var(--radius-md);
}
.isoDecor--cta2 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  right: 8%;
  transform: rotate(-45deg) skewX(-20deg);
  background: linear-gradient(135deg, rgba(139,58,42,0.12) 0%, transparent 100%);
  border-radius: var(--radius-sm);
}


.isoBox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  color: #fff;
  position: relative;
  flex-shrink: 0;
  box-shadow:
    4px 4px 0 rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.isoBox::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 4px;
  right: -4px;
  height: 100%;
  border-radius: var(--radius-sm);
  z-index: -1;
  opacity: 0.4;
}
.isoBox--amber { background: linear-gradient(135deg, var(--clr-amber-light), var(--clr-amber)); }
.isoBox--amber::before { background: var(--clr-amber-dark); }
.isoBox--rust { background: linear-gradient(135deg, var(--clr-rust-light), var(--clr-rust)); }
.isoBox--rust::before { background: #6b2a1c; }
.isoBox--olive { background: linear-gradient(135deg, var(--clr-olive-light), var(--clr-olive)); }
.isoBox--olive::before { background: #3d4a28; }
.isoBox--slate { background: linear-gradient(135deg, var(--clr-slate-light), var(--clr-slate)); }
.isoBox--slate::before { background: #28363f; }
.isoBox--sm { width: 40px; height: 40px; font-size: 1rem; }
.isoBox--lg { width: 72px; height: 72px; font-size: 1.8rem; }
.isoBox--xl { width: 96px; height: 96px; font-size: 2.4rem; }


.isoBlock {
  position: relative;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(200,133,42,0.25) 0%, rgba(200,133,42,0.08) 100%);
  transform: rotate(45deg) skewX(-15deg) skewY(-15deg);
}
.isoBlock--md { width: 80px; height: 80px; }
.isoBlock--lg { width: 120px; height: 120px; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.siteNav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: var(--max-w);
  z-index: 1000;
  transition: all 0.35s ease;
}
.siteNav_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245,242,238,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212,205,197,0.6);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.5rem;
  box-shadow:
    0 4px 16px rgba(26,22,18,0.10),
    0 1px 4px rgba(26,22,18,0.06);
  transition: all 0.35s ease;
}
.siteNav.scrolled .siteNav_inner {
  padding: 0.55rem 1.5rem;
  background: rgba(245,242,238,0.97);
  box-shadow: 0 6px 24px rgba(26,22,18,0.14), 0 2px 6px rgba(26,22,18,0.08);
}
.siteNav_logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.siteNav_logo:hover { opacity: 0.8; }
.siteNav_logoImg {
  width: 36px;
  height: 36px;
  transition: width 0.35s ease, height 0.35s ease;
}
.siteNav.scrolled .siteNav_logoImg { width: 28px; height: 28px; }
.siteNav_logoText {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--clr-text);
  letter-spacing: -0.02em;
}
.siteNav_links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.siteNav_link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.siteNav_link:hover,
.siteNav_link--active {
  color: var(--clr-amber);
  background: rgba(200,133,42,0.08);
}
.siteNav_hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.siteNav_hamburger:hover { background: rgba(200,133,42,0.08); }
.siteNav_hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =====================================================
   MOBILE MENU (slides from LEFT)
   ===================================================== */
.mobileOverlay {
  position: fixed;
  inset: 0;
  background: rgba(26,22,18,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobileOverlay.active {
  opacity: 1;
  pointer-events: all;
}
.mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 360px;
  height: 100dvh;
  background: var(--clr-bg-dark);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.mobileMenu.active {
  transform: translateX(0);
}
.mobileMenu_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--clr-border-dark);
}
.mobileMenu_brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--clr-text-light);
}
.mobileMenu_close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-light);
  font-size: 1.3rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.mobileMenu_close:hover { background: rgba(255,255,255,0.08); }
.mobileMenu_links {
  flex: 1;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobileMenu_links li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: calc(var(--i) * 60ms);
}
.mobileMenu.active .mobileMenu_links li {
  opacity: 1;
  transform: translateX(0);
}
.mobileMenu_links a {
  display: block;
  padding: 0.85rem 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: rgba(245,242,238,0.85);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.mobileMenu_links a:hover {
  background: rgba(200,133,42,0.15);
  color: var(--clr-amber-light);
  padding-left: 1.4rem;
}
.mobileMenu_footer {
  padding: 1.5rem;
  border-top: 1px solid var(--clr-border-dark);
  color: rgba(245,242,238,0.5);
  font-size: 0.85rem;
  line-height: 1.6;
}
.mobileMenu_footer a {
  display: block;
  margin-top: 0.5rem;
  color: var(--clr-amber-light);
  font-weight: 500;
}

/* =====================================================
   HERO SECTION (Homepage)
   ===================================================== */
.mainHero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-lg);
  padding: calc(var(--nav-height) + 3rem) var(--space-md) var(--space-xl);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.mainHero_content {
  position: relative;
  z-index: 1;
}
.mainHero_eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.mainHero_eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--clr-amber);
  border-radius: 2px;
}
.mainHero_title {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.mainHero_titleLine { display: block; }
.mainHero_titleLine--accent {
  color: var(--clr-amber);
  font-style: italic;
}
.mainHero_sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--clr-text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.mainHero_actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.mainHero_visual {
  position: relative;
  z-index: 1;
}
.mainHero_imgWrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.mainHero_img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.mainHero_imgAccent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--clr-amber), var(--clr-amber-dark));
  border-radius: var(--radius-md);
  transform: rotate(45deg) skewX(-10deg) skewY(-10deg);
  z-index: -1;
  opacity: 0.6;
}

/* =====================================================
   BOLD STATEMENT SECTION
   ===================================================== */
.boldStatement {
  background: var(--clr-bg-dark);
  padding: var(--space-xl) var(--space-md);
  position: relative;
  overflow: hidden;
}
.boldStatement_inner {
  max-width: var(--narrow-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.boldStatement_tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-amber-light);
  margin-bottom: 1.5rem;
  display: block;
}
.boldStatement_heading {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  color: var(--clr-text-light);
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.boldStatement_heading em {
  color: var(--clr-amber-light);
  font-style: italic;
}
.boldStatement_body {
  font-size: 1.1rem;
  color: rgba(245,242,238,0.72);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.servicesSection {
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-w);
  margin: 0 auto;
  container-type: inline-size;
  container-name: servicesContainer;
}
.servicesSection_header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.servicesSection_title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.5rem;
}
.servicesSection_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.serviceCard {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  container-type: inline-size;
  container-name: serviceCard;
}
.serviceCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-amber);
}
.serviceCard_isoIcon {
  margin-bottom: 1.25rem;
}
.serviceCard_title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--clr-text);
}
.serviceCard_text {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.serviceCard_link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-amber);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease, color 0.2s ease;
}
.serviceCard_link:hover { gap: 0.8rem; color: var(--clr-amber-dark); }

/* =====================================================
   PROCESS SECTION (invisible boundary flows from services)
   ===================================================== */
.processSection {
  padding: var(--space-xl) var(--space-md);
  background: var(--clr-bg-alt);
  position: relative;
  overflow: hidden;
}
.processSection_intro {
  max-width: var(--narrow-w);
  margin: 0 auto var(--space-lg);
}
.processSection_title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.5rem;
}
.processSection_steps {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.processStep {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--clr-border);
  position: relative;
}
.processStep:last-child { border-bottom: none; }
.processStep_num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200,133,42,0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  padding-top: 0.25rem;
}
.processStep_content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--clr-text);
}
.processStep_content p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin: 0;
}
.processSection_imgRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.processSection_imgLink {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.processSection_imgLink:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.processSection_img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.processSection_imgLink:hover .processSection_img {
  transform: scale(1.04);
}

/* =====================================================
   MATERIALS TEASER (flows from process - invisible boundary)
   ===================================================== */
.materialsTeaser {
  padding: var(--space-xl) var(--space-md);
  background: var(--clr-bg-alt);
}
.materialsTeaser_inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.materialsTeaser_text .sectionTag { margin-bottom: 1rem; }
.materialsTeaser_title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}
.materialsTeaser_text p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.materialsTeaser_visual {
  position: relative;
}
.materialsTeaser_img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}
.materialsTeaser_img:hover { transform: scale(1.02); }
.materialsTeaser_isoAccent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  z-index: -1;
  opacity: 0.6;
}

/* =====================================================
   PERSONALIZATION SECTION
   ===================================================== */
.personalSection {
  padding: var(--space-xl) var(--space-md);
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}
.personalSection_inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.personalSection_img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.personalSection_text .sectionTag { margin-bottom: 1rem; }
.personalSection_title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}
.personalSection_text p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.ctaSection {
  background: var(--clr-bg-dark2);
  padding: var(--space-xl) var(--space-md);
  position: relative;
  overflow: hidden;
}
.ctaSection_inner {
  max-width: var(--narrow-w);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ctaSection_title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--clr-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.ctaSection_sub {
  font-size: 1.1rem;
  color: rgba(245,242,238,0.68);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.ctaSection_actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ctaSection .btn--ghost {
  border-color: rgba(245,242,238,0.3);
  color: var(--clr-text-light);
}
.ctaSection .btn--ghost:hover {
  border-color: var(--clr-amber-light);
  color: var(--clr-amber-light);
}

/* =====================================================
   INNER HERO (subpages)
   ===================================================== */
.innerHero {
  padding: calc(var(--nav-height) + 4rem) var(--space-md) var(--space-xl);
  background: var(--clr-bg-dark);
  position: relative;
  overflow: hidden;
}
.innerHero--compact {
  padding-bottom: var(--space-lg);
}
.innerHero_content {
  max-width: var(--narrow-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.innerHero_tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-amber-light);
  background: rgba(200,133,42,0.15);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.innerHero_title {
  color: var(--clr-text-light);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.innerHero_sub {
  font-size: 1.1rem;
  color: rgba(245,242,238,0.68);
  line-height: 1.75;
  max-width: 560px;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.aboutStory {
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-w);
  margin: 0 auto;
}
.aboutStory_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.aboutStory_text .sectionTag { margin-bottom: 1rem; }
.aboutStory_text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1.5rem;
}
.aboutStory_text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.aboutStory_img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}
.aboutStory_img:hover { transform: scale(1.02); }

.aboutValues {
  padding: var(--space-xl) var(--space-md);
  background: var(--clr-bg-dark);
  position: relative;
  overflow: hidden;
}
.aboutValues_header {
  max-width: var(--narrow-w);
  margin: 0 auto var(--space-lg);
}
.aboutValues_header h2 {
  color: var(--clr-text-light);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.5rem;
}
.aboutValues_grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.valueCard {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}
.valueCard:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,133,42,0.4);
  transform: translateY(-3px);
}
.valueCard .isoBox { margin-bottom: 1.25rem; }
.valueCard h3 {
  font-size: 1.2rem;
  color: var(--clr-text-light);
  margin-bottom: 0.75rem;
}
.valueCard p {
  font-size: 0.95rem;
  color: rgba(245,242,238,0.6);
  line-height: 1.7;
  margin: 0;
}

.aboutAtelier {
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-w);
  margin: 0 auto;
}
.aboutAtelier_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.aboutAtelier_img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.aboutAtelier_text .sectionTag { margin-bottom: 1rem; }
.aboutAtelier_text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1.25rem;
}
.aboutAtelier_text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.aboutAtelier_contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.aboutAtelier_contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin: 0;
}
.aboutAtelier_contact i {
  color: var(--clr-amber);
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.aboutAtelier_contact a:hover { color: var(--clr-amber); }

/* =====================================================
   MATERIALS PAGE
   ===================================================== */
.materialsIntro {
  padding: var(--space-xl) var(--space-md);
}
.materialsIntro_inner {
  max-width: var(--narrow-w);
  margin: 0 auto;
}
.materialsIntro_text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.materialsIntro_text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.leatherTypes {
  padding: 0 var(--space-md) var(--space-xl);
  max-width: var(--max-w);
  margin: 0 auto;
}
.leatherTypes_header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.leatherTypes_header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-top: 0.5rem;
}
.leatherType_item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--clr-border);
}
.leatherType_item--alt {
  direction: rtl;
}
.leatherType_item--alt > * {
  direction: ltr;
}
.leatherType_tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: 0.75rem;
}
.leatherType_item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.leatherType_item p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.leatherType_props {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.leatherType_props span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-olive);
  background: rgba(90,107,58,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.leatherType_props i { font-size: 0.75rem; }
.leatherType_img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}
.leatherType_img:hover { transform: scale(1.02); }
.leatherType_imgPlaceholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 320px;
  background: var(--clr-bg-alt);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--clr-border);
}
.leatherType_imgPlaceholder p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin: 0;
}

.toolsSection {
  padding: var(--space-xl) var(--space-md);
  background: var(--clr-bg-dark);
  position: relative;
  overflow: hidden;
}
.toolsSection_header {
  max-width: var(--narrow-w);
  margin: 0 auto var(--space-lg);
}
.toolsSection_header h2 {
  color: var(--clr-text-light);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-top: 0.5rem;
}
.toolsSection_grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.toolCard {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}
.toolCard:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,133,42,0.3);
  transform: translateY(-3px);
}
.toolCard .isoBox { margin-bottom: 1.25rem; }
.toolCard h3 {
  font-size: 1.15rem;
  color: var(--clr-text-light);
  margin-bottom: 0.75rem;
}
.toolCard p {
  font-size: 0.95rem;
  color: rgba(245,242,238,0.6);
  line-height: 1.7;
  margin: 0;
}

.hardwareSection {
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-w);
  margin: 0 auto;
}
.hardwareSection_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.hardwareSection_text .sectionTag { margin-bottom: 1rem; }
.hardwareSection_text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1.25rem;
}
.hardwareSection_text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.hardwareSection_visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hardwareSection_isoDecor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}
.hardwareSection_imgGrid {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* =====================================================
   TIPS/ADVICE PAGE
   ===================================================== */
.tipsIntro {
  padding: var(--space-xl) var(--space-md);
}
.tipsIntro_inner {
  max-width: var(--narrow-w);
  margin: 0 auto;
}
.tipsIntro_inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1.5rem;
}
.tipsIntro_inner p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.tipsSection {
  padding: var(--space-xl) var(--space-md);
  background: var(--clr-bg-dark);
  position: relative;
  overflow: hidden;
}
.tipsSection_header {
  max-width: var(--narrow-w);
  margin: 0 auto var(--space-lg);
}
.tipsSection_header h2 {
  color: var(--clr-text-light);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.5rem;
}
.tipArticle {
  max-width: var(--narrow-w);
  margin: 0 auto var(--space-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s ease;
}
.tipArticle:hover { border-color: rgba(200,133,42,0.3); }
.tipArticle_header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.tipArticle_header h3 {
  font-size: 1.3rem;
  color: var(--clr-text-light);
  margin: 0;
}
.tipArticle_body p {
  font-size: 0.98rem;
  color: rgba(245,242,238,0.65);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.tipArticle_body p:last-child { margin-bottom: 0; }

.repairSection {
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-w);
  margin: 0 auto;
}
.repairSection_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.repairSection_text .sectionTag { margin-bottom: 1rem; }
.repairSection_text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1.25rem;
}
.repairSection_text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.repairSection_img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}
.repairSection_img:hover { transform: scale(1.02); }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contactSection {
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  max-width: var(--max-w);
  margin: 0 auto;
}
.contactSection_inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-lg);
  align-items: start;
  margin-bottom: var(--space-lg);
}
.contactForm_wrap h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}
.contactForm_sub {
  font-size: 1rem;
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contactForm {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contactForm_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contactForm_field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contactForm_field label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-text);
}
.req { color: var(--clr-amber); }
.contactForm_field input,
.contactForm_field textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--clr-text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 48px;
  resize: vertical;
}
.contactForm_field input:focus,
.contactForm_field textarea:focus {
  outline: none;
  border-color: var(--clr-amber);
  box-shadow: 0 0 0 3px rgba(200,133,42,0.12);
}
.contactForm_field input::placeholder,
.contactForm_field textarea::placeholder {
  color: #b0a89e;
}
.contactForm_privacy {
  margin-top: 0.5rem;
}
.privacyCheck {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.privacyCheck_box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--clr-border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
  position: relative;
  background: #fff;
}
.privacyCheck input:checked + .privacyCheck_box {
  background: var(--clr-amber);
  border-color: var(--clr-amber);
}
.privacyCheck input:checked + .privacyCheck_box::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.privacyCheck input { display: none; }
.privacyCheck_text {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.privacyCheck_text a { color: var(--clr-amber); text-decoration: underline; }
.contactForm_submit { margin-top: 0.5rem; align-self: flex-start; }

.contactInfo_card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.25rem;
}
.contactInfo_card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--clr-text);
}
.contactInfo_item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contactInfo_item:last-child { margin-bottom: 0; }
.contactInfo_item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.25rem;
}
.contactInfo_item p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.6;
}
.contactInfo_item a:hover { color: var(--clr-amber); }
.contactInfo_note {
  display: flex;
  gap: 0.75rem;
  background: rgba(200,133,42,0.08);
  border: 1px solid rgba(200,133,42,0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}
.contactInfo_note i {
  color: var(--clr-amber);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.contactInfo_note p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.6;
}
.contactMap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}

/* =====================================================
   THANKS PAGE
   ===================================================== */
.thanksPage {
  padding: calc(var(--nav-height) + 4rem) var(--space-md) var(--space-xl);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thanksPage_inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.thanksPage_icon {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.thanksPage_title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.thanksPage_text {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.thanksPage_next {
  text-align: left;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
}
.thanksPage_next h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--clr-text);
}
.thanksPage_steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.thanksPage_step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.thanksPage_step strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: var(--clr-text);
  margin-bottom: 0.3rem;
}
.thanksPage_step p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legalPage {
  padding: calc(var(--nav-height) + 3rem) var(--space-md) var(--space-xl);
}
.legalPage_inner {
  max-width: var(--narrow-w);
  margin: 0 auto;
}
.legalPage_header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--clr-border);
}
.legalPage_tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: 0.75rem;
}
.legalPage_header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.legalPage_date {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}
.legalPage_body h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--clr-text);
}
.legalPage_body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}
.legalPage_body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legalPage_body ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--clr-text-muted);
  margin-bottom: 0.4rem;
}
.legalPage_body address {
  background: var(--clr-bg-alt);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-top: 0.75rem;
}
.legalPage_body a { color: var(--clr-amber); text-decoration: underline; }
.legalPage_intro {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(200,133,42,0.06);
  border-left: 3px solid var(--clr-amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}


.legalPage--terms .legalPage_header--alt h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.legalPage_meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
.termsBlock {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--clr-border);
}
.termsBlock:last-child { border-bottom: none; }
.legalPage_body--terms h2 {
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  color: var(--clr-text);
}


.cookiesPage_hero {
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) var(--space-md) var(--space-lg);
  background: var(--clr-bg-dark);
  margin: 0 calc(-1 * var(--space-md));
  margin-bottom: var(--space-lg);
  position: relative;
}
.legalPage--cookies {
  padding-top: 0;
}
.legalPage--cookies .legalPage_inner { max-width: 860px; }
.cookiesPage_hero .isoBox { margin: 0 auto 1.5rem; }
.cookiesPage_hero h1 {
  color: var(--clr-text-light);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.cookiesPage_hero p {
  color: rgba(245,242,238,0.6);
  font-size: 0.9rem;
  margin: 0;
}
.cookieTable { margin: 2rem 0; }
.cookieTable_category {
  background: var(--clr-bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--clr-border);
}
.cookieTable_catHeader {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.cookieTable_catHeader h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--clr-text);
}
.cookieTable_badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  display: block;
  margin-top: 0.25rem;
}
.cookieTable_badge--required {
  background: rgba(90,107,58,0.12);
  color: var(--clr-olive);
}
.cookieTable_badge--optional {
  background: rgba(200,133,42,0.12);
  color: var(--clr-amber-dark);
}
.cookieTable_category p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.cookieTable_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.cookieTable_table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  background: rgba(26,22,18,0.05);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border);
}
.cookieTable_table td {
  padding: 0.6rem 0.75rem;
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border);
}
.cookieTable_table tr:last-child td { border-bottom: none; }

/* =====================================================
   FOOTER
   ===================================================== */
.pageFooter {
  background: var(--clr-bg-dark);
  color: var(--clr-text-light);
  margin-top: auto;
}
.pageFooter_statsBar {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--clr-border-dark);
  flex-wrap: wrap;
}
.pageFooter_stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(245,242,238,0.55);
  letter-spacing: 0.06em;
  border-right: 1px solid var(--clr-border-dark);
  transition: color 0.2s ease;
}
.pageFooter_stat:last-child { border-right: none; }
.pageFooter_stat:hover { color: var(--clr-amber-light); }
.pageFooter_stat i { color: var(--clr-amber); font-size: 0.9rem; }
.pageFooter_main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-md);
  max-width: var(--max-w);
  margin: 0 auto;
}
.pageFooter_logo {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1) opacity(0.8);
}
.pageFooter_tagline {
  font-size: 0.9rem;
  color: rgba(245,242,238,0.5);
  line-height: 1.7;
  margin: 0;
}
.pageFooter_nav h4,
.pageFooter_contact h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.4);
  margin-bottom: 1rem;
}
.pageFooter_links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pageFooter_links a {
  font-size: 0.9rem;
  color: rgba(245,242,238,0.65);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.pageFooter_links a:hover {
  color: var(--clr-amber-light);
  padding-left: 4px;
}
.pageFooter_contact address p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(245,242,238,0.6);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.pageFooter_contact i {
  color: var(--clr-amber);
  flex-shrink: 0;
  margin-top: 0.2rem;
  font-size: 0.85rem;
}
.pageFooter_contact a:hover { color: var(--clr-amber-light); }
.pageFooter_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem var(--space-md);
  border-top: 1px solid var(--clr-border-dark);
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.pageFooter_bottom p {
  font-size: 0.82rem;
  color: rgba(245,242,238,0.35);
  margin: 0;
}
.pageFooter_legal {
  display: flex;
  gap: 1.5rem;
}
.pageFooter_legal a {
  font-size: 0.82rem;
  color: rgba(245,242,238,0.35);
  transition: color 0.2s ease;
}
.pageFooter_legal a:hover { color: var(--clr-amber-light); }

/* =====================================================
   COOKIE CONSENT (bottom-right floating card)
   ===================================================== */
.cookieConsent {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 320px;
  background: var(--clr-bg-dark2);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  z-index: 9000;
  box-shadow: var(--shadow-xl);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}
.cookieConsent.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookieConsent_icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.cookieConsent_icon i {
  font-size: 2rem;
  color: var(--clr-amber);
}
.cookieConsent_title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text-light);
  text-align: center;
  margin-bottom: 0.5rem;
}
.cookieConsent_text {
  font-size: 0.85rem;
  color: rgba(245,242,238,0.6);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.cookieConsent_actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cookieConsent_btn {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  min-height: 44px;
  cursor: pointer;
}
.cookieConsent_btn--accept {
  background: var(--clr-amber);
  color: #fff;
}
.cookieConsent_btn--accept:hover {
  background: var(--clr-amber-dark);
}
.cookieConsent_btn--customize {
  background: rgba(255,255,255,0.06);
  color: rgba(245,242,238,0.8);
  border: 1px solid var(--clr-border-dark);
}
.cookieConsent_btn--customize:hover {
  background: rgba(255,255,255,0.1);
  color: var(--clr-text-light);
}
.cookieConsent_btn--reject {
  background: transparent;
  color: rgba(245,242,238,0.45);
  font-size: 0.8rem;
  padding: 0.4rem;
}
.cookieConsent_btn--reject:hover { color: rgba(245,242,238,0.7); }
.cookieConsent_toggles {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--clr-border-dark);
}
.cookieConsent_toggles.open { display: flex; }
.cookieToggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.cookieToggle_info { flex: 1; }
.cookieToggle_name {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-light);
}
.cookieToggle_desc {
  display: block;
  font-size: 0.75rem;
  color: rgba(245,242,238,0.45);
}
.cookieToggle_input {
  width: 36px;
  height: 20px;
  appearance: none;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15);
}
.cookieToggle_input:checked {
  background: var(--clr-amber);
  border-color: var(--clr-amber);
}
.cookieToggle_input::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.cookieToggle_input:checked::after { transform: translateX(16px); }
.cookieToggle_input:disabled { opacity: 0.5; cursor: not-allowed; }
.cookieConsent_btn--save {
  background: rgba(200,133,42,0.15);
  color: var(--clr-amber-light);
  border: 1px solid rgba(200,133,42,0.3);
  margin-top: 0.25rem;
}
.cookieConsent_btn--save:hover {
  background: rgba(200,133,42,0.25);
}
.cookieConsent_more {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(245,242,238,0.35);
  margin-top: 0.75rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.cookieConsent_more:hover { color: rgba(245,242,238,0.6); }

/* =====================================================
   RESPONSIVE - Tablet
   ===================================================== */
@media (max-width: 1024px) {
  .mainHero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-height) + 2rem);
    text-align: center;
  }
  .mainHero_eyebrow { justify-content:
center; }
  .mainHero_sub { margin: 0 auto 2.5rem; }
  .mainHero_actions { justify-content: center; }
  .mainHero_visual { max-width: 560px; margin: 0 auto; }
  .mainHero_img { height: 380px; }

  .servicesSection_grid { grid-template-columns: 1fr 1fr; }
  .aboutValues_grid { grid-template-columns: 1fr 1fr; }
  .toolsSection_grid { grid-template-columns: 1fr 1fr; }

  .aboutStory_inner,
  .aboutAtelier_inner,
  .materialsTeaser_inner,
  .personalSection_inner,
  .repairSection_inner,
  .hardwareSection_inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .leatherType_item {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .leatherType_item--alt { direction: ltr; }

  .contactSection_inner {
    grid-template-columns: 1fr;
  }
  .pageFooter_main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  .pageFooter_brand {
    grid-column: 1 / -1;
  }
}

/* =====================================================
   RESPONSIVE - Mobile
   ===================================================== */
@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4.5rem;
  }

  .siteNav {
    top: 0.75rem;
    width: calc(100% - 1.5rem);
  }
  .siteNav_links { display: none; }
  .siteNav_hamburger { display: flex; }

  .mainHero {
    padding: calc(var(--nav-height) + 1.5rem) 1.25rem var(--space-lg);
  }
  .mainHero_title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .mainHero_img { height: 280px; }

  .boldStatement { padding: var(--space-lg) 1.25rem; }
  .boldStatement_heading { font-size: clamp(2rem, 8vw, 3rem); }

  .servicesSection,
  .processSection,
  .materialsTeaser,
  .personalSection,
  .ctaSection,
  .aboutStory,
  .aboutValues,
  .aboutAtelier,
  .materialsIntro,
  .leatherTypes,
  .toolsSection,
  .hardwareSection,
  .tipsIntro,
  .tipsSection,
  .repairSection,
  .contactSection {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .servicesSection_grid { grid-template-columns: 1fr; }
  .aboutValues_grid { grid-template-columns: 1fr; }
  .toolsSection_grid { grid-template-columns: 1fr; }

  .processSection_imgRow {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .processSection_img { height: 200px; }

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

  .pageFooter_statsBar { flex-direction: column; align-items: stretch; }
  .pageFooter_stat { border-right: none; border-bottom: 1px solid var(--clr-border-dark); justify-content: center; }
  .pageFooter_stat:last-child { border-bottom: none; }
  .pageFooter_main {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: var(--space-md) 1.25rem;
  }
  .pageFooter_brand { grid-column: auto; }
  .pageFooter_bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  .pageFooter_legal { justify-content: center; }

  .cookieConsent {
    width: calc(100% - 2rem);
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .legalPage { padding-left: 1.25rem; padding-right: 1.25rem; }
  .legalPage_meta { flex-direction: column; gap: 0.25rem; }
  .cookiesPage_hero { padding-left: 1.25rem; padding-right: 1.25rem; }
  .cookieTable_table { font-size: 0.8rem; }
  .cookieTable_table th, .cookieTable_table td { padding: 0.5rem; }

  .thanksPage { padding-left: 1.25rem; padding-right: 1.25rem; }
  .innerHero { padding-left: 1.25rem; padding-right: 1.25rem; }

  .processStep { gap: 1rem; }
  .processStep_num { font-size: 2rem; width: 50px; }

  .tipArticle { padding: 1.5rem; }
  .tipArticle_header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  .hardwareSection_imgGrid { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .mainHero_actions { flex-direction: column; align-items: center; }
  .ctaSection_actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .btn.contactForm_submit { width: auto; }
  .contactForm_submit { width: 100%; }
}


@container serviceCard (max-width: 280px) {
  .serviceCard_isoIcon .isoBox { width: 44px; height: 44px; font-size: 1.1rem; }
  .serviceCard_title { font-size: 1.1rem; }
}

@container servicesContainer (max-width: 600px) {
  .servicesSection_grid { grid-template-columns: 1fr; }
}