/* ============================================
   ESGUARE LEATHER â€” Premium White Luxury Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream:       #FAF8F4;
  --cream-deep:  #F2EDE4;
  --cream-card:  #FFFFFF;
  --gold:        #B8922A;
  --gold-light:  #D4AF5A;
  --gold-pale:   #F5EDD5;
  --charcoal:    #1C1A17;
  --brown:       #3D2B1F;
  --text-main:   #1C1A17;
  --text-sub:    #6B5B4E;
  --text-muted:  #9E8F84;
  --border:      #E8DDD0;
  --border-gold: rgba(184,146,42,0.25);
  --nav-h:       80px;
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --transition:  all 0.45s var(--ease-luxury);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 4px 40px rgba(28,26,23,0.08);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-decoration: none;
  color: var(--charcoal);
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-luxury);
}

.logo:hover::after { transform: scaleX(1); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-sub);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-luxury);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/img-1.jpeg') center/cover no-repeat;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(250,248,244,0.82) 0%,
    rgba(242,237,228,0.65) 40%,
    rgba(28,26,23,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 2rem;
  animation: heroIn 1.2s var(--ease-luxury) both;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 0.5rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: italic;
  color: var(--brown);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-sub);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.8;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.8rem;
  background: var(--charcoal);
  color: #FAF8F4;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.45s var(--ease-luxury);
  z-index: 0;
}

.btn:hover::before { transform: translateX(0); }
.btn:hover { border-color: var(--gold); color: #FAF8F4; }
.btn span, .btn > * { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-outline::before { background: var(--charcoal); }
.btn-outline:hover { color: #FAF8F4; }

.btn-gold {
  background: var(--gold);
  color: #FAF8F4;
  border-color: var(--gold);
}

.btn-gold::before { background: var(--charcoal); }
.btn-gold:hover { border-color: var(--charcoal); }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 7rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--brown); }

.section-sub {
  font-size: 1rem;
  color: var(--text-sub);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ============================================
   DIVIDER
   ============================================ */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 4rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-icon {
  width: 30px; height: 30px;
  border: 1px solid var(--gold-light);
  transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.divider-icon::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(0deg);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: transparent;
}

.card {
  position: relative;
  background: var(--cream-card);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
}

.card:hover {
  z-index: 2;
  box-shadow: 0 20px 60px rgba(28,26,23,0.12);
  transform: translateY(-3px);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-luxury);
  filter: brightness(0.97);
}

.card:hover .card-img {
  transform: scale(1.07);
  filter: brightness(1);
}

.card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--charcoal);
  color: #FAF8F4;
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  z-index: 2;
}

.card-badge.gold {
  background: var(--gold);
}

/* Full-bleed overlay on hover */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,26,23,0.55) 0%,
    rgba(28,26,23,0.0) 50%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2.2rem;
  gap: 0.6rem;
}

.card:hover .card-overlay { opacity: 1; }

.card-quick {
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(8px);
  color: var(--charcoal);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.4s var(--ease-luxury);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  transition-delay: 0.05s;
}

.card:hover .card-quick {
  transform: translateY(0);
  opacity: 1;
}

/* Card name bar at bottom */
.card-content {
  padding: 1.2rem 1.4rem 1.4rem;
  background: var(--cream-card);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.card-meta {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
}

/* Gold accent line under card on hover */
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease-luxury);
}

.card:hover::after { width: 100%; }

/* ============================================
   TWO-COLUMN EDITORIAL
   ============================================ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 600px;
}

.editorial.reverse .editorial-img { order: 2; }
.editorial.reverse .editorial-text { order: 1; }

.editorial-img {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.editorial-img:hover img { transform: scale(1.04); }

.editorial-text {
  background: var(--cream-card);
  padding: 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-text .section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1.2rem;
}

.editorial-text p {
  color: var(--text-sub);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.editorial-text .btn { margin-top: 1.5rem; align-self: flex-start; }

/* ============================================
   STATS / PILLARS BAR
   ============================================ */
.pillars {
  background: var(--charcoal);
  padding: 5rem 5%;
}

.pillars-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pillar {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: background 0.3s ease;
}

.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(255,255,255,0.03); }

.pillar-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pillar-label {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.8rem;
}

.pillar-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   TESTIMONIAL STRIP
   ============================================ */
.testimonial-strip {
  background: var(--gold-pale);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 4rem 5%;
  text-align: center;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--brown);
  max-width: 760px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}

.testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border-gold);
}

.process-step {
  text-align: center;
  padding: 0 2rem 3rem;
  position: relative;
}

.process-num {
  width: 50px; height: 50px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  background: var(--cream);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .process-num {
  background: var(--gold);
  color: #FAF8F4;
  border-color: var(--gold);
  transform: scale(1.1);
}

.process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.process-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   QUALITY PAGE â€” MATERIAL SECTION
   ============================================ */
.material-card {
  background: var(--cream-card);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.material-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.5s var(--ease-luxury);
}

.material-card:hover::before { height: 100%; }
.material-card:hover { box-shadow: 0 20px 60px rgba(28,26,23,0.07); transform: translateY(-4px); }

.material-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.material-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.material-text {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.85;
  font-weight: 300;
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:first-child { border-top: 1px solid var(--border); }

.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 400;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group {
  position: relative;
  border: 1px solid var(--border);
  margin-bottom: -1px;
  transition: border-color 0.3s ease;
}

.form-group:focus-within {
  border-color: var(--gold);
  z-index: 1;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1rem 1.4rem 0.3rem;
  transition: color 0.3s;
}

.form-group:focus-within label { color: var(--gold); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.3rem 1.4rem 1rem;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  outline: none;
  resize: none;
}

.form-group textarea { min-height: 130px; }

.form-submit { margin-top: 1.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--charcoal);
  padding: 5rem 5% 2.5rem;
  color: rgba(255,255,255,0.5);
}

.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  color: #FAF8F4;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1.2rem;
  letter-spacing: 6px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 260px;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.8rem; }

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  transition: color 0.3s;
  font-weight: 300;
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

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

.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-gold-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 0;
  opacity: 0.4;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  height: 45vh;
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease-out;
}

.page-hero-bg.loaded { transform: scale(1); }

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250,248,244,0.3) 0%,
    rgba(250,248,244,0.85) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5%;
}

.page-hero-content .section-label { display: block; margin-bottom: 0.5rem; }

.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.1;
}

/* ============================================
   ABOUT PAGE â€” TIMELINE
   ============================================ */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.value-item {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.value-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease-luxury);
}

.value-item:hover::after { width: 60%; }

.value-item:hover {
  box-shadow: 0 15px 50px rgba(28,26,23,0.06);
  transform: translateY(-5px);
}

.value-icon {
  width: 36px; height: 36px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.value-desc {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-luxury), transform 0.7s var(--ease-luxury);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .editorial { grid-template-columns: 1fr; }
  .editorial.reverse .editorial-img { order: 0; }
  .editorial.reverse .editorial-text { order: 0; }
  .editorial-text { padding: 3.5rem 3rem; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .materials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.8rem; }
  .nav-links { display: none; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(1, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 4.5rem 0; }
  .editorial-text { padding: 3rem 5%; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ¦¦ Hero Split Layout ¦¦ */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1240px;
  margin: 0 auto;
}
.hero-split-text {
  flex: 1;
  min-width: 300px;
}
.hero-split-image {
  flex: 1;
  min-width: 300px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
.hero-split-img {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media(max-width: 900px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
  }
  .hero-split-text {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .hero-split-image {
    justify-content: center;
    margin-top: 2rem;
  }
}

/* ¦¦ Mobile Menu ¦¦ */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--charcoal);
  transition: all 0.3s ease;
}
@media(max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    background-color: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: right 0.4s ease;
    z-index: 1000;
  }
  .nav-links.nav-active {
    right: 0;
  }
  .nav-links li {
    margin: 1.5rem 0;
  }
  .nav-links a {
    font-size: 1.5rem;
  }
  /* Hamburger Animation */
  .toggle .line1 { transform: rotate(-45deg) translate(-5px, 5px); }
  .toggle .line2 { opacity: 0; }
  .toggle .line3 { transform: rotate(45deg) translate(-5px, -5px); }
}

/* ¦¦ WhatsApp Float ¦¦ */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0px 6px 15px rgba(0,0,0,0.2);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ¦¦ Arch Mask & Premium Details ¦¦ */
.hero-split-image {
  position: relative;
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: flex-end;
  padding: 2rem;
}
.hero-split-img {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 200px 200px 0 0; /* Arch shape! */
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  border: 1px solid rgba(139,94,52,0.2);
}
.premium-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  animation: spin 15s linear infinite;
  z-index: 5;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
.hero-p-premium {
  margin-left: 0;
  max-width: 500px;
  line-height: 1.8;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
