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

:root {
  --bg:         #09090f;
  --bg-alt:     #0d0e16;
  --card:       rgba(255,255,255,0.035);
  --accent:     #c9a96e;
  --accent-dim: rgba(201,169,110,0.1);
  --text:       #e8e4db;
  --muted:      #6a6a75;
  --border:     rgba(201,169,110,0.14);
  --border-sub: rgba(255,255,255,0.06);
  --nav-h:      68px;
  --ease:       cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Ambient glow ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(201,169,110,0.055) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 300; }
h3 { font-size: 1.25rem; font-weight: 400; }
p  { color: var(--muted); }

.eyebrow {
  display: block;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

/* ── Layout ── */
.wrap {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

section { position: relative; z-index: 1; }

.divider {
  width: 36px; height: 1px;
  background: var(--accent);
  margin: 1rem 0 1.5rem;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center;
  z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(9,9,15,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border-sub);
}

.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo-mark {
  height: 40px;
  width: auto;
  max-width: 200px;
  flex-shrink: 0;
  transition: opacity 0.25s;
}
.nav__logo:hover .nav__logo-mark { opacity: 0.8; }

.nav__links {
  display: flex; gap: 2rem; align-items: center;
}

.nav__link {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}
.nav__link:hover { color: var(--text); }

.nav__contact {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: background 0.25s, border-color 0.25s;
}
.nav__contact:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* Hamburger */
.nav__ham {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.nav__ham span {
  display: block; width: 22px; height: 1.5px; background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav__ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__ham.open span:nth-child(2) { opacity: 0; }
.nav__ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__drawer {
  display: none; position: fixed; inset: 0;
  background: rgba(9,9,15,0.97); backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.75rem; z-index: 99;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.nav__drawer.open { display: flex; opacity: 1; pointer-events: all; }
.nav__drawer .nav__link { font-size: 1rem; color: var(--muted); }
.nav__drawer .nav__link:hover { color: var(--text); }

/* ── HERO ── */
.hero {
  min-height: 100dvh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 70%);
}

.hero__content { position: relative; z-index: 1; max-width: 700px; }

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--accent); }

.hero__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 2.25rem;
  line-height: 1.9;
}

.hero__actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.8rem 1.75rem; border-radius: 4px;
  transition: all 0.25s var(--ease);
}
.btn--primary {
  background: var(--accent); color: #09090f;
  border: 1px solid var(--accent);
}
.btn--primary:hover {
  background: #dbb97e; border-color: #dbb97e;
  box-shadow: 0 0 28px rgba(201,169,110,0.25);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-sub);
}
.btn--outline:hover {
  border-color: var(--border);
  color: var(--accent);
  transform: translateY(-1px);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  opacity: 0.4; transition: opacity 0.25s; z-index: 1;
}
.hero__scroll:hover { opacity: 0.8; }
.hero__scroll span {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ── PRODUCTS ── */
.products { padding: 100px 0; }

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border-sub);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 3rem;
}

.product-item {
  background: var(--card);
  padding: 2rem 1.75rem;
  transition: background 0.25s;
  backdrop-filter: blur(6px);
}
.product-item:hover { background: rgba(255,255,255,0.055); }

.product-item__icon {
  width: 32px; height: 32px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.product-item__icon svg { width: 100%; height: 100%; }

.product-item h3 {
  font-size: 1.05rem; margin-bottom: 0.5rem;
}

.product-item ul {
  display: flex; flex-direction: column; gap: 0.3rem; margin-top: 0.75rem;
}

.product-item li {
  font-size: 0.8rem; color: var(--muted);
  padding-left: 0.9rem; position: relative;
}
.product-item li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--accent);
}

/* ── ABOUT ── */
.about { padding: 100px 0; background: var(--bg-alt); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__text h2 { margin-bottom: 0.5rem; }
.about__text p  { font-size: 0.92rem; margin-bottom: 0.9rem; }

.about__facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  border: 1px solid var(--border-sub); border-radius: 10px; overflow: hidden;
}

.fact {
  background: var(--card); padding: 1.5rem;
}

.fact__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300;
  color: var(--text); line-height: 1;
  margin-bottom: 0.25rem;
}
.fact__num span { color: var(--accent); }
.fact__label {
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}

/* ── CONTACT ── */
.contact { padding: 100px 0; }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact__info h2 { margin-bottom: 0.5rem; }
.contact__info > p { font-size: 0.9rem; margin-bottom: 2rem; }

.contact__detail {
  display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.25rem;
}
.contact__detail-icon {
  width: 36px; height: 36px;
  background: var(--accent-dim); border: 1px solid var(--border);
  border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.contact__detail-icon svg { width: 16px; height: 16px; }
.contact__detail-label {
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 0.15rem;
}
.contact__detail-value { font-size: 0.9rem; color: var(--text); }

/* Form */
.contact__form {
  background: var(--card);
  border: 1px solid var(--border-sub);
  border-radius: 14px;
  padding: 2.25rem;
  backdrop-filter: blur(8px);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.45rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-sub);
  border-radius: 5px;
  padding: 0.72rem 0.9rem;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(201,169,110,0.35);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.07);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.6; }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.74rem; color: var(--muted); margin-top: 0.9rem; opacity: 0.7;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-sub);
  padding: 2rem 0;
  position: relative; z-index: 1;
}
.footer .wrap {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer__copy { font-size: 0.78rem; color: var(--muted); }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a {
  font-size: 0.75rem; color: var(--muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--accent); }

/* ── Reveal animation ── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .products__grid  { grid-template-columns: repeat(2, 1fr); }
  .about__inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__inner  { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 680px) {
  .nav__links, .nav__contact { display: none; }
  .nav__ham { display: flex; }

  .products__grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .footer .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .products__grid { grid-template-columns: 1fr; }
  .about__facts   { grid-template-columns: 1fr; }
  .contact__form  { padding: 1.5rem; }
}
