
:root{
  --ivory:#F5F1EB;
  --beige:#E7E0D8;
  --taupe:#8A7D71;
  --charcoal:#222222;
  --muted:#5f5a55;
  --white:#fff;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:Arial,Helvetica,sans-serif;background:var(--ivory);color:var(--charcoal);line-height:1.6}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.serif,h1,h2,h3,.brand{font-family:Georgia,'Times New Roman',serif;font-weight:400;letter-spacing:.06em}
.navbar{position:fixed;top:0;left:0;width:100%;z-index:20;background:rgba(245,241,235,.86);backdrop-filter:blur(14px);border-bottom:1px solid rgba(34,34,34,.07);display:flex;align-items:center;justify-content:space-between;padding:18px 44px}
.brand{font-size:18px;text-transform:uppercase}
.nav-links{display:flex;gap:26px;font-size:12px;text-transform:uppercase;letter-spacing:.13em}
.logo-mini{width:38px;height:38px;border-radius:50%;object-fit:cover;margin-right:10px}
.brand-wrap{display:flex;align-items:center}
.hero{min-height:100vh;display:grid;grid-template-columns:1.1fr .9fr;padding-top:75px}
.hero-img{background:url('images/hero.jpg') center/contain no-repeat;background-color:var(--beige);min-height:calc(100vh - 75px)}
.hero-content{display:flex;flex-direction:column;justify-content:center;padding:70px}
.eyebrow{text-transform:uppercase;letter-spacing:.18em;font-size:12px;color:var(--taupe);margin-bottom:15px}
h1{font-size:clamp(43px,6vw,82px);line-height:1.05;margin-bottom:24px}
h2{font-size:clamp(31px,4vw,54px);line-height:1.12;margin-bottom:18px}
h3{font-size:25px;margin-bottom:10px}
p{color:var(--muted)}
.hero-content p{font-size:17px;max-width:500px;margin-bottom:32px}
.btn-row{display:flex;gap:13px;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:13px 23px;border:1px solid var(--taupe);font-size:12px;text-transform:uppercase;letter-spacing:.13em;transition:.25s ease;cursor:pointer;background:transparent}
.btn.primary{background:var(--taupe);color:var(--white)}
.btn:hover{opacity:.75;transform:translateY(-1px)}
.section{padding:90px 46px}
.section-title{text-align:center;max-width:780px;margin:0 auto 52px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:19px}
.card-img{position:relative;min-height:470px;overflow:hidden;background:var(--beige)}
.card-img img{width:100%;height:100%;object-fit:contain;position:absolute;inset:0;transition:.5s ease;background:var(--beige)}
.card-img:hover img{transform:scale(1.04)}
.card-label{position:absolute;left:20px;bottom:20px;background:rgba(245,241,235,.88);padding:12px 18px;text-transform:uppercase;letter-spacing:.12em;font-size:12px}
.split{display:grid;grid-template-columns:1fr 1fr;gap:55px;align-items:center}
.split img{height:620px;width:100%;object-fit:contain;background:var(--beige)}
.split-text{padding:28px}
.split-text p{max-width:540px;margin:17px 0 30px}
.panel{background:var(--beige);text-align:center;padding:88px 30px}
.panel p{max-width:680px;margin:15px auto 30px}
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.gallery img{height:430px;width:100%;object-fit:contain;background:var(--beige)}
.footer{background:#24221f;color:#fff;padding:58px 46px;display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:34px}
.footer p,.footer a{color:rgba(255,255,255,.72);display:block;margin-bottom:8px;font-size:14px}

/* Collections page */
.page-head{padding:145px 46px 65px;text-align:center;background:var(--beige)}
.page-head p{max-width:680px;margin:0 auto}
.filters{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:35px}
.filter-btn{padding:10px 17px;border:1px solid rgba(138,125,113,.55);background:transparent;text-transform:uppercase;letter-spacing:.12em;font-size:11px;cursor:pointer}
.filter-btn.active{background:var(--taupe);color:#fff}
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.product-card{background:#fff;min-height:100%;box-shadow:0 14px 35px rgba(0,0,0,.04)}
.product-card img{height:300px;width:100%;object-fit:contain;background:var(--beige)}
.product-info{padding:22px}
.product-top{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;margin-bottom:8px}
.price{font-weight:bold;color:var(--taupe);white-space:nowrap}
.category{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:#8a7d71;margin-bottom:16px}
.small-note{font-size:13px;margin-bottom:18px}
.whatsapp{width:100%;text-align:center}

@media(max-width:950px){
  .navbar{padding:15px 20px}
  .nav-links{gap:13px;font-size:10px}
  .hero{grid-template-columns:1fr}
  .hero-img{min-height:62vh;order:-1}
  .hero-content{padding:42px 24px 62px}
  .section{padding:66px 22px}
  .grid-4,.split,.gallery,.footer,.product-grid{grid-template-columns:1fr}
  .card-img{min-height:455px}
  .split img,.gallery img,.product-card img{height:470px}
  .page-head{padding:125px 22px 55px}
}


/* Product photo zoom lightbox */
.product-card img {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 18, 16, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.lightbox.active {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: min(96vw, 1100px);
  height: min(86vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.2s ease;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
}

.lightbox-controls {
  position: fixed;
  top: 22px;
  right: 22px;
  display: flex;
  gap: 10px;
  z-index: 10000;
}

.lightbox-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(245, 241, 235, 0.12);
  color: white;
  font-size: 22px;
  cursor: pointer;
}

.lightbox-caption {
  position: fixed;
  left: 28px;
  bottom: 22px;
  color: white;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: 0.05em;
  font-size: 20px;
}

@media(max-width:700px){
  .lightbox {
    padding: 14px;
  }
  .lightbox-caption {
    left: 18px;
    bottom: 18px;
    font-size: 16px;
  }
  .lightbox-controls {
    top: 14px;
    right: 14px;
  }
  .lightbox-controls button {
    width: 40px;
    height: 40px;
  }
}


.lightbox-img.dragging {
  cursor: grabbing;
}


/* Mobile readability and layout fixes */
body {
  overflow-x: hidden;
}

.product-info h3,
.split-text h2,
.section-title h2,
.page-head h1 {
  overflow-wrap: anywhere;
}

@media(max-width:700px){
  body {
    font-size: 15px;
  }

  .navbar {
    padding: 12px 14px;
    gap: 8px;
  }

  .logo-mini {
    width: 30px;
    height: 30px;
    margin-right: 7px;
  }

  .brand {
    font-size: 13px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .nav-links {
    display: flex;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 0.10em;
    overflow-x: auto;
    max-width: 52vw;
    padding-bottom: 2px;
  }

  .nav-links a:nth-child(3),
  .nav-links a:nth-child(4) {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-img {
    min-height: 48vh;
    background-size: contain;
    background-position: center;
    background-color: var(--beige);
  }

  .hero-content {
    padding: 32px 18px 44px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: 0.04em;
  }

  h2 {
    font-size: 31px;
    line-height: 1.15;
    letter-spacing: 0.04em;
  }

  h3 {
    font-size: 23px;
    line-height: 1.25;
    letter-spacing: 0.04em;
  }

  .hero-content p,
  .section-title p,
  .split-text p,
  .panel p,
  .small-note {
    font-size: 15px;
    line-height: 1.65;
  }

  .btn-row,
  .buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    padding: 13px 14px;
    font-size: 11px;
    letter-spacing: 0.11em;
    text-align: center;
  }

  .section {
    padding: 52px 16px;
  }

  .page-head {
    padding: 96px 18px 42px;
  }

  .page-head h1 {
    font-size: 42px;
  }

  .filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    margin-bottom: 24px;
  }

  .filter-btn {
    flex: 0 0 auto;
    font-size: 10px;
    padding: 10px 13px;
    letter-spacing: 0.10em;
  }

  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .product-card {
    width: 100%;
  }

  .product-card img {
    height: 245px !important;
    padding: 8px;
  }

  .product-info {
    padding: 18px 16px 20px;
  }

  .product-top {
    display: block;
    margin-bottom: 12px;
  }

  .product-top h3 {
    margin-bottom: 8px;
  }

  .price {
    display: block;
    white-space: normal;
    font-size: 16px;
    color: var(--taupe);
  }

  .category {
    font-size: 10px;
    letter-spacing: 0.10em;
    line-height: 1.6;
  }

  .small-note {
    margin-bottom: 16px;
  }

  .grid-4 {
    gap: 14px;
  }

  .card-img {
    min-height: 310px !important;
  }

  .card-label {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    font-size: 10px;
    letter-spacing: 0.10em;
    padding: 10px 13px;
  }

  .split {
    gap: 26px;
  }

  .split img {
    height: 360px !important;
    padding: 8px;
  }

  .split-text {
    padding: 0;
  }

  .gallery {
    gap: 12px;
  }

  .gallery img {
    height: 300px !important;
    padding: 8px;
  }

  .panel {
    padding: 54px 18px;
  }

  .footer {
    padding: 42px 18px;
    gap: 24px;
  }

  .footer h3 {
    font-size: 21px;
  }

  .footer p,
  .footer a {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .lightbox-controls {
    top: 10px;
    right: 10px;
    gap: 6px;
  }

  .lightbox-controls button {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .lightbox-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 14px;
  }
}

@media(max-width:380px){
  .brand {
    font-size: 12px;
  }

  .nav-links {
    max-width: 48vw;
    gap: 9px;
    font-size: 9px;
  }

  h1 {
    font-size: 33px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 21px;
  }

  .product-card img {
    height: 220px !important;
  }

  .card-img {
    min-height: 285px !important;
  }
}


/* Extra mobile header + hero fix */
@media(max-width:700px){
  .navbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 12px 10px;
    min-height: 92px;
  }

  .brand-wrap {
    width: 100%;
    justify-content: center;
    margin-bottom: 9px;
  }

  .brand {
    font-size: 15px;
    letter-spacing: 0.07em;
  }

  .logo-mini {
    width: 31px;
    height: 31px;
  }

  .nav-links {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    overflow: visible;
    gap: 24px;
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  .nav-links a:nth-child(3),
  .nav-links a:nth-child(4) {
    display: none !important;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-img {
    min-height: 52vh;
    width: 100%;
    background-size: contain;
    background-position: center center;
  }

  .hero-content {
    padding: 28px 18px 76px;
  }

  h1 {
    font-size: 35px;
    line-height: 1.12;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 26px;
  }

  .btn-row {
    gap: 12px;
  }

  .btn {
    min-height: 52px;
  }
}

@media(max-width:390px){
  .brand {
    font-size: 13px;
  }

  .nav-links {
    gap: 18px;
    font-size: 10px;
  }

  h1 {
    font-size: 32px;
  }

  .hero-img {
    min-height: 49vh;
  }
}
