/* ============================================================
   MARTENS INVESTMENTS LIMITED — High-end Aesthetic & Craftsmanship
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #3a3a3a;
  background: #faf7f2;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --emerald-900: #1a2f2a;
  --emerald-800: #223d36;
  --emerald-700: #2c4d44;
  --brown-900: #2c1810;
  --brown-800: #3d2418;
  --ivory: #f5f0e8;
  --cream: #faf7f2;
  --gold: #c9a96e;
  --gold-light: #dcc49a;
  --gold-dark: #a88a4f;
  --text-dark: #2a2a2a;
  --text-body: #5a5a5a;
  --text-muted: #8a8a8a;
  --border: #e5ddd0;
  --max-w: 1280px;
  --section-py: 120px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: var(--section-py) 0; }

.section-eyebrow {
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 24px;
}
.section-title.light { color: #f5f0e8; }

.section-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.7;
}
.section-subtitle.light { color: rgba(245,240,232,0.65); }

.section-header { margin-bottom: 80px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--gold);
  color: var(--brown-900);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,169,110,0.3);
}
.btn-outline {
  background: transparent;
  color: #f5f0e8;
  border: 1px solid rgba(245,240,232,0.4);
}
.btn-outline:hover {
  background: rgba(245,240,232,0.08);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(26,47,42,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo-mark {
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  font-style: italic;
  transition: all 0.3s;
}
.navbar.scrolled .nav-logo-mark {
  background: var(--gold);
  color: var(--brown-900);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  color: #f5f0e8;
  letter-spacing: 0.05em;
}
.nav-logo-sub {
  font-size: 9px;
  font-weight: 400;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  color: rgba(245,240,232,0.75);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--brown-900);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 26px; height: 1.5px;
  background: #f5f0e8;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--emerald-900);
  z-index: 999;
  padding: 120px 40px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.mobile-link {
  color: #f5f0e8;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245,240,232,0.08);
  width: 100%;
  max-width: 320px;
}
.mobile-cta {
  margin-top: 32px;
  padding: 16px 40px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #f5f0e8;
  background: var(--emerald-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,47,42,0.88) 0%,
    rgba(44,24,16,0.75) 60%,
    rgba(26,47,42,0.85) 100%
  );
}
.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}
.hero-content { max-width: 760px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-line {
  width: 50px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 400;
  color: #f5f0e8;
  margin-bottom: 32px;
  line-height: 1.1;
}
.hero-title em {
  color: var(--gold-light);
  font-weight: 400;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
  color: rgba(245,240,232,0.7);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.5s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========== ABOUT ========== */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--emerald-900);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 24px 60px rgba(26,47,42,0.2);
}
.about-badge-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.about-badge-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(245,240,232,0.7);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.about-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 22px;
}
.about-signature {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.signature-line {
  width: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.signature-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 10px;
}
.signature-author {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
}

/* ========== COLLECTION ========== */
.collection { background: var(--ivory); }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.collection-item {
  background: var(--cream);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.collection-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(26,47,42,0.12);
}
.collection-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.collection-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.collection-item:hover .collection-img img { transform: scale(1.06); }
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,47,42,0.4), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.collection-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  opacity: 0.9;
}
.collection-body { padding: 32px 28px; }
.collection-body h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
}
.collection-body p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 18px;
}
.collection-tag {
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  width: 100%;
}

/* ========== CRAFTSMANSHIP ========== */
.craftsmanship {
  background: var(--emerald-900);
  color: #f5f0e8;
  position: relative;
  overflow: hidden;
}
.craftsmanship-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,169,110,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(44,24,16,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.craftsmanship .container { position: relative; z-index: 1; }
.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.craft-card {
  padding: 48px 32px;
  border-right: 1px solid rgba(245,240,232,0.08);
  transition: all 0.4s;
}
.craft-card:last-child { border-right: none; }
.craft-card:hover {
  background: rgba(245,240,232,0.03);
}
.craft-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 24px;
}
.craft-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: #f5f0e8;
  margin-bottom: 14px;
}
.craft-card p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,240,232,0.6);
  line-height: 1.75;
}

/* ========== GLOBAL ========== */
.global { background: var(--cream); }
.global-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.global-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 48px;
}
.global-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.global-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 8px;
  line-height: 1;
}
.global-stat-num span { font-size: 24px; }
.global-stat-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.global-regions {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.region-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.region-block:first-child { padding-top: 0; }
.region-block:last-child { border-bottom: none; }
.region-block h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.region-block p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.6;
}

/* ========== CONTACT ========== */
.contact { background: var(--ivory); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 18px;
  background: var(--cream);
  padding: 24px 26px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.contact-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201,169,110,0.1);
}
.contact-item-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}
.contact-item h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}
.contact-item p, .contact-item a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--gold-dark); }
.contact-map {
  border: 1px solid var(--border);
  overflow: hidden;
}
.contact-map iframe {
  width: 100%; height: 260px;
  border: 0; display: block;
  filter: grayscale(0.2);
}
.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--emerald-900);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.map-link:hover { background: var(--emerald-800); color: var(--gold); }

.contact-form-wrap {
  background: var(--cream);
  padding: 48px;
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-form-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(201,169,110,0.1);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  margin-bottom: 20px;
}
.form-success.active { display: flex; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text-dark);
  background: var(--cream);
  transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--emerald-900);
  color: #f5f0e8;
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.footer-logo-mark {
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  font-style: italic;
}
.footer-logo-text { display: flex; flex-direction: column; }
.footer-logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  color: #f5f0e8;
  letter-spacing: 0.05em;
}
.footer-logo-sub {
  font-size: 9px;
  font-weight: 400;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-desc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  line-height: 1.8;
  max-width: 320px;
}
.footer-col h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  color: #f5f0e8;
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  transition: all 0.3s;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,240,232,0.55);
  line-height: 1.6;
}
.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}
.footer-contact-item a { color: rgba(245,240,232,0.55); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(245,240,232,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,232,0.35);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a:hover { color: rgba(245,240,232,0.65); }

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .collection-item:hover, .craft-card:hover, .btn:hover { transform: none !important; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .craft-card { border-right: none; border-bottom: 1px solid rgba(245,240,232,0.08); }
  .craft-card:nth-child(odd) { border-right: 1px solid rgba(245,240,232,0.08); }
  .craft-card:nth-child(n+3) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual img { height: 460px; }
  .global-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 768px) {
  :root { --section-py: 80px; }
  .container { padding: 0 24px; }
  .nav-container { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-container { padding: 100px 24px 60px; }
  .hero-eyebrow { gap: 12px; }
  .hero-line { width: 30px; }
  .hero-actions { gap: 14px; }
  .hero-scroll { display: none; }

  .collection-grid { grid-template-columns: 1fr; }
  .craft-grid { grid-template-columns: 1fr; }
  .craft-card { border-right: none !important; }
  .craft-card { border-bottom: 1px solid rgba(245,240,232,0.08) !important; }
  .craft-card:last-child { border-bottom: none !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .global-stats { grid-template-columns: 1fr; gap: 28px; }
  .about-badge { left: 16px; padding: 24px 28px; }
  .about-badge-num { font-size: 40px; }
  .section-header { margin-bottom: 56px; }
  .collection-img { height: 240px; }
}
