/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1a1a2e;
  background: #faf9f6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── PALETTE ── */
:root {
  --navy:    #0f1c3f;
  --navy-lt: #1a2d56;
  --gold:    #c9a84c;
  --gold-lt: #dfc06e;
  --cream:   #faf9f6;
  --warm:    #f3f0e9;
  --text:    #1a1a2e;
  --muted:   #5a5a72;
  --white:   #ffffff;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(15,28,63,.08);
  --shadow-lg: 0 8px 48px rgba(15,28,63,.12);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; font-family: 'Inter', sans-serif; font-weight: 600; }
p  { color: var(--muted); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }

/* ── SECTION TAG ── */
.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

/* ── SECTION TITLE ── */
.section-title { margin-bottom: 1.25rem; }
.section-sub   { font-size: 1.05rem; max-width: 560px; color: var(--muted); }
.lead          { font-size: 1.1rem; color: var(--text); line-height: 1.75; margin-bottom: 1rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-lt);
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,28,63,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.15);
  transition: background .3s;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
}
.nav-logo { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: .5rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle-bar {
  width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  padding-top: 64px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding: .35rem .75rem;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 100px;
}
.hero-headline {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.12;
}
.hero-headline .gold { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,.62);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat { display: flex; flex-direction: column; gap: .2rem; }
.stat-num { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 1rem; color: var(--gold); }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.45); letter-spacing: .04em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

.hero-right { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: 12px;
  z-index: -1;
  opacity: .25;
}

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -2rem; right: -1rem;
  width: 55%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

/* ── PRODUCTS ── */
.products { background: var(--white); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-img { overflow: hidden; }
.product-img img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-body { padding: 1.5rem; }
.product-body h3 { margin-bottom: .5rem; color: var(--navy); }
.product-body p  { font-size: .925rem; line-height: 1.65; }

/* ── CRAFT ── */
.craft { background: var(--navy); color: var(--white); }
.craft .section-title { color: var(--white); }
.craft .section-sub   { color: rgba(255,255,255,.55); }
.craft-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.craft-content .lead { color: rgba(255,255,255,.72); }
.craft-steps { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.craft-step { display: flex; gap: 1.25rem; }
.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}
.craft-step h4 { color: var(--white); margin-bottom: .3rem; }
.craft-step p  { font-size: .9rem; color: rgba(255,255,255,.52); line-height: 1.6; }
.craft-visual { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.craft-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ── VISIT ── */
.visit { background: var(--warm); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.visit-details { display: flex; flex-direction: column; gap: 2rem; margin: 2rem 0; }
.visit-item { display: flex; gap: 1rem; align-items: flex-start; }
.visit-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.visit-item strong { display: block; color: var(--navy); font-size: .9rem; margin-bottom: .2rem; }
.visit-item p, .visit-item a { font-size: .925rem; color: var(--muted); line-height: 1.6; }
.visit-item a:hover { color: var(--gold); text-decoration: underline; }
.visit-map { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.visit-map img { width: 100%; height: 100%; object-fit: cover; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 4rem 0 0; color: rgba(255,255,255,.55); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-logo span { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 1.05rem; color: var(--white); }
.footer p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.45); }
.footer-links { display: flex; flex-direction: column; gap: .6rem; align-items: flex-end; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(15,28,63,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    transform: translateY(-120%);
    transition: transform .35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero-inner,
  .about-grid,
  .craft-inner,
  .visit-grid,
  .footer-inner { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .hero-img-wrap { max-height: 420px; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .about-img-float { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; }
  .section { padding: 4rem 0; }
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
