/* ============================================================
   VARNA — clean consolidated stylesheet
   Complete replacement for css/styles.css
   ============================================================ */

:root {
  --ink: #5c1b22;
  --wine: #7d2e36;
  --brass: #b9924b;
  --brass-soft: #d9be8b;
  --gold: #d6aa4f;
  --ivory: #f3ead8;
  --ivory-light: #f6efe3;
  --char: #221712;
  --muted: #5c4d43;
  --emerald: #1f4d3d;
  --line: rgba(185, 146, 75, 0.35);
  --shadow: 0 18px 34px -18px rgba(92, 27, 34, 0.35);
  --radius: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--char);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

main {
  padding-top: 100px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.15;
}

p {
  margin: 0 0 1rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--emerald);
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-heading,
.catalog-head > div:first-child {
  position: relative;
}

section + section::before {
  content: "";
  display: block;
  grid-column: 1 / -1;
  width: min(1180px, 88vw);
  height: 10px;
  margin: 0 auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 10'%3E%3Cpath d='M0 5 Q15 0 30 5 T60 5 T90 5 T120 5 T150 5 T180 5 T210 5 T240 5 T270 5 T300 5 T330 5 T360 5 T390 5 T420 5 T450 5 T480 5 T510 5 T540 5 T570 5 T600 5' stroke='%23B9924B' stroke-width='1' fill='none' opacity='0.45'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: auto 10px;
}

/* Buttons */

.button {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.button-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
}

.button-primary:hover {
  border-color: #f0c76a;
  background: #f0c76a;
}

.button-quiet {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold);
}

.button-quiet:hover {
  border-color: var(--brass-soft);
  color: var(--brass-soft);
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 104px;
  min-height: 100px;
  padding: 0.55rem 5vw;
  border-bottom: 1px solid #d8c3a5;
  background: rgba(246, 239, 227, 0.96);
  backdrop-filter: blur(7px);
}

.brand-mark {
  display: flex;
  flex: 0 0 77.052px;
  align-items: center;
  width: 77.052px;
  height: 84px;
  aspect-ratio: 942 / 1027;
}

.brand-mark img {
  width: 77.052px;
  height: 84px;
  aspect-ratio: 942 / 1027;
}

.brand-mark > span {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.site-nav a {
  color: #11100d;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.site-nav a:hover {
  color: var(--wine);
}

.nav-reserve {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--brass);
  border-radius: var(--radius);
}

/* Hero */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--ivory);
}

.hero-media,
.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1672 / 941;
}

.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 6vw;
  width: min(430px, 38vw);
  padding: 2.5rem;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(31, 18, 18, 0.9) 0%,
    rgba(31, 18, 18, 0.66) 72%,
    rgba(31, 18, 18, 0) 100%
  );
}

.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ivory-light);
  -webkit-text-fill-color: var(--ivory-light);
}

.hero-copy .eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--brass);
}

.hero-copy h1 {
  max-width: 11ch;
  color: #c6a36a;
  -webkit-text-fill-color: #c6a36a;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.hero-copy > p:not(.eyebrow) {
  min-height: 5.05rem;
  max-width: 38ch;
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  font-size: 1.02rem;
  opacity: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-rail {
  position: absolute;
  z-index: 2;
  bottom: 1.6rem;
  left: 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 2.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-rail span {
  color: #8d1f2d;
  -webkit-text-fill-color: #8d1f2d;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Intro */

.intro-band {
  padding: 4rem 6vw;
  background: var(--ivory);
  text-align: center;
}

.intro-band p {
  max-width: 52ch;
  margin: 0 auto;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-style: italic;
}

/* Craft story */

.craft-story {
  padding: 6rem 6vw;
  background: #fff;
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 4rem;
  gap: 3rem;
}

.story-row-reverse .story-image {
  order: 2;
}

.story-row-reverse .story-copy {
  order: 1;
}

.story-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-kicker {
  margin-bottom: 0.4rem;
  color: var(--emerald);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-copy h3 {
  font-size: 1.5rem;
}

.story-copy p:last-child {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Artisan impact */

.artisan-impact {
  padding: 6rem 6vw;
  background: var(--wine);
  color: var(--ivory);
}

.impact-copy {
  max-width: 720px;
  margin: 0 auto;
}

.impact-copy .eyebrow {
  color: var(--brass-soft);
}

.impact-copy h2 {
  color: var(--brass-soft);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.impact-copy p {
  color: rgba(243, 234, 216, 0.86);
  font-size: 0.98rem;
}

/* Catalog */

.catalog {
  padding: 5rem 4vw;
  background: #fff;
}

.catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto 1.4rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.catalog-tools {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ivory);
}

.catalog-note {
  max-width: 56ch;
  margin: 0 auto 2.4rem;
  color: #7a6b5f;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-style: italic;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  gap: 3.4rem 3rem;
}

.product-card {
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 195, 165, 0.85);
  border-radius: var(--radius);
  background: var(--ivory-light);
  box-shadow: none;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.product-image-button {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  padding: 18px 24px;
  background: var(--ivory-light);
}

.product-main-image {
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
}

.product-card:hover .product-main-image {
  transform: scale(1.03);
}

.product-content {
  padding: 0.8rem 1.35rem 1.15rem;
  background: var(--ivory-light);
}

.product-collection {
  color: var(--emerald);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-name {
  margin-top: 0.35rem;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.product-name a {
  color: var(--ink);
}

.product-tagline {
  margin-top: 0.35rem;
  color: #6b5a4a;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.4;
}

.product-price {
  margin-top: 0.75rem;
  color: #6b1d28;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.product-description,
.product-meta {
  display: none;
}

.product-button {
  width: 100%;
  margin-top: 0.8rem;
  text-align: center;
}

.product-card-actions { display: grid; gap: 0.55rem; }
.product-cart-button { width: 100%; }

/* Shopping cart */
.cart-trigger { border: 0; background: transparent; color: #11100d; cursor: pointer; font: inherit; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; white-space: nowrap; }
.cart-count { display: inline-grid; place-items: center; min-width: 1.25rem; height: 1.25rem; margin-left: 0.25rem; border-radius: 50%; background: var(--ink); color: var(--ivory-light); font-size: 0.66rem; }
.cart-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(34,23,18,.5); }
.cart-drawer { position: fixed; z-index: 91; top: 0; right: 0; display: flex; flex-direction: column; width: min(430px, 100%); height: 100dvh; padding: 1.5rem; transform: translateX(100%); background: var(--ivory-light); box-shadow: -18px 0 45px rgba(34,23,18,.2); transition: transform .25s ease; }
.cart-drawer[aria-hidden="false"] { transform: translateX(0); }
.cart-open { overflow: hidden; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.cart-header h2 { margin: 0; }
.cart-close { border: 0; background: transparent; color: var(--ink); cursor: pointer; font-size: 2rem; line-height: 1; }
.cart-items { flex: 1; overflow: auto; padding: 1rem 0; }
.cart-item { display: grid; grid-template-columns: 82px 1fr auto; gap: .85rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 82px; height: 96px; background: var(--ivory); object-fit: contain; }
.cart-item h3 { margin: 0 0 .2rem; font-size: 1.25rem; }
.cart-item p { margin: 0 0 .35rem; color: #46372f; font-size: .78rem; }
.cart-item button { align-self: start; border: 0; background: transparent; color: var(--wine); cursor: pointer; font-size: .72rem; text-decoration: underline; }
.cart-footer { padding-top: 1rem; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; color: var(--char); font-size: 1.05rem; }
.cart-footer > p { margin: .55rem 0; color: #46372f; font-size: .76rem; }
.cart-checkout { width: 100%; margin-top: .5rem; }
.cart-error { color: var(--wine) !important; }
.cart-empty { color: #46372f; }
.checkout-result { width: min(680px, 90vw); margin: 0 auto; padding: 18vh 0 4rem; text-align: center; }
.checkout-result h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.checkout-result p:not(.eyebrow) { color: #46372f; font-weight: 400; }

/* Occasion band */

.occasion-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--ink);
  color: var(--ivory);
}

.occasion-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
}

.occasion-band > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 6vw;
}

.occasion-band .eyebrow {
  color: var(--brass-soft);
}

.occasion-band h2 {
  max-width: 14ch;
  color: var(--brass-soft);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.occasion-band p {
  color: rgba(243, 234, 216, 0.86);
  font-size: 1.02rem;
}

/* About */

.about {
  padding: 6rem 6vw;
  background: var(--ivory);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  gap: 2rem;
}

.values-grid article h3 {
  font-size: 1.3rem;
}

.values-grid article p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* FAQ */

.faq {
  padding: 6rem 6vw;
  background: #fff;
}

.care-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  gap: 3rem;
}

.care-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory-light);
}

.care-image img {
  width: 145px;
  height: auto;
  object-fit: contain;
}

.faq-list details {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--brass);
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list p {
  max-width: 58ch;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Contact */

.contact {
  padding: 6rem 6vw;
  background: linear-gradient(180deg, var(--ink), var(--wine));
  color: var(--ivory);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  max-width: 1180px;
  margin: 0 auto;
  gap: 4rem;
}

.contact-panel .eyebrow {
  color: var(--brass-soft);
}

.contact-panel h2 {
  color: var(--brass-soft);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.contact-panel > div:first-child p {
  max-width: 36ch;
  color: rgba(243, 234, 216, 0.8);
  font-size: 0.95rem;
}

.reservation-supporting-copy {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--brass-soft);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form .full,
.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form label em {
  margin-left: 0.3rem;
  font-style: italic;
  letter-spacing: 0;
  opacity: 0.6;
  text-transform: none;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(243, 234, 216, 0.28);
  border-radius: var(--radius);
  background: rgba(243, 234, 216, 0.06);
  color: var(--ivory);
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(243, 234, 216, 0.45);
}

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

.contact-form select option {
  background: var(--ivory-light);
  color: var(--char);
}

.reservation-form-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.reservation-note {
  margin: 0;
  color: rgba(243, 234, 216, 0.58);
  font-size: 0.78rem;
}

.form-success-message {
  display: none;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
  color: #d4af37;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-success-message.is-visible {
  display: block;
}

/* Footer */

.site-footer {
  padding: 2.6rem 6vw;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(243, 234, 216, 0.58);
  font-size: 0.82rem;
  text-align: center;
}

/* Product detail pages */

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
  padding: 7.5rem 5vw 3rem;
  gap: 3.5rem;
}

.product-gallery {
  display: grid;
  align-items: start;
  padding: 1.5rem 0;
  gap: 1.2rem;
}

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

.product-gallery:not(.has-model) {
  max-width: 760px;
}

.product-scene {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
}

.product-gallery.has-model .product-scene {
  padding: 0;
}

.product-scene img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  object-position: center;
}

.product-scene figcaption {
  margin: auto -1.2rem -1.2rem;
  padding: 0.55rem 0.8rem;
  background: rgba(243, 234, 216, 0.72);
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-gallery.has-model .product-scene figcaption {
  margin: auto 0 0;
}

.product-summary {
  position: sticky;
  top: 6rem;
  padding-top: 2.5rem;
  font-family: "Jost", sans-serif;
}

.product-summary h1 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.back-link {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--brass);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-design-name {
  margin: 0.35rem 0 0.55rem;
  color: #46372f;
  font-family: "Jost", sans-serif;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.product-summary-tagline {
  margin-bottom: 0.8rem;
  color: #46372f;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.product-summary > p:not(.eyebrow):not(.product-design-name):not(.product-summary-tagline):not(.product-summary-price):not(.product-stock-note) {
  color: var(--char);
  font-weight: 400;
}

.product-summary-price {
  margin-bottom: 1rem;
  color: var(--brass);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 1.2rem 0;
  border-top: 1px solid var(--line);
  gap: 0 1.75rem;
}

.product-specs > div {
  padding: 1rem 0.8rem 1rem 0;
  border-bottom: 1px solid var(--line);
}

.product-specs dt {
  margin-bottom: 0.3rem;
  color: var(--emerald);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 0;
  color: var(--char);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.55;
}

.dimension-note {
  color: #46372f;
  font-style: normal;
  opacity: 1;
}

.product-inquire {
  display: inline-block;
  margin-top: 0.6rem;
}

.product-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.product-buy-now {
  margin-top: 0;
}

.product-stock-note {
  margin: 0.6rem 0 0;
  color: var(--wine);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.product-trust-list {
  margin: 0.9rem 0 0;
  padding: 0.9rem 0 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: #46372f;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.6;
}

.product-trust-list li {
  position: relative;
  padding-left: 1.1rem;
}

.product-trust-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--brass);
}

.product-description-panel {
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.product-description-panel summary {
  color: var(--brass);
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-description-panel p {
  margin-top: 0.8rem;
  color: var(--char);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
}

/* Product descriptions are rendered directly after the trust list. */
.product-trust-list ~ p {
  color: var(--char);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
}

.product-trust-list + p {
  margin-top: 1.75rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.product-editorial {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.2rem 5vw 0.5rem;
}

.product-editorial h2 {
  font-size: clamp(1.5rem, 2.3vw, 2rem);
}

.product-editorial p {
  max-width: 70ch;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-care-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.5rem 5vw 2rem;
  gap: 1.2rem;
}

.product-care-strip article {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.product-care-strip h3 {
  font-size: 1.1rem;
}

.product-care-strip p {
  color: var(--muted);
  font-size: 0.88rem;
}

.related-products {
  padding: 3rem 5vw;
  background: #fff;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1500px;
  margin: 0 auto;
  gap: 1.2rem;
}

.related-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
}

.related-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 740px;
}

.related-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s ease;
}

.related-card:hover {
  transform: translateY(-3px);
}

.related-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
}

.related-card span {
  display: block;
  padding: 0.7rem 0.9rem;
  color: var(--ink);
  font-size: 0.9rem;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  background: rgba(34, 23, 18, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-dialog {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 900px;
  max-height: 88vh;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ivory);
}

.lightbox-image-wrap {
  background: var(--ink);
}

.lightbox-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-copy {
  padding: 2rem;
  overflow-y: auto;
}

.lightbox-copy h2 {
  font-size: 1.6rem;
}

.lightbox-tagline {
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

.lightbox-description {
  color: var(--muted);
  font-size: 0.88rem;
  white-space: pre-line;
}

.lightbox-material {
  margin-top: 1rem;
  color: var(--brass);
  font-size: 0.85rem;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: none;
  color: var(--ivory);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox-enquire {
  display: inline-block;
  margin-top: 1.2rem;
}

/* Tablet */

@media (max-width: 960px) {
  main {
    padding-top: 92px;
  }

  .site-header {
    height: 92px;
    min-height: 92px;
    padding: 0.45rem 5vw;
  }

  .brand-mark {
    flex-basis: 66.042px;
    width: 66.042px;
    height: 72px;
  }

  .brand-mark img {
    width: 66.042px;
    height: 72px;
  }

  .site-nav {
    gap: 1.2rem;
  }

  .hero-copy {
    width: min(420px, 48vw);
    padding: 2rem;
  }

  .story-row,
  .story-row-reverse {
    grid-template-columns: 1fr;
  }

  .story-row-reverse .story-image,
  .story-row-reverse .story-copy {
    order: initial;
  }

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

  .occasion-band {
    grid-template-columns: 1fr;
  }

  .occasion-band img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

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

  .care-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .product-detail-hero {
    grid-template-columns: 1fr;
    padding: 5rem 5vw 1rem;
  }

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

  .product-summary {
    position: static;
  }

  .product-specs,
  .product-care-strip {
    grid-template-columns: 1fr;
  }

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

  .lightbox-dialog {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .product-design-name {
    margin: 0.25rem 0 0.6rem;
    font-size: 1rem;
  }

  .product-summary-tagline {
    margin-bottom: 0.75rem;
    font-size: 0.78rem;
  }

  .product-summary > p:not(.eyebrow):not(.product-design-name):not(.product-summary-tagline):not(.product-summary-price) {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .product-stock-note,
  .dimension-note {
    font-size: 0.82rem;
    font-style: normal;
    line-height: 1.5;
  }

  html {
    font-size: 16px;
  }

  main {
    padding-top: 88px;
  }

  .site-header {
    height: 88px;
    min-height: 88px;
    padding: 0.5rem 1rem;
  }

  .brand-mark {
    flex-basis: 50px;
    width: 50px;
    height: 54.5px;
  }

  .brand-mark img {
    display: block;
    width: 50px;
    height: 54.5px;
  }

  .site-nav {
    gap: 0.4rem;
  }

  .site-nav a,
  .cart-trigger {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .nav-reserve {
    padding: 0.4rem 0.65rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-media {
    order: 1;
    aspect-ratio: 16 / 9;
  }

  .hero-media picture,
  .hero-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-media img {
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero-copy {
    position: relative;
    order: 2;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    padding: 2rem 1.25rem;
    transform: none;
    background: linear-gradient(180deg, #2c1c18 0%, var(--ink) 100%);
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .hero-copy > p:not(.eyebrow) {
    min-height: 4.95rem;
    max-width: 34ch;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-rail {
    position: relative;
    order: 3;
    bottom: auto;
    left: auto;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    border-top: 0;
    background: var(--ivory);
    gap: 0.6rem;
  }

  .hero-rail span {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .intro-band,
  .craft-story,
  .artisan-impact,
  .about,
  .faq,
  .contact {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .catalog {
    padding: 4rem 0;
  }

  .catalog-head,
  .catalog-note {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .catalog-tools {
    gap: 0.45rem;
  }

  .filter-chip {
    padding: 0.45rem 0.75rem;
    font-size: 0.67rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: 0 0.75rem;
    gap: 1rem;
  }

  .product-image-button {
    padding: 10px;
    aspect-ratio: 1 / 1;
  }

  .product-content {
    padding: 0.75rem;
  }

  .product-name {
    font-size: 1.25rem;
  }

  .product-tagline {
    font-size: 0.88rem;
  }

  .product-price {
    font-size: 0.95rem;
  }

  .product-button {
    padding: 0.65rem 0.4rem;
    font-size: 0.68rem;
  }

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

  .occasion-band > div {
    padding: 3rem 1.25rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .site-nav a:not(.nav-reserve) {
    display: none;
  }

  .hero-copy {
    padding: 1.75rem 1rem;
  }

  .hero-rail {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .products-grid {
    gap: 0.8rem;
    padding: 0 0.6rem;
  }

  .product-name {
    font-size: 1.15rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
/* Show all navigation links on mobile */
@media (max-width: 768px) {
    .site-header {
        padding: 0.75rem 1rem !important;
        gap: 0.5rem !important;
    }

    .site-nav {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 0.55rem !important;
    }

    .site-nav a,
    .site-nav a:not(.nav-reserve) {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.64rem !important;
        letter-spacing: 0.08em !important;
        white-space: nowrap !important;
    }

    .site-nav .nav-reserve {
        padding: 0.55rem 0.7rem !important;
    }

    .brand-mark img {
        display: block !important;
        width: 50px !important;
        height: 54.5px !important;
    }
}
/* =========================================
   WHY VARNA
========================================= */

.why-varna {
  padding: 100px 24px;
  background: #f3efe5;
  color: #25241f;
}

.why-varna-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.why-varna-heading {
  max-width: 760px;
  margin-bottom: 58px;
}

.why-varna-heading .section-kicker {
  display: block;
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #716d57;
}

.why-varna-heading h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.why-varna-heading > p {
  margin: 0;
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5e5b50;
}

.why-varna-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(37, 36, 31, 0.18);
  border-left: 1px solid rgba(37, 36, 31, 0.18);
}

.why-varna-item {
  min-height: 245px;
  padding: 36px 32px;
  border-right: 1px solid rgba(37, 36, 31, 0.18);
  border-bottom: 1px solid rgba(37, 36, 31, 0.18);
}

.why-varna-number {
  display: block;
  margin-bottom: 42px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: #8a8469;
}

.why-varna-item h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
}

.why-varna-item p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #676357;
}

.why-varna-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 44px;
}

.why-varna-footer p {
  max-width: 650px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.45;
}

.why-varna-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 50px;
  padding: 13px 25px;
  border: 1px solid #25241f;
  color: #25241f;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.why-varna-button:hover {
  background: #25241f;
  color: #f3efe5;
}

@media (max-width: 900px) {
  .why-varna {
    padding: 80px 22px;
  }

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

@media (max-width: 600px) {
  .why-varna {
    padding: 65px 18px;
  }

  .why-varna-heading {
    margin-bottom: 38px;
  }

  .why-varna-heading h2 {
    font-size: 2.35rem;
  }

  .why-varna-grid {
    grid-template-columns: 1fr;
  }

  .why-varna-item {
    min-height: auto;
    padding: 30px 24px;
  }

  .why-varna-number {
    margin-bottom: 26px;
  }

  .why-varna-footer {
    display: block;
    padding-top: 36px;
  }

  .why-varna-button {
    margin-top: 26px;
    width: 100%;
  }
}
/* PRODUCT SEARCH */

.product-search-wrap {
  width: 100%;
  margin-bottom: 24px;
}

.product-search-wrap label {
  display: block;
  margin-bottom: 9px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #716d57;
}

.product-search-wrap input {
  width: min(520px, 100%);
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid rgba(37, 36, 31, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.45);
  color: #25241f;
  font: inherit;
  font-size: 1rem;
  outline: none;
}

.product-search-wrap input:focus {
  border-color: #6d1f2b;
  background: #fffdf8;
}

.product-search-wrap input::placeholder {
  color: #8a867c;
}
/* WHY VARNA EMPHASIS */

.why-varna {
  padding-top: 60px;
}

.why-varna-heading .section-kicker {
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #6d1f2b;
}
/* Merchant policy center */
.policy-page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 80px;
}

.policy-intro {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(82, 56, 42, 0.2);
}

.policy-intro h1 {
  margin: 8px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
}

.policy-section {
  padding: 34px 0;
  border-bottom: 1px solid rgba(82, 56, 42, 0.14);
}

.policy-section h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
}

.policy-section p,
.policy-intro p {
  max-width: 76ch;
  line-height: 1.75;
}

.policy-page a,
.merchant-policy-links a {
  color: inherit;
  text-underline-offset: 3px;
}

.merchant-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

@media (max-width: 640px) {
  .policy-page {
    width: min(100% - 28px, 920px);
    padding-top: 120px;
  }
}
