/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0d0d0d;
  --dark:    #1a1a1a;
  --dark2:   #242424;
  --mid:     #3a3a3a;
  --grey:    #8a8a8a;
  --light:   #d4d0c8;
  --white:   #f5f3ef;
  --accent:  #c8b89a;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--white);
  background: var(--white);
  color: #1a1a1a;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.header--scrolled {
  background: rgba(13,13,13,0.97);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 4vw;
  height: 68px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-right: auto;
}
.logo__brand {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--white);
}
.logo__sub {
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 0;
}
.nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.82);
  padding: 0 1.1rem;
  transition: color 0.2s;
}
.nav a:hover { color: var(--white); }

.header__icons {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.icon-btn {
  background: none;
  border: none;
  color: rgba(245,243,239,0.82);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.icon-btn:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: 0.3s;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background:
    url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1600&q=80') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 0 6vw 9vh;
}

.hero__tagline {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hero__text {
  font-size: 14px;
  color: rgba(245,243,239,0.78);
  max-width: 400px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 13px 22px;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}
.btn--outline {
  border: 1.5px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
}
.btn--ghost {
  border: 1.5px solid rgba(245,243,239,0.35);
  color: rgba(245,243,239,0.85);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--white);
  color: var(--white);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border: 1.5px solid var(--dark);
}
.btn--dark:hover {
  background: var(--mid);
  border-color: var(--mid);
}
.btn--outline-light {
  border: 1.5px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--dark);
}

/* === USPs === */
.usps {
  background: var(--dark);
  padding: 3rem 0;
}
.usps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.usp {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.usp__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--accent);
}
.usp__icon svg { width: 100%; height: 100%; }
.usp strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.usp p {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.6;
}

/* === PRODUCTS === */
.products {
  background: var(--white);
  padding: 6rem 0;
}
.products__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}
.products__intro .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}
.products__intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 2rem;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  border: 1px solid #e8e6e0;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.product-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

.product-card__img {
  height: 200px;
  background: #e8e5de center/cover no-repeat;
}
.product-card__img--1 {
  background-image: url('https://images.unsplash.com/photo-1585771724684-38269d6639fd?w=400&q=80');
}
.product-card__img--2 {
  background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=400&q=80');
}
.product-card__img--3 {
  background-image: url('https://images.unsplash.com/photo-1556909172-54557c7e4fb7?w=400&q=80');
}
.product-card__body {
  padding: 1.2rem;
  background: var(--white);
}
.product-card__body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.product-card__body p {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 0.9rem;
}
.link-arrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--grey); border-color: var(--grey); }

/* === INSPIRATION === */
.inspiration {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.inspiration__img {
  background: url('https://images.unsplash.com/photo-1556909172-54557c7e4fb7?w=900&q=80') center/cover no-repeat;
}
.inspiration__content {
  background: var(--dark2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5vw;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}
.section-label--light { color: var(--accent); }
.inspiration__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.inspiration__content p {
  font-size: 14px;
  color: rgba(245,243,239,0.68);
  max-width: 380px;
  line-height: 1.75;
  margin-bottom: 2.2rem;
}

/* === STATS === */
.stats {
  background: var(--white);
  padding: 5rem 0;
  border-top: 1px solid #e8e6e0;
  border-bottom: 1px solid #e8e6e0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.stat__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}
.stat__number--serif { font-size: clamp(1.6rem, 2.5vw, 2.2rem); letter-spacing: .05em; }
.stat strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  display: block;
  margin-bottom: 0.3rem;
}
.stat p { font-size: 12px; color: var(--grey); }

/* === FOOTER === */
.footer { background: var(--dark); }

.footer__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  padding: 5rem 0 4rem;
}
.footer__newsletter-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.footer__newsletter p {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 1.4rem;
  line-height: 1.65;
}
.newsletter-form {
  display: flex;
  border: 1px solid var(--mid);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--white);
  font-family: var(--font-sans);
}
.newsletter-form input::placeholder { color: var(--grey); }
.newsletter-form button {
  background: var(--white);
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--dark);
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--accent); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer__col a {
  font-size: 13px;
  color: var(--grey);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }

.footer__brand { align-items: flex-start; }
.footer__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.footer__logo span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--white);
}
.footer__logo-sub {
  font-size: 9px !important;
  letter-spacing: .22em !important;
  color: var(--accent) !important;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  color: var(--grey);
  transition: color 0.2s;
}
.footer__social a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid var(--mid);
  padding: 1.4rem 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer__bottom p,
.footer__bottom a {
  font-size: 12px;
  color: var(--grey);
}
.footer__bottom div { display: flex; gap: 1.5rem; }
.footer__bottom a:hover { color: var(--white); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .usps__grid { grid-template-columns: repeat(2, 1fr); }
  .products__inner { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-top: 1px solid var(--mid);
  }
  .nav--open { display: flex; }
  .nav a { padding: 0.6rem 0; font-size: 14px; }
  .hamburger { display: flex; }

  .hero { min-height: 85vh; }
  .hero__content { padding-bottom: 7vh; }

  .products__grid { grid-template-columns: 1fr 1fr; }

  .inspiration { grid-template-columns: 1fr; }
  .inspiration__img { height: 300px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr; }
  .usps__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; }
}
