/* ============================================
   Jestic Gold — Luxury Italian Jewelry
   ============================================ */

:root {
  --color-bg: #141210;
  --color-bg-alt: #1c1a17;
  --color-bg-card: #1f1d1a;
  --color-surface: #252220;
  --color-gold: #c9a962;
  --color-gold-light: #e8d5a3;
  --color-gold-dark: #9a7b3c;
  --color-gold-muted: rgba(201, 169, 98, 0.15);
  --color-text: #e8dcc8;
  --color-text-muted: #a89e8c;
  --color-text-dim: #7a7268;
  --color-border: rgba(201, 169, 98, 0.2);
  --color-border-light: rgba(201, 169, 98, 0.08);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Inter', system-ui, sans-serif;

  --header-height: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-gold-light);
}

address {
  font-style: normal;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
}

.preloader__logo {
  width: 100px;
  margin: 0 auto 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.preloader__line {
  width: 60px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(20, 18, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(20, 18, 16, 0.95);
  border-bottom-color: var(--color-border-light);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gold-light);
  text-decoration: none;
}

.header__logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.header__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Navigation */
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-fast), left var(--transition-fast);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-gold-light);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 60%;
  left: 20%;
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switcher__btn {
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
  cursor: pointer;
  padding: 0.25rem 0.35rem;
  transition: color var(--transition-fast);
}

.lang-switcher__btn:hover,
.lang-switcher__btn.active {
  color: var(--color-gold);
}

.lang-switcher__sep {
  color: var(--color-text-dim);
  font-size: 0.7rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-gold);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
  color: var(--color-bg);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn--outline:hover {
  background: var(--color-gold-muted);
  color: var(--color-gold-light);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 169, 98, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(154, 123, 60, 0.04) 0%, transparent 50%),
    var(--color-bg);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero__ornament {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 5 L55 45 L95 50 L55 55 L50 95 L45 55 L5 50 L45 45 Z' fill='none' stroke='%23c9a962' stroke-width='0.5'/%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='%23c9a962' stroke-width='0.3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero__ornament--tl { top: 8%; left: 5%; }
.hero__ornament--br { bottom: 12%; right: 5%; transform: rotate(180deg); }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__logo {
  width: min(280px, 60vw);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 8px 30px rgba(201, 169, 98, 0.15));
}

.hero__est {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-dim);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.hero__scroll svg {
  opacity: 0.5;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section__label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--color-gold-light);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.section__divider {
  width: 60px;
  height: 1px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section__desc {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Heritage */
.heritage {
  background: var(--color-bg-alt);
}

.heritage__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.heritage__text p {
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
  font-size: 1.15rem;
}

.heritage__text p:last-child {
  margin-bottom: 0;
}

.heritage__image {
  position: relative;
  overflow: hidden;
}

.heritage__image::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--color-border);
  z-index: 1;
  pointer-events: none;
}

.heritage__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-border), var(--color-gold));
}

.timeline__item {
  position: relative;
  padding: 0 0 3rem 2.5rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 2px solid var(--color-gold);
  transform: translateX(-4px);
  transition: background var(--transition-fast);
}

.timeline__item:hover::before {
  background: var(--color-gold);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.timeline__content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-gold-light);
  margin-bottom: 0.5rem;
}

.timeline__content p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Collections */
.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.collection-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.collection-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.collection-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.9);
}

.collection-card:hover .collection-card__image img {
  transform: scale(1.05);
}

.collection-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 18, 16, 0.8) 100%);
  pointer-events: none;
}

.collection-card__body {
  padding: 1.75rem;
}

.collection-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
}

.collection-card__body p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Products */
.products {
  background: var(--color-bg-alt);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  border-color: var(--color-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2a2520, #1a1815);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.88);
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__collection {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.product-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-gold-light);
  margin-bottom: 0.6rem;
}

.product-card__body p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-card__material {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--color-text-dim);
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border-light);
  width: 100%;
}

/* Craftsmanship */
.craftsmanship {
  position: relative;
  overflow: hidden;
}

.craftsmanship__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.04) 0%, transparent 50%),
    var(--color-bg);
  z-index: 0;
}

.craftsmanship .container {
  position: relative;
  z-index: 1;
}

.craftsmanship__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.craft-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border-light);
  background: rgba(31, 29, 26, 0.5);
  transition: border-color var(--transition), background var(--transition);
}

.craft-item:hover {
  border-color: var(--color-border);
  background: rgba(31, 29, 26, 0.8);
}

.craft-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--color-gold);
}

.craft-item__icon svg {
  width: 100%;
  height: 100%;
}

.craft-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
}

.craft-item p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Bespoke */
.bespoke {
  background: var(--color-bg-alt);
}

.bespoke__process {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 1.5rem 1rem;
}

.process-step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-gold);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-gold-light);
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.process-step__connector {
  width: 40px;
  height: 1px;
  background: var(--color-border);
  margin-top: 3rem;
  flex-shrink: 0;
}

.bespoke__cta {
  text-align: center;
}

/* Maison / Team */
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.team-card {
  display: flex;
  gap: 1.75rem;
  padding: 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  transition: border-color var(--transition);
}

.team-card:hover {
  border-color: var(--color-border);
}

.team-card__portrait {
  flex-shrink: 0;
  width: 100px;
  height: 120px;
  background: linear-gradient(135deg, #3a3428, #2a2520);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.team-card__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.team-card__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 18, 16, 0.6));
}

.team-card__portrait--1 { background: linear-gradient(160deg, #4a3f30, #2a2520); }
.team-card__portrait--2 { background: linear-gradient(160deg, #3d3530, #252018); }
.team-card__portrait--3 { background: linear-gradient(160deg, #453a2a, #1f1c18); }
.team-card__portrait--4 { background: linear-gradient(160deg, #3a3330, #221f1a); }

.team-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-gold-light);
  margin-bottom: 0.25rem;
}

.team-card__role {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.team-card__body p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Contact */
.contact {
  background: var(--color-bg-alt);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contact__block {
  margin-bottom: 2rem;
}

.contact__block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
}

.contact__block address,
.contact__block p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact__email {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* Form */
.contact__form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  transition: border-color var(--transition-fast);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-dim);
}

.form-note {
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--color-text-dim);
  font-style: italic;
}

.contact__map {
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  filter: grayscale(30%) brightness(0.85) contrast(1.1);
}

.contact__map iframe {
  display: block;
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--color-border-light);
  background: var(--color-bg);
}

.footer__inner {
  text-align: center;
}

.footer__brand img {
  width: 64px;
  margin: 0 auto 1rem;
  opacity: 0.9;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer__nav a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.footer__nav a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-light);
}

.footer__bottom p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--color-text-dim);
  margin-bottom: 0.35rem;
}

.footer__address {
  font-size: 0.7rem !important;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
  .collections__grid,
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .craftsmanship__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heritage__intro {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 18, 16, 0.98);
    backdrop-filter: blur(12px);
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__link {
    padding: 1rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--color-border-light);
  }

  .nav__link::after {
    display: none;
  }

  .header__brand {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .heritage__intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .heritage__image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .timeline__item {
    padding-left: 2rem;
  }

  .collections__grid,
  .products__grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .craftsmanship__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .bespoke__process {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    max-width: 100%;
  }

  .process-step__connector {
    width: 1px;
    height: 30px;
    margin: 0;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero__logo {
    width: 200px;
  }

  .contact__form {
    padding: 1.5rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .preloader__logo,
  .hero__scroll {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}
