:root {
  --cream: #faf3e0;
  --cream-soft: #fdf8e9;
  --cream-deep: #f4e8c8;
  --yellow: #f4c430;
  --yellow-soft: #f6cf4a;
  --yellow-line: #e8b923;
  --ink: #1f1f1f;
  --ink-soft: #2c2c2c;
  --gray-200: #ececec;
  --gray-300: #d8d8d8;
  --gray-500: #6b6b6b;
  --navy: #2a2a2e;
  --footer: #383838;
  --card-bg: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --serif-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --serif-body: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw: 1200px;
  --pad-x: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- HEADER ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand-mark { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.site-nav {
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.site-nav a {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  color: var(--ink);
}
.site-nav a:hover { color: var(--yellow-line); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 80vh, 820px);
  display: grid;
  place-items: center;
  padding: 60px var(--pad-x);
  overflow: hidden;
  background: var(--cream);
}
.hero-sketches { position: absolute; inset: 0; pointer-events: none; }
.sketch {
  position: absolute;
  filter: invert(1);
  mix-blend-mode: multiply;
  opacity: 0.72;
  width: clamp(70px, 12vw, 170px);
}
.sketch-1  { top:  6%;  left:  2%;  width: clamp(80px, 10vw, 140px); transform: rotate(-8deg); }
.sketch-2  { top:  4%;  left: 38%;  width: clamp(90px, 11vw, 160px); transform: rotate(4deg); }
.sketch-3  { top:  6%;  right: 4%;  width: clamp(90px, 11vw, 150px); }
.sketch-4  { top: 22%;  left: 58%;  width: clamp(60px, 7vw,  100px); transform: rotate(3deg); }
.sketch-5  { top: 42%;  left:  3%;  width: clamp(80px, 10vw, 140px); }
.sketch-6  { top: 42%;  left: 22%;  width: clamp(90px, 11vw, 150px); transform: rotate(-2deg); }
.sketch-7  { top: 42%;  right: 4%;  width: clamp(90px, 11vw, 150px); }
.sketch-8  { top: 68%;  right: 16%; width: clamp(80px, 10vw, 140px); }
.sketch-9  { top: 78%;  left:  4%;  width: clamp(70px, 9vw,  120px); }
.sketch-10 { top: 72%;  right: 4%;  width: clamp(80px, 10vw, 140px); }
.sketch-11 { bottom: 4%; right: 26%; width: clamp(80px, 10vw, 140px); }
.sketch-12 { bottom: 0;  left: 28%;  width: clamp(180px, 28vw, 380px); opacity: 0.55; }

.hero-center {
  position: relative;
  text-align: center;
  z-index: 2;
}
.hero-logo {
  width: clamp(180px, 22vw, 260px);
  height: clamp(180px, 22vw, 260px);
  border-radius: 50%;
  margin: 0 auto 28px;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.6);
}
.hero-tagline {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 32px);
  margin: 0 0 32px;
  color: var(--ink);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 14px 30px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.btn-primary:hover { background: var(--yellow-soft); }
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-pill {
  background: transparent;
  border: 1.5px solid var(--yellow);
  color: var(--ink);
  font-family: var(--serif-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 999px;
}
.btn-pill:hover { background: var(--yellow); }

/* ---------- SECTION TITLES ---------- */
.section-title {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  text-align: center;
  margin: 0 auto 8px;
}
.title-underline {
  width: 80px;
  height: 3px;
  background: var(--yellow);
  margin: 0 auto 48px;
  border-radius: 2px;
}

/* ---------- OUR STORY ---------- */
.story {
  padding: 80px var(--pad-x) 40px;
  background: var(--cream);
}
.story-card {
  background: #f3f3f3;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
  padding: 56px clamp(24px, 5vw, 80px);
  text-align: center;
  position: relative;
}
.quote-marks {
  position: absolute;
  top: 14px;
  left: 32px;
  font-family: var(--serif-display);
  color: var(--yellow);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.1em;
}
.story-card .section-title { margin-bottom: 6px; }
.story-card .title-underline { margin-bottom: 28px; }
.story-text {
  font-family: var(--serif-body);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
}

/* ---------- BADGES STRIP ---------- */
.badges-strip {
  background: var(--navy);
  color: #fff;
  padding: 28px var(--pad-x);
}
.badges-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 40px;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 14px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.badges-strip li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
}
.badge-icon svg { width: 100%; height: 100%; }

/* ---------- COLLECTIONS ---------- */
.collections, .featured, .contact {
  padding: 80px var(--pad-x);
}
.collection-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
  text-align: center;
}
.collection-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.card-image {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.collection-card h3 {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  margin: 0;
}
.collection-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.5;
  flex: 1;
}
.collection-card .btn { margin-top: 8px; }
.btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
.btn.is-disabled:hover {
  transform: none;
  box-shadow: none;
  background: transparent;
  color: var(--ink);
}

/* ---------- PRODUCTS ---------- */
.product-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.product-image {
  height: clamp(220px, 28vw, 320px);
  background: #f7f5f0;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.zoomable-image {
  cursor: zoom-in;
}
.product-card h3 {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 22px;
  margin: 22px 24px 6px;
}
.product-desc {
  margin: 0 24px 12px;
  color: var(--ink-soft);
}
.product-size {
  margin: 0 24px 14px;
  color: var(--gray-500);
  font-size: 15px;
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 22px;
  gap: 12px;
  flex-wrap: wrap;
}
.price {
  font-weight: 700;
  font-size: 17px;
}

/* ---------- BULK ---------- */
.bulk {
  background: var(--cream-deep);
  padding: 56px var(--pad-x);
}
.bulk-card {
  background: #fff;
  border-radius: 10px;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.bulk-card h2 {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 8px;
}
.bulk-sub { margin: 0 0 28px; color: var(--ink-soft); }
.bulk-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px 28px;
  max-width: 760px;
  text-align: left;
}
.bulk-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.bulk-list li::before {
  content: "✓";
  color: var(--yellow-line);
  font-weight: 700;
  font-size: 18px;
}
.bulk-note {
  margin: 28px 0 0;
  color: var(--gray-500);
  font-style: italic;
  font-size: 14px;
}

/* ---------- TRUST ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 64px var(--pad-x);
  border-top: 4px solid var(--yellow);
  background: var(--cream);
  text-align: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
.trust-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.trust-icon svg { width: 100%; height: 100%; }
.trust-item h4 {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 8px;
}
.trust-item p {
  margin: 0 auto;
  max-width: 280px;
  color: var(--ink-soft);
}

/* ---------- CONTACT ---------- */
.contact { background: var(--cream); padding-top: 40px; padding-bottom: 80px; }
.contact-card {
  background: #fff;
  border-radius: 10px;
  max-width: 720px;
  margin: 0 auto;
  padding: 56px clamp(24px, 5vw, 64px);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-card h2 {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 36px);
  margin: 0 0 12px;
}
.contact-sub { color: var(--ink-soft); margin: 0 0 24px; }
.contact-phone {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 28px;
}
.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--footer);
  color: #fff;
  text-align: center;
  padding: 48px var(--pad-x) 28px;
}
.footer-logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 18px;
  filter: brightness(1.05);
}
.footer-tagline {
  margin: 0 0 22px;
  font-family: var(--serif-display);
  font-style: italic;
}
.footer-social {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-social a { display: inline-flex; width: 26px; height: 26px; }
.footer-social svg { width: 100%; height: 100%; }
.copyright { margin: 0; font-size: 14px; color: rgba(255,255,255,0.75); }

/* ---------- INQUIRY MODAL ---------- */
.inquiry-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 18, 18, 0.65);
  z-index: 1150;
}
.inquiry-modal.is-open {
  display: flex;
}
.inquiry-modal-card {
  width: min(560px, 100%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  padding: 28px;
  position: relative;
}
.inquiry-modal-card h3 {
  margin: 0 0 18px;
  font-family: var(--serif-display);
  font-size: 34px;
  line-height: 1.1;
}
.inquiry-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.inquiry-form {
  display: grid;
  gap: 10px;
}
.inquiry-form label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.inquiry-form textarea {
  resize: vertical;
  min-height: 120px;
}
.inquiry-form .btn {
  justify-self: start;
  margin-top: 8px;
}

/* ---------- IMAGE LIGHTBOX ---------- */
.image-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 15, 15, 0.9);
  z-index: 1200;
}
.image-lightbox.is-open {
  display: flex;
}
.image-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.14);
}
.no-scroll {
  overflow: hidden;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  .site-header { padding: 14px 20px; }
  .site-nav { gap: 14px; font-size: 12px; }
  .brand-mark { width: 46px; height: 46px; }
  .hero { min-height: 600px; padding: 40px 20px; }
  .sketch { opacity: 0.5; }
  .sketch-12 { width: 60vw; }
  .badges-strip ul { justify-content: flex-start; }
  .badges-strip li { width: 45%; }
  .product-image { height: 240px; }
  .product-footer { justify-content: space-between; }
  .bulk-list { text-align: left; }
}

@media (max-width: 480px) {
  .site-nav { gap: 12px; }
  .hero-logo { width: 160px; height: 160px; }
  .product-image { height: 210px; }
  .contact-actions .btn { flex: 1; }
  .inquiry-modal {
    padding: 14px;
  }
  .inquiry-modal-card {
    padding: 22px 16px;
  }
  .inquiry-modal-card h3 {
    font-size: 28px;
    margin-right: 28px;
  }
  .image-lightbox {
    padding: 14px;
  }
  .image-lightbox img {
    max-width: 96vw;
    max-height: 84vh;
  }
}
