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

:root {
  --black: #0d0d0d;
  --white: #f4f4f0;
  --accent: #FF6200;
  --gray: #6b6b6b;
  --light: #f9f9f7;
  --border: #e0e0dc;
  --font-brand: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; object-fit: cover; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  background: rgba(244, 244, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.logo {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--black);
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--black); }
.nav-cta {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 5% 60px;
  gap: 60px;
}
.hero-tag {
  display: inline-block;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1.5px solid var(--accent);
  border-radius: 100px;
}
.hero-title {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.shoe-showcase {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  background: var(--accent);
  border-radius: 48px;
  padding: 64px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.hero-logo-mark:hover {
  transform: rotate(15deg) scale(1.04);
  box-shadow: 0 32px 64px rgba(255, 98, 0, 0.35);
}
.plus-icon {
  width: 100%;
  height: 100%;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--black);
  padding: 16px 0;
}
.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}
.marquee span {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  opacity: 0.7;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION COMMON ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-title {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--gray);
  font-size: 1rem;
}

/* ── PRODUCTS ── */
.products {
  padding: 100px 0;
  background: var(--light);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #eceae5;
}
.product-img-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-add {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-add:hover { background: var(--accent); color: var(--white); }
.product-info { padding: 20px; }
.product-cat {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.product-name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 6px 0 12px;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 1rem;
}
.product-colors {
  display: flex;
  gap: 6px;
}
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.1);
}

/* ── ABOUT ── */
.about {
  padding: 120px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.about-img-wrap img {
  border-radius: 24px;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-stat-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent);
  color: var(--white);
  padding: 24px 28px;
  border-radius: 16px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}
.about-text .section-title { text-align: left; }
.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin: 16px 0;
}
.about-stats {
  display: flex;
  gap: 36px;
  margin: 36px 0;
}
.about-stats .stat {
  display: flex;
  flex-direction: column;
}
.about-stats .stat-num {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--black);
}
.about-stats .stat-label {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── FEATURES ── */
.features {
  padding: 80px 0;
  background: var(--black);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.feature {
  text-align: center;
  color: var(--white);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  opacity: 0.6;
}
.feature h4 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}
.feature p {
  font-size: 0.9rem;
  color: rgba(244,244,240,0.55);
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  background: var(--light);
}
.contact-inner {
  max-width: 720px;
  text-align: center;
}
.contact-inner .section-title { margin-bottom: 12px; }
.contact-inner .section-sub { margin-bottom: 48px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color var(--transition);
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--black);
}
.contact-form .btn { align-self: center; margin-top: 8px; }

/* ── FOOTER ── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244,244,240,0.1);
}
.footer-brand .logo {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  color: rgba(244,244,240,0.45);
  font-size: 0.9rem;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h5 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,244,240,0.4);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.92rem;
  color: rgba(244,244,240,0.7);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  padding: 24px;
  color: rgba(244,244,240,0.3);
  font-size: 0.8rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 32px 5%;
    gap: 24px;
    border-bottom: 1px solid var(--border);
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 5% 60px;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .about-inner { grid-template-columns: 1fr; }
  .about-stat-card { bottom: -12px; right: 12px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .product-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner { text-align: center; }
.preloader-logo {
  display: block;
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 0.25em;
  color: var(--white);
  margin-bottom: 40px;
}
.preloader-logo em {
  color: var(--accent);
  font-style: normal;
}
.preloader-track {
  width: 180px;
  height: 2px;
  background: rgba(244,244,240,0.12);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.08s linear;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.cursor-dot.expanded { width: 14px; height: 14px; }
.cursor-ring.expanded { width: 56px; height: 56px; opacity: 0.2; }
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── HERO ENHANCEMENTS ── */
.hero { position: relative; overflow-x: hidden; }

.hero-bg-word {
  position: absolute;
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: clamp(8rem, 18vw, 18rem);
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.05);
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  z-index: 0;
}
.hero-content, .hero-visual { position: relative; z-index: 1; }

.shoe-showcase { position: relative; overflow: visible; }

.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-float strong {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--black);
  line-height: 1;
}
.hero-float span {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero-float-1 {
  bottom: 6%;
  left: -12%;
  animation: floatUp 5s ease-in-out infinite;
}
.hero-float-2 {
  top: 6%;
  right: -12%;
  animation: floatDown 5s ease-in-out infinite 1.5s;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes floatDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(12px); }
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  z-index: 2;
}
.scroll-indicator span {
  font-family: var(--font-brand);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.reveal-left { transform: translateX(-36px); }
.reveal.reveal-right { transform: translateX(36px); }
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.reveal-delay-1 { transition-delay: 0.13s; }
.reveal-delay-2 { transition-delay: 0.26s; }
.reveal-delay-3 { transition-delay: 0.39s; }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 0;
  background: var(--light);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.07);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-text {
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.93rem;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--black);
  margin-bottom: 3px;
}
.testimonial-author span {
  font-size: 0.72rem;
  color: var(--accent);
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-float { display: none; }
  .hero-bg-word { display: none; }
  .scroll-indicator { display: none; }
}

/* ── LOCATION ── */
.location {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* 3D rotating "+" brand mark */
.loc-plus-3d {
  position: absolute;
  right: 6%;
  top: 12%;
  width: 140px;
  height: 140px;
  perspective: 500px;
  pointer-events: none;
  z-index: 0;
}
.lp-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: spinPlus 14s linear infinite;
}
.lp-bar-h, .lp-bar-v {
  position: absolute;
  border-radius: 10px;
  background: rgba(255,98,0,0.12);
  border: 1.5px solid rgba(255,98,0,0.35);
}
.lp-bar-h {
  width: 100%; height: 32%;
  top: 34%; left: 0;
}
.lp-bar-v {
  width: 32%; height: 100%;
  left: 34%; top: 0;
}
.lp-back {
  transform: translateZ(-50px);
  opacity: 0.5;
}
.lp-bar-h:not(.lp-back), .lp-bar-v:not(.lp-back) {
  transform: translateZ(50px);
}
@keyframes spinPlus {
  0%   { transform: rotateX(0deg)   rotateY(0deg)   rotateZ(0deg); }
  33%  { transform: rotateX(120deg) rotateY(80deg)  rotateZ(40deg); }
  66%  { transform: rotateX(240deg) rotateY(200deg) rotateZ(120deg); }
  100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

/* Glowing orbs */
.loc-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.18;
  animation: orbFloat 8s ease-in-out infinite;
}
.loc-orb-1 {
  width: 400px; height: 400px;
  background: var(--accent);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.loc-orb-2 {
  width: 300px; height: 300px;
  background: #4466ff;
  bottom: -80px; right: 30%;
  animation-delay: -4s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.08); }
}

.location-head {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.location-head .section-title { color: var(--white); }
.location-head .hero-tag { margin-bottom: 16px; display: inline-block; }

.location-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Info cards */
.loc-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.loc-card {
  background: rgba(244,244,240,0.05);
  border: 1px solid rgba(244,244,240,0.1);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  cursor: default;
  transition: background var(--transition), border-color var(--transition), transform 0.15s ease, box-shadow 0.15s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.loc-card:hover {
  background: rgba(244,244,240,0.08);
  border-color: rgba(255,98,0,0.3);
}
.loc-card-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,98,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.loc-card h4 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,244,240,0.5);
  margin-bottom: 6px;
}
.loc-card p {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.55;
}

.loc-directions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  margin-top: 4px;
}
.loc-directions:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,98,0,0.4);
}
.loc-dir-ico { font-size: 1.1rem; }

/* Map */
.loc-map-wrap { height: 520px; }
.loc-map-frame {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.loc-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

/* Pulsing pin overlay */
.loc-pin-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pin-pulse {
  position: relative;
  width: 20px;
  height: 20px;
  margin-bottom: 60px;
}
.pin-dot {
  position: absolute;
  inset: 4px;
  background: var(--accent);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(255,98,0,0.4);
}
.pin-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,98,0,0.6);
  animation: pinPulse 2.4s ease-out infinite;
}
.pin-ring-2 { animation-delay: 0.8s; }
.pin-ring-3 { animation-delay: 1.6s; }
@keyframes pinPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* Responsive */
@media (max-width: 1024px) {
  .location-inner { grid-template-columns: 1fr; }
  .loc-map-wrap { height: 380px; }
  .loc-plus-3d { display: none; }
}

/* ── IMG REVEAL (wipe-up + scale) ── */
.img-reveal { overflow: hidden; }
.img-reveal .img-inner {
  height: 100%;
  transform: translateY(100%);
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
  transition-delay: var(--rd, 0s);
}
.img-reveal .img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.14) translateY(-4%);
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--rd, 0s);
}
.img-reveal.visible .img-inner { transform: translateY(0); }
.img-reveal.visible .img-inner img { transform: scale(1) translateY(0); }

/* ── EDITORIAL ── */
.editorial {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 92vh;
}
.editorial-img {
  height: 92vh;
  overflow: hidden;
}
.editorial-content {
  display: flex;
  align-items: center;
  padding: 80px 64px;
  background: var(--black);
}
.editorial-heading {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: clamp(3.5rem, 5.5vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 20px 0 28px;
}
.editorial-heading em { color: var(--accent); font-style: normal; }
.editorial-text-inner p {
  color: rgba(244,244,240,0.5);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 320px;
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid rgba(244,244,240,0.35);
  color: var(--white);
  background: transparent;
  transition: var(--transition);
}
.btn-ghost-light:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ── MOSAIC ── */
.mosaic { overflow: hidden; }
.mosaic-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-template-rows: 330px 330px;
  gap: 4px;
}
.mosaic-item { position: relative; overflow: hidden; }
.mosaic-item .img-inner { height: 100%; }
.mosaic-a { grid-column: 1; grid-row: 1 / 3; }
.mosaic-b { grid-column: 2; grid-row: 1; }
.mosaic-c { grid-column: 3; grid-row: 1; }
.mosaic-d { grid-column: 2 / 4; grid-row: 2; }

.mosaic-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(244,244,240,0.95);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 100px;
}
.mosaic-label span {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

/* ── PROCESS ── */
.process {
  padding: 120px 0;
  background: var(--light);
}
.process-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 80px;
}
.process-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.process-item-flip .process-img { order: 2; }
.process-item-flip .process-content { order: 1; }

.process-img {
  aspect-ratio: 5 / 4;
  border-radius: 24px;
  overflow: hidden;
}
.process-img .img-inner { height: 100%; }

.process-num {
  display: block;
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.12;
  margin-bottom: -16px;
  letter-spacing: -0.04em;
}
.process-content h3 {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--black);
}
.process-content p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.97rem;
}

/* ── IMAGE STRIP ── */
.img-strip {
  background: var(--black);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}
.img-strip::-webkit-scrollbar { display: none; }
.img-strip-track {
  display: flex;
  gap: 4px;
  width: max-content;
  padding: 0;
}
.strip-item {
  width: 380px;
  height: 260px;
  flex-shrink: 0;
  overflow: hidden;
}
.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.strip-item:hover img { transform: scale(1.05); }

/* ── CRAFTSMAN 3D ── */
.craftsman-section {
  background: #0a0a0a;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}
.craftsman-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  gap: 60px;
}
.craftsman-title {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 16px 0 20px;
}
.craftsman-title em { color: var(--accent); font-style: normal; }
.craftsman-text p {
  color: rgba(244,244,240,0.45);
  line-height: 1.8;
  font-size: 0.97rem;
  max-width: 380px;
  margin-bottom: 36px;
}
.craftsman-stats {
  display: flex;
  gap: 40px;
}
.craftsman-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.craftsman-stats strong {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.craftsman-stats span {
  font-family: var(--font-brand);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,244,240,0.35);
}
.craftsman-canvas-wrap {
  position: relative;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
}
#craftsmanCanvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.craftsman-glow {
  position: absolute;
  bottom: -20px;
  left: 15%;
  right: 15%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(255,98,0,0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 1024px) {
  .editorial { grid-template-columns: 1fr; min-height: auto; }
  .editorial-img { height: 60vw; }
  .editorial-content { padding: 60px 5%; }
  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
  }
  .mosaic-a { grid-column: 1; grid-row: 1 / 3; }
  .mosaic-b { grid-column: 2; grid-row: 1; }
  .mosaic-c { grid-column: 2; grid-row: 2; }
  .mosaic-d { grid-column: 1 / 3; grid-row: 3; }
  .process-item { grid-template-columns: 1fr; gap: 40px; }
  .process-item-flip .process-img { order: unset; }
  .process-item-flip .process-content { order: unset; }
  .strip-item { width: 280px; height: 200px; }
}
@media (max-width: 768px) {
  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 200px;
  }
  .editorial-img { height: 75vw; }
  .strip-item { width: 220px; height: 160px; }
  .craftsman-inner { grid-template-columns: 1fr; }
  .craftsman-canvas-wrap { height: 360px; }
}
