@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Lora:ital,wght@0,400;0,500;1,400;1,500;1,600&family=Jost:wght@300;400;500&display=swap');

:root {
  --white: #ffffff;
  --snow: #fdfcfb;
  --blush: #faf4f0;
  --blush-mid: #f3e8e1;
  --blush-deep: #e8d4c8;
  --rose: #b07060;
  --rose-dark: #8a5040;
  --rose-pale: rgba(176, 112, 96, 0.1);
  --gold: #c9a96e;
  --gold-pale: rgba(201, 169, 110, 0.15);
  --ink: #1c1410;
  --text: #5a4a42;
  --muted: #9a867e;
  --line: #e0d0c8;
  --line-light: #ede0d8;
  --dark: #12100e;
  --shadow-xs: 0 2px 12px rgba(28, 20, 16, 0.06);
  --shadow-sm: 0 6px 24px rgba(28, 20, 16, 0.08);
  --shadow-md: 0 16px 48px rgba(28, 20, 16, 0.12);
  --shadow-float: 0 32px 80px rgba(28, 20, 16, 0.14);
  --radius-xs: 3px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 40px;
  --radius-full: 999px;
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.base-html {
  scroll-behavior: smooth;
}

.base-body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  background: var(--snow);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.main-shell {
  display: block;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: 100px 0;
}

/* ─── NOTICE ─── */
.notice {
  background: var(--blush-mid);
  border-bottom: 1px solid var(--line);
  padding: 10px 5%;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 252, 251, 0.95);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-xs);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-main {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
}

.logo-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--rose);
  margin-top: 1px;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 44px;
  align-items: center;
}

.site-nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 400;
  transition: color var(--transition);
  font-family: 'Jost', sans-serif;
  position: relative;
}

.site-nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}

.site-nav-link:hover {
  color: var(--rose);
}

.site-nav-link:hover::after {
  transform: scaleX(1);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 13px 30px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Jost', sans-serif;
  border-radius: var(--radius-full);
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(176, 112, 96, 0.35);
}

.btn-outline {
  color: var(--rose);
  border-color: var(--rose);
  background: transparent;
}

.btn-outline:hover {
  background: var(--rose-pale);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #e0be84);
  color: var(--white);
  border-color: transparent;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 169, 110, 0.4);
}

.btn-dark {
  background: var(--ink);
  color: var(--blush);
  border-color: var(--ink);
}

.btn-dark:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}

.hero-image-side {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}

.hero-image-side:hover .hero-img {
  transform: scale(1.04);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--snow) 100%);
  pointer-events: none;
}

.hero-content-side {
  padding: 80px 56px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-ornament {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--rose), transparent);
  margin-bottom: 28px;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}

.hero-subtitle {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--rose);
  margin: 0 0 24px;
  font-weight: 400;
  line-height: 1.4;
}

.hero-desc {
  font-size: 15px;
  color: var(--text);
  margin: 0 0 40px;
  max-width: 480px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text);
  background: var(--white);
  font-weight: 400;
}

.pill-rose {
  border-color: rgba(176, 112, 96, 0.3);
  color: var(--rose);
  background: var(--rose-pale);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-deco {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  pointer-events: none;
  opacity: 0.5;
}

.hero-deco-2 {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--blush-deep);
  pointer-events: none;
  opacity: 0.6;
}

/* ─── DIVIDER ORNAMENT ─── */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line));
}

.ornament-line-rev {
  background: linear-gradient(to left, transparent, var(--line));
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  border: 1px solid var(--rose);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── SECTION LABELS ─── */
.section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.section-label-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-label-text {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.section-label-rose {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

/* ─── TYPOGRAPHY ─── */
.h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
}

.h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.03em;
  margin: 0 0 16px;
}

.h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
  margin: 0 0 12px;
}

.kicker {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin: 0 0 14px;
}

.text {
  font-size: 15px;
  color: var(--text);
  margin: 0;
  font-weight: 300;
  line-height: 1.8;
}

.text-lg {
  font-size: 17px;
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}

/* ─── FEATURES ─── */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.feature-item {
  padding: 40px 36px;
  position: relative;
  text-align: center;
  border: 1px solid var(--line-light);
  margin: -1px 0 0 -1px;
  transition: background var(--transition);
}

.feature-item:hover {
  background: var(--white);
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--blush);
  transition: all var(--transition);
}

.feature-item:hover .feature-icon-wrap {
  border-color: var(--rose);
  background: var(--rose-pale);
}

.feature-icon {
  font-size: 20px;
  line-height: 1;
}

.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
  color: var(--ink);
}

.feature-text {
  font-size: 14px;
  color: var(--text);
  margin: 0;
  line-height: 1.75;
  font-weight: 300;
}

/* ─── GALLERY ─── */
.gallery-asymmetric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 16px;
  margin-top: 56px;
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--blush-mid);
}

.gallery-cell-tall {
  grid-row: 1 / 3;
}

.gallery-cell-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.gallery-cell:hover .gallery-cell-img {
  transform: scale(1.06);
}

.gallery-cell-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(253, 252, 251, 0.92);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--blush-mid);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(176, 112, 96, 0.07) 0%, transparent 100%),
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 100%);
  pointer-events: none;
}

.cta-strip-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  color: var(--ink);
  margin: 0 auto 12px;
  max-width: 680px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.cta-strip-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  margin: 0 auto 36px;
  max-width: 520px;
}

.cta-strip-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── REVIEW / ARTICLE ─── */
.article-outer {
  max-width: 780px;
  margin: 0 auto;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 64px;
  box-shadow: var(--shadow-sm);
}

.article-tag-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.article-tag {
  border-radius: var(--radius-full);
  padding: 5px 16px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--rose-pale);
  color: var(--rose);
  border: 1px solid rgba(176, 112, 96, 0.25);
  font-weight: 500;
}

.article-tag-line {
  flex: 1;
  height: 1px;
  background: var(--line-light);
}

.article-h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin: 0 0 20px;
  line-height: 1.12;
  color: var(--ink);
}

.article-lead {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--text);
  margin: 0 0 40px;
  line-height: 1.6;
  border-left: 2px solid var(--rose);
  padding-left: 20px;
}

.article-divider {
  border: 0;
  border-top: 1px solid var(--line-light);
  margin: 36px 0;
}

.article-h2 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-h2::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--rose);
  display: inline-block;
  flex-shrink: 0;
}

.article-p {
  font-size: 15.5px;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.82;
  font-weight: 300;
}

.article-ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.article-li {
  font-size: 15px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.75;
  font-weight: 300;
}

.article-li::before {
  content: '◇';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 4px;
}

.verdict-panel {
  margin-top: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-mid) 100%);
  border: 1px solid var(--line);
  padding: 36px 40px;
}

.verdict-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  font-weight: 500;
}

.verdict-items {
  display: grid;
  gap: 10px;
}

.verdict-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
}

.verdict-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--rose-pale);
  border: 1px solid rgba(176, 112, 96, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
  color: var(--rose);
  margin-top: 1px;
}

.review-cta-wrap {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-sm);
}

.contact-form-title {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.contact-form-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 36px;
  font-weight: 300;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.form-control {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--snow);
  color: var(--ink);
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(176, 112, 96, 0.1);
}

.contact-info-wrap {
  display: grid;
  gap: 20px;
}

.contact-info-header {
  background: var(--blush-mid);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 24px;
  color: var(--ink);
}

.contact-info-rows {
  display: grid;
  gap: 0;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
  gap: 8px;
}

.contact-info-row:last-child {
  border-bottom: 0;
}

.contact-info-lbl {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-top: 2px;
}

.contact-info-val {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  font-weight: 300;
}

.contact-mail {
  color: var(--rose);
  text-decoration: none;
  font-weight: 500;
}

/* ─── ORDER PAGE ─── */
.order-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.order-main-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blush-mid);
  aspect-ratio: 3/2;
  box-shadow: var(--shadow-md);
}

.base-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.order-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.order-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.order-thumb.active {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(176, 112, 96, 0.15);
}

.order-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.price-panel {
  position: sticky;
  top: 96px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}

.price-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--rose), var(--gold));
}

.price-brand-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 8px;
}

.price-product-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin: 0 0 24px;
  line-height: 1.25;
}

.price-divider {
  height: 1px;
  background: var(--line-light);
  margin: 20px 0;
}

.price-label-small {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 6px;
}

.price-target {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--rose);
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}

.price-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 20px;
  font-weight: 300;
}

.stock-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-full);
  background: rgba(120, 180, 140, 0.1);
  border: 1px solid rgba(120, 180, 140, 0.3);
  padding: 8px 16px;
  margin-bottom: 20px;
  width: fit-content;
}

.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #78b48c;
  flex-shrink: 0;
}

.stock-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a9470;
  font-weight: 500;
}

.spec-table {
  margin: 24px 0 0;
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-light);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-key {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.spec-val {
  font-size: 13px;
  color: var(--text);
  text-align: right;
  max-width: 200px;
  font-weight: 300;
}

.order-source-section {
  margin-top: 48px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 44px;
  background: var(--blush);
}

.order-source-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 28px;
}

.order-source-item-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.order-source-item-text {
  font-size: 14px;
  color: var(--text);
  margin: 0;
  line-height: 1.75;
  font-weight: 300;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
  margin-top: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

.footer-logo-main {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--white);
  display: block;
}

.footer-logo-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 11px;
  color: var(--rose);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 2px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
  line-height: 1.8;
  font-weight: 300;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 500;
  margin: 0 0 20px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
  font-weight: 300;
  transition: color var(--transition);
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.24);
  letter-spacing: 0.06em;
}

/* ─── COOKIE ─── */
.cookie-consent {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 2000;
  max-width: 460px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: none;
  box-shadow: var(--shadow-float);
}

.cookie-consent.show {
  display: block;
}

.cookie-text {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 300;
}

.cookie-text-link {
  color: var(--rose);
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 11px;
  background: transparent;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
}

.cookie-accept {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--rose-dark);
}

/* ─── PAGE LOADER ─── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--snow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-loader-brand {
  font-family: 'Cinzel', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-loader-brand-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--rose);
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: -14px;
}

.page-loader-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  border-top-color: var(--rose);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── LEGAL ─── */
.legal-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 64px;
  box-shadow: var(--shadow-sm);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-side {
    height: 55vw;
    min-height: 360px;
  }

  .hero-img-overlay {
    background: linear-gradient(to top, var(--snow) 0%, transparent 40%);
  }

  .hero-content-side {
    padding: 56px 48px;
  }

  .features-layout {
    grid-template-columns: 1fr;
  }

  .gallery-asymmetric {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .gallery-cell-tall {
    grid-row: auto;
    height: 340px;
  }

  .gallery-cell:not(.gallery-cell-tall) {
    height: 260px;
  }

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

  .price-panel {
    position: static;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    min-height: auto;
    padding: 16px 0;
    gap: 14px;
  }

  .site-nav-list {
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content-side {
    padding: 40px 24px;
  }

  .contact-form-wrap {
    padding: 36px 28px;
  }

  .article-card {
    padding: 36px 28px;
  }

  .legal-card {
    padding: 36px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .order-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .order-source-grid {
    grid-template-columns: 1fr;
  }
}
