:root {
  --bg-dark: #171717;
  --bg-light: #f1efea;
  --text-light: #f6f3ee;
  --text-dark: #121212;
  --muted-light: rgba(246, 243, 238, 0.78);
  --muted-dark: rgba(18, 18, 18, 0.72);
  --line-dark: rgba(255, 255, 255, 0.12);
  --btn-border: rgba(255, 255, 255, 0.36);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HEADER */
.site-header {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--line-dark);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  width: min(calc(100% - 32px), 1320px);
  margin: 0 auto;
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav a,
.brand {
  color: var(--text-light);
  text-decoration: none;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand {
  font-size: 30px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
}

/* HERO */
.hero-section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 38px 0 78px;
}

.hero-copy {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.35;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(62px, 9vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.hero-sub {
  width: min(100%, 360px);
  margin: 18px auto 22px;
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.35;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-width: 78px;
  padding: 0 14px;
  border: 1px solid var(--btn-border);
  color: var(--text-light);
  text-decoration: none;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-btn:hover {
  background: var(--text-light);
  color: var(--bg-dark);
}

.hero-images {
  width: min(100%, 760px);
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.hero-image {
  aspect-ratio: 1 / 1;
  background: #232323;
  overflow: hidden;
}

/* PRODUCTS */
.products-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 74px 0 82px;
}

.products-intro {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto 42px;
  text-align: center;
}

.products-kicker {
  margin: 0 0 16px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.35;
}

.products-intro h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.products-grid {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-image-wrap {
  aspect-ratio: 0.88 / 1;
  background: #d9d5cf;
  overflow: hidden;
}

.product-text {
  padding-top: 10px;
}

.product-topline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}

.product-topline h3 {
  margin: 0;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.product-topline span {
  font-size: 10px;
  color: rgba(18, 18, 18, 0.8);
  white-space: nowrap;
}

.product-text p {
  margin: 0;
  font-size: 10px;
  line-height: 1.35;
  color: rgba(18, 18, 18, 0.8);
}

.shop-cta-wrap {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
}

.shop-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 28px;
  padding: 0 16px;
  border: 1px solid rgba(18, 18, 18, 0.24);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 10px;
  line-height: 1;
}

/* BOTTOM GALLERY */
.gallery-strip {
  background: var(--bg-dark);
  padding: 48px 0 90px;
}

.gallery-grid {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.gallery-card {
  background: #242424;
  overflow: hidden;
}

.gallery-card.large {
  aspect-ratio: 1.15 / 0.78;
}

.gallery-card.small {
  aspect-ratio: 0.85 / 1;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding: 10px 0;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .brand {
    order: -1;
  }

  .hero-images {
    width: 100%;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .header-inner {
    width: min(calc(100% - 20px), 1320px);
  }

  .nav {
    gap: 10px;
  }

  .nav a {
    font-size: 8px;
  }

  .brand {
    font-size: 24px;
  }

  .hero-section {
    width: min(calc(100% - 20px), var(--max-width));
    padding: 28px 0 58px;
  }

  .hero-copy h1 {
    font-size: clamp(50px, 15vw, 78px);
  }

  .hero-sub {
    font-size: 12px;
    width: min(100%, 300px);
  }

  .hero-images {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .products-section {
    padding: 56px 0 64px;
  }

  .products-intro,
  .products-grid,
  .shop-cta-wrap,
  .gallery-grid {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-image-wrap {
    aspect-ratio: 1 / 1.08;
  }
}

.hero-section{
  position:relative;
  height:55vh;
  overflow:hidden;
}

.hero-video{
  position:absolute;
  top:50%;
  left:50%;
  min-width:100%;
  min-height:100%;
  transform:translate(-50%, -50%);
  object-fit:cover;
}

.hero-copy{
  position:relative;
  z-index:2;
}

.hero-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25)
  );
}

.hero-video{
  position:absolute;
  top:50%;
  left:50%;
  width:100%;
  height:100%;
  transform:translate(-50%, -50%);
  object-fit:cover;
}


/* ABOUT PAGE */
.about-page {
  background: #f3f0ea;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #f3f0ea;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-right {
  justify-content: flex-end;
}

.nav-left a,
.nav-right a,
.brand {
  text-decoration: none;
  color: #111;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.nav-left a.active {
  font-weight: 700;
}

.about-hero {
  padding: 90px 0 50px;
}

.about-hero-inner {
  width: min(1000px, 92%);
  margin: 0 auto;
}

.eyebrow,
.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.65);
}

.about-hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 900px;
  margin: 0 0 20px;
}

.about-hero-copy {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.72);
}

.about-video-section {
  padding: 20px 0 70px;
}

.about-video-wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.about-video {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  max-height: 680px;
  background: #000;
}

.about-content {
  padding: 20px 0 90px;
}

.about-grid {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
}

.about-card {
  background: rgba(255, 255, 255, 0.55);
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 280px;
}

.about-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}

.about-card p:last-child {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.72);
}

.about-cta {
  padding: 0 0 100px;
}

.about-cta-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  background: #111;
  color: #f3f0ea;
  padding: 60px 40px;
  border-radius: 14px;
}

.about-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}

.about-cta-inner p {
  max-width: 760px;
  line-height: 1.7;
  color: rgba(243, 240, 234, 0.78);
  margin-bottom: 28px;
}

.about-btn {
  display: inline-block;
  text-decoration: none;
  color: #111;
  background: #f3f0ea;
  padding: 14px 22px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .nav-container {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .brand {
    order: -1;
  }

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

  .about-card {
    min-height: auto;
  }
}

/* CONTACT PAGE */

.contact-page{
background:#f3f0ea;
color:#111;
font-family:Arial, Helvetica, sans-serif;
}

.contact-hero{
padding:120px 0 60px;
}

.contact-hero-inner{
width:min(1000px,92%);
margin:auto;
}

.contact-hero h1{
font-size:clamp(3rem,7vw,6rem);
line-height:0.9;
letter-spacing:-0.05em;
margin-bottom:20px;
}

.contact-sub{
max-width:600px;
line-height:1.7;
color:rgba(0,0,0,0.7);
}

.contact-section{
padding:40px 0 100px;
}

.contact-grid{
width:min(1100px,92%);
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
}

.contact-info h2{
font-size:2rem;
margin-bottom:16px;
}

.contact-info p{
margin-bottom:14px;
color:rgba(0,0,0,0.7);
line-height:1.7;
}

.contact-links a{
font-weight:600;
text-decoration:none;
color:#111;
}

.contact-form{
display:flex;
flex-direction:column;
gap:14px;
}

.contact-form label{
font-size:0.8rem;
text-transform:uppercase;
letter-spacing:0.08em;
}

.contact-form input,
.contact-form textarea{

padding:14px;
border:1px solid rgba(0,0,0,0.15);
background:white;
font-size:1rem;

}

.contact-form textarea{
min-height:140px;
resize:vertical;
}

.contact-form button{

margin-top:10px;
padding:14px;
border:none;
background:#111;
color:white;
cursor:pointer;
text-transform:uppercase;
letter-spacing:0.08em;

}

.contact-form button:hover{
opacity:.85;
}

@media(max-width:900px){

.contact-grid{
grid-template-columns:1fr;
gap:40px;
}

}