/* ============ TOKENS ============ */
:root {
  --charcoal: #1c1712;
  --charcoal-2: #241d16;
  --cream: #faf5ec;
  --cream-2: #f2e9d8;
  --text-dark: #201a14;
  --text-light: #f7f1e6;
  --muted: #7a6c58;
  --muted-light: #cbbfa9;
  --ember: #d9622b;
  --ember-dark: #b34f21;
  --gold: #c9a15f;
  --line: rgba(32, 26, 20, 0.1);
  --line-light: rgba(247, 241, 230, 0.14);
  --shadow: 0 20px 40px -20px rgba(28, 23, 18, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1140px;
}

/* ============ RESET ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  overflow-x: hidden;
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 0.5em;
  line-height: 1.15;
  color: inherit;
}
p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
[hidden] { display: none !important; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 20px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.75em;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(217, 98, 43, 0.55);
}
.btn-primary:hover { background: var(--ember-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--line-light);
  color: var(--text-light);
}
.btn-outline:hover { background: rgba(247, 241, 230, 0.08); }
.btn-ig {
  background: linear-gradient(135deg, var(--gold), var(--ember));
  color: #fff;
}
.btn-ig:hover { filter: brightness(1.06); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-dark);
}
.btn-ghost:hover { background: var(--cream-2); }
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(37, 211, 102, 0.55);
}
.btn-whatsapp:hover { background: #1fb958; }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--charcoal);
  color: var(--muted-light);
  text-align: center;
  font-size: 0.78rem;
  padding: 8px 12px;
  letter-spacing: 0.02em;
}
.topbar p { margin: 0; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 24px -16px rgba(28, 23, 18, 0.3);
  border-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-right: auto;
}
.logo-mark { display: block; border-radius: 50%; flex-shrink: 0; }
.logo-text em { color: var(--ember); font-style: normal; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--ember);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-ig { padding: 10px 18px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  color: var(--text-light);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 98, 43, 0.35), transparent 55%),
    radial-gradient(circle at 85% 75%, rgba(201, 161, 95, 0.22), transparent 50%),
    linear-gradient(180deg, var(--charcoal-2), var(--charcoal));
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-block: 80px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: #fff;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted-light);
  max-width: 560px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 1.5em;
}

/* ============ STRIP ============ */
.strip {
  background: var(--charcoal-2);
  border-top: 1px solid var(--line-light);
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 32px;
}
.strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  color: var(--muted-light);
  font-size: 0.85rem;
}
.strip-num {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--gold);
}

/* ============ SECTIONS ============ */
.section { padding-block: 96px; }
.section-alt { background: var(--cream-2); }
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.section-sub { color: var(--muted); margin-bottom: 0; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-frame {
  aspect-ratio: 4 / 3;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
}
.about-icon { font-size: 2.6rem; }
.about-copy h2 { font-size: clamp(1.9rem, 4vw, 2.4rem); }
.check-list { display: grid; gap: 12px; margin-top: 1.5em; }
.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--text-dark);
}
.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0; top: 1px;
  color: var(--ember);
  font-weight: 700;
}

/* ============ PRODUCT GRID ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--line);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px -20px rgba(28, 23, 18, 0.35);
}
.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--cream-2), #e9dcc4);
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ember);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 1;
}
.photo-count {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(28, 23, 18, 0.65);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 1;
}
.product-body { padding: 22px 22px 24px; }
.product-body h3 { font-size: 1.2rem; margin-bottom: 0.6em; }
.product-specs { display: grid; gap: 8px; margin-bottom: 18px; }
.product-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.product-specs li span { color: var(--muted); }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price { font-weight: 600; color: var(--muted); font-size: 0.9rem; }

/* ============ IG GRID ============ */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream-2);
  border: none;
  padding: 0;
  display: block;
  width: 100%;
  cursor: pointer;
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; }
.ig-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(217,98,43,0.55), rgba(201,161,95,0.4));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ig-tile:hover .ig-tile-overlay { opacity: 1; }
.ig-cta { text-align: center; margin-top: 40px; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-copy h2 { font-size: clamp(1.9rem, 4vw, 2.4rem); }
.contact-list { display: grid; gap: 16px; margin-top: 2em; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
a.contact-item:hover { border-color: var(--ember); transform: translateX(4px); }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--text-dark);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ember);
}
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  min-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.form-note.visible {
  opacity: 1;
  transform: translateY(0);
  color: var(--ember-dark);
  font-weight: 600;
}

/* ============ MODAL: DETAJET E PRODUKTIT ============ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(28, 23, 18, 0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  z-index: 200;
}
.modal {
  background: #fff;
  border-radius: var(--radius);
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.modal-head h3 { margin: 0; font-size: 1.3rem; }
.modal-close {
  background: none; border: none; font-size: 1.6rem;
  line-height: 1; color: var(--muted); padding: 4px 8px; flex-shrink: 0;
}
.modal-body.detail-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
}

.detail-gallery { display: grid; gap: 12px; align-content: start; }
.detail-main-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream-2);
}
.detail-main-image img { width: 100%; height: 100%; object-fit: cover; }
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(28, 23, 18, 0.55);
  color: #fff;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.gallery-nav:hover { background: rgba(28, 23, 18, 0.8); }
.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }
.detail-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.detail-thumb {
  flex: 0 0 auto;
  width: 60px; height: 60px;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  background: var(--cream-2);
  cursor: pointer;
}
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-thumb.active { border-color: var(--ember); }

.detail-info { display: flex; flex-direction: column; }
.detail-info .product-specs { margin-bottom: 16px; }
.detail-info .product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.detail-contact {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.detail-contact-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--charcoal);
  color: var(--muted-light);
  padding-block: 32px;
  border-top: 1px solid var(--line-light);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--text-light);
}
.footer-brand .logo-text em { color: var(--ember); font-style: normal; }
.site-footer a:hover { color: var(--gold); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .modal-body.detail-body { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -20px 0 40px -20px rgba(0,0,0,0.3);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .header-ig { display: none; }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { padding-block: 56px; }
  .section { padding-block: 64px; }
  .contact-form { padding: 22px; }
}
