:root{
  --bg:#f6f4f1;          /* cream */
  --text:#1f1f1f;        /* charcoal */
  --muted:#6b6b6b;
  --line:#dedad4;
  --card:#ffffff;
  --alt:#efebe6;
  --accent:#8b5a3c;      /* copper/brown */
  --accent2:#6f442c;     /* darker copper */
  --shadow: 0 12px 32px rgba(0,0,0,.06);
  --radius: 16px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family:var(--font); color:var(--text); background:var(--bg); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

.container{ max-width:var(--max); margin:0 auto; padding:0 20px; }
.muted{ color:var(--muted); }
.small{ font-size:12px; }
.big{ font-weight:900; font-size:16px; }

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:20px; top:20px; width:auto; height:auto;
  padding:10px 12px; background:var(--card);
  border:1px solid var(--line); border-radius:12px;
  box-shadow:var(--shadow);
  z-index:9999;
}

/* =========================
   GOOGLE TRANSLATE (CLEAN)
   ========================= */
.translate{
  display:flex; align-items:center; gap:8px;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--card);
}
.translate__label{ font-size:12px; color:var(--muted); font-weight:700; }
#google_translate_element select{
  border:1px solid var(--line);
  border-radius:10px;
  padding:6px 8px;
  background:var(--card);
  color:var(--text);
  font-size:12px;
}
.goog-te-gadget{ font-size:0 !important; }
.goog-te-gadget span{ display:none !important; }
.goog-te-gadget select{ font-size:12px !important; }

/* =========================
   HEADER (TRANSPARENT ON HERO)
   ========================= */
.header{
  position:absolute;
  top:0; left:0; right:0;
  z-index:100;
  background:transparent;
  border-bottom:none;
}
.header::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.45),
    rgba(0,0,0,.15),
    rgba(0,0,0,0)
  );
  z-index:-1;
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}

.brand{ display:flex; align-items:center; gap:12px; min-width:240px; }
.brand__mark{
  width:48px; height:48px;
  border-radius:999px;
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.brand__mark img{ width:100%; height:100%; object-fit:cover; }
.brand__name{ font-weight:900; letter-spacing:.2px; color:#fff; }
.brand__tag{ font-size:12px; color:rgba(255,255,255,.85); }

.nav{ flex:1; display:flex; justify-content:flex-end; position:relative; }
.nav__menu{ display:flex; align-items:center; gap:12px; }
.nav__menu a{
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
  color:rgba(255,255,255,.9);
}
.nav__menu a:hover{ background: rgba(255,255,255,.10); }

.nav__cta{
  background: var(--accent);
  color:#fff !important;
  border-radius:999px;
  padding:10px 16px !important;
  font-weight:900;
  box-shadow: 0 6px 18px rgba(139,90,60,.30);
}
.nav__cta:hover{ background: var(--accent2); }

/* Hamburger */
.nav__toggle{
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nav__toggleIcon{
  width:18px; height:2px;
  background:#fff;
  position:relative;
  display:block;
  border-radius:999px;
}
.nav__toggleIcon::before,
.nav__toggleIcon::after{
  content:"";
  position:absolute;
  left:0;
  width:18px; height:2px;
  background:#fff;
  border-radius:999px;
}
.nav__toggleIcon::before{ top:-6px; }
.nav__toggleIcon::after{ top:6px; }

.nav__toggle[aria-expanded="true"] .nav__toggleIcon{ background:transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggleIcon::before{ top:0; transform:rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggleIcon::after{ top:0; transform:rotate(-45deg); }

@media (max-width: 980px){
  .nav__toggle{ display:flex; }
  .nav__menu{
    display:none;
    position:absolute;
    right:16px;
    top:60px;
    background:var(--card);
    border:1px solid var(--line);
    border-radius:14px;
    padding:10px;
    flex-direction:column;
    align-items:stretch;
    min-width:240px;
    box-shadow:var(--shadow);
    z-index:200;
  }
  .nav__menu.is-open{ display:flex; }
  .nav__menu a{
    color:var(--text);
    width:100%;
    padding:12px 12px;
  }
  .nav__menu a:hover{ background:var(--alt); }
}

/* =========================
   BUTTONS
   ========================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid transparent;
  background:var(--accent);
  color:#fff;
  font-weight:900;
  font-size:14px;
  cursor:pointer;
}
.btn--primary{ background:var(--accent); }
.btn--primary:hover{ background:var(--accent2); }
.btn--ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
}
.btn--ghost:hover{ border-color:rgba(139,90,60,.35); background:rgba(139,90,60,.05); }
.btn--wide{ width:100%; }

.link{ color:var(--accent); font-weight:900; }
.link:hover{ text-decoration:underline; }

/* =========================
   SECTIONS / LAYOUT
   ========================= */
.section{ padding:56px 0; }
.section--alt{
  background:var(--alt);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section--soft{
  background: linear-gradient(
    180deg,
    rgba(246,244,241,0.6),
    rgba(239,235,230,0.9)
  );
}
.section__head{ margin-bottom:18px; }
.section__title{ margin:0 0 6px; font-size:24px; letter-spacing:-.2px; }
.section__sub{ margin:0; color:var(--muted); }

.grid{ display:grid; gap:14px; }
.grid--2{ grid-template-columns: repeat(2, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1020px){
  .grid--2{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
}

/* Cards */
.card{
  border:1px solid var(--line);
  background:var(--card);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

/* =========================
   HERO SLIDER + GLASS PANEL
   ========================= */
.hero--slider{ padding:0; }

.heroSlider{
  position:relative;
  border-bottom:1px solid var(--line);
}

.heroSlider__track{ position:relative; }
.heroSlide{
  position:relative;
  min-height: 520px;
  display:none;
}
.heroSlide.is-active{ display:block; }

.heroSlide__img{
  width:100%;
  height:520px;
  object-fit:cover;
  object-position:center;
  background:#000;
}

.heroSlide__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(31,31,31,.70) 0%,
    rgba(31,31,31,.45) 45%,
    rgba(31,31,31,.15) 100%
  );
}

.heroOverlay{
  position:absolute;
  left:0; right:0;
  bottom:28px;
  z-index:3;
}
.heroOverlay__panel {
  max-width: 720px;              /* smaller card */
  padding: 14px 16px;            /* tighter spacing */
  border-radius: 14px;

  background: rgba(246,244,241,.72);  /* more transparent */
  border: 1px solid rgba(222,218,212,.6);

  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  backdrop-filter: blur(10px);
}

.heroOverlay h1{
  margin:6px 0 10px;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-.3px;
}
.heroOverlay .lead{
  margin:0 0 12px;
  color:var(--muted);
  max-width:760px;
}
.hero__actions{ display:flex; gap:10px; flex-wrap:wrap; }

@media (max-width: 768px){
  .heroSlide{ min-height: 380px; }
  .heroSlide__img{ height:340px; }
  .heroOverlay{ bottom:8px; }
  .heroOverlay__panel{ padding:14px 14px 12px; border-radius:14px; }
  .heroOverlay h1{ font-size:28px; line-height:1.15; }
  .heroOverlay .lead{ font-size:14px; line-height:1.4; }
  .hero__actions .btn{ padding:10px 14px; font-size:14px; }
}

/* =========================
   ABOUT CARDS
   ========================= */
.aboutGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  margin-top:20px;
}
.aboutCard{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow);
}
.aboutCard h3{
  margin:0 0 12px;
  font-size:18px;
  font-weight:900;
}
.aboutCard ul{
  list-style:none;
  padding:0;
  margin:0;
}
.aboutCard li{
  margin-bottom:10px;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
}
.aboutCard li.muted{ color:var(--muted); }

@media (max-width: 768px){
  .aboutGrid{ grid-template-columns:1fr; }
}

/* =========================
   COLLECTIONS CARDS
   ========================= */
.item{
  border:1px solid var(--line);
  background:var(--card);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.item h3{ margin:12px 0 8px; font-size:16px; }
.item p{ margin:0 0 10px; }

.collectionImg{
  width:100%;
  height:170px;
  object-fit:cover;
  object-position:center;
  border-radius:14px;
  border:1px solid var(--line);
}

/* =========================
   SHOWROOM AUTOPLAY SLIDER
   ========================= */
.showroomSlider{
  width:100%;
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--line);
  background:#000;
  box-shadow:var(--shadow);
}
.showroomSlider__track{
  display:flex;
  transform: translateX(0);
  transition: transform 700ms ease;
  will-change: transform;
}
.showroomSlider__img{
  flex: 0 0 100%;
  width:100%;
  height:360px;
  object-fit:cover;
  object-position:center;
  display:block;
}
@media (max-width: 768px){
  .showroomSlider__img{ height:240px; }
}

/* =========================
   QUOTE FORM
   ========================= */
.quoteForm{
  max-width: 920px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.quoteRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field{ display:flex; flex-direction:column; gap:6px; }
.field--full{ margin-bottom:14px; }

.field label{
  font-size:13px;
  font-weight:900;
}

.quoteForm input,
.quoteForm select,
.quoteForm textarea{
  border:1px solid var(--line);
  border-radius:12px;
  padding:11px 12px;
  font-size:14px;
  outline:none;
  background: rgba(255,255,255,.92);
}

.quoteForm textarea{ resize:vertical; min-height:110px; }

.quoteForm input:focus,
.quoteForm select:focus,
.quoteForm textarea:focus{
  border-color: rgba(139,90,60,.55);
  box-shadow: 0 0 0 4px rgba(139,90,60,.12);
}

.quoteFieldset{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  margin:10px 0 14px;
  background: rgba(255,255,255,.55);
}
.quoteFieldset legend{
  padding:0 6px;
  font-weight:900;
  font-size:13px;
}
.quoteFieldset .check{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:8px 18px 0 0;
  color:var(--muted);
  font-size:13px;
}

.consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--muted);
  font-size:13px;
  margin:6px 0 14px;
}
.consent input{ margin-top:3px; }

@media (max-width: 820px){
  .quoteForm{ padding:16px; }
  .quoteRow{ grid-template-columns:1fr; }
}

/* =========================
   PRODUCTS PAGE (HEADER + GRID)
   ========================= */
.productsMain{
  padding-top: 110px; /* header is absolute on hero pages; safe spacing for products page */
}

.productsHeader{
  padding: 28px 0 22px;
  margin-bottom: 30px;
  background: linear-gradient(
    180deg,
    rgba(139,90,60,0.08),
    rgba(139,90,60,0.02)
  );
  border-bottom: 1px solid var(--line);
}
.productsHeader h1{
  font-size:36px;
  font-weight:900;
  letter-spacing:-.4px;
  margin:0 0 8px;
}
.productsHeader p{
  margin:0;
  font-size:15px;
  color:var(--muted);
  max-width:640px;
}

.productGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.productCard{
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.productCard__img{
  width:100%;
  height:170px;
  object-fit:cover;
  object-position:center;
  display:block;
}
.productCard__name{
  margin: 12px 14px 4px;
  font-size: 16px;
  font-weight: 900;
}
.productCard__meta{
  margin: 0 14px 14px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 1020px){
  .productGrid{ grid-template-columns:1fr; }
  .productCard__img{ height:220px; }
}

/* =========================
   HERO SLIDER + GLASS PANEL
   ========================= */
@media (max-width: 768px) {
  .heroOverlay {
    bottom: 10px; /* pushes card lower */
  }

  .heroOverlay__panel {
    max-width: 100%;
    margin: 0 12px;

    padding: 10px 14px;   /* ⬅️ THIS shrinks height most */
    border-radius: 14px;

    background: rgba(246,244,241,.65);
  }

  .heroOverlay__panel h1 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .heroOverlay__panel .lead {
    font-size: 0.9rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .hero_actions {
    gap: 8px;
  }

  .hero_actions .btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}


/* =========================
   FOOTER
   ========================= */
.footer{
  margin-top:18px;
  border-top:1px solid var(--line);
  padding-top:14px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}
