/* ════════════════════════════════════════════════
   INNER PAGES — Velora
   ════════════════════════════════════════════════ */

/* ─── Page hero / breadcrumb ───────────────────── */
.page-hero {
  background: var(--paper-2);
  padding: 48px 0 40px;
  text-align: center;
}
.breadcrumb {
  font-size: var(--fs-sm);
  color: var(--ink-500);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--ink-700); }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb span { margin: 0 6px; color: var(--gold); }
.page-hero__title {
  font-size: var(--fs-2xl);
  color: var(--ink-900);
  margin-bottom: 8px;
}
.page-hero__sub {
  font-size: var(--fs-base);
  color: var(--ink-500);
}

/* ─── Shop layout ──────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start;
}
.shop-filters {
  position: sticky;
  top: 90px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 24px;
}
.filter-group { margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.filter-group:last-of-type { border-bottom: none; }
.filter-group__title {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 14px;
}
.filter-list { list-style: none; }
.filter-list li { margin-bottom: 10px; }
.filter-list label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--fs-sm);
  color: var(--ink-700);
  cursor: pointer;
}
.filter-list input[type="checkbox"] { accent-color: var(--gold-dark); width: 15px; height: 15px; }
.stars-inline { color: #E0A82E; letter-spacing: 1px; }
.filter-price { padding-top: 4px; }
.price-range { width: 100%; accent-color: var(--gold-dark); }
.filter-price__labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--ink-500);
  margin-top: 8px;
}
.filter-apply { width: 100%; margin-top: 6px; }

/* ─── Shop main ────────────────────────────────── */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.shop-count { font-size: var(--fs-sm); color: var(--ink-500); }
.shop-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--ink-700);
}
.shop-sort select {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  background: var(--paper);
  cursor: pointer;
}
.shop-grid { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .shop-toolbar { flex-direction: column; gap: 14px; align-items: stretch; }
}

/* ════════════════════════════════════════════════
   PRODUCT SINGLE
   ════════════════════════════════════════════════ */
.breadcrumb--page { padding: 22px 0 0; }
.product-single { padding-top: 30px; }
.product-single__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.product-gallery__main {
  background: #FBF7EE;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 16px;
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs { display: flex; gap: 12px; }
.thumb {
  width: 84px; height: 84px;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: #FBF7EE;
  cursor: pointer;
  padding: 0;
  transition: border-color var(--dur);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--gold); }

/* Info */
.product-info__cat {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.product-info__name {
  font-size: var(--fs-2xl);
  color: var(--ink-900);
  margin: 8px 0 14px;
}
.product-info__rating {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.product-info__reviews { font-size: var(--fs-sm); color: var(--ink-500); }
.product-info__price {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.price-now { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--ink-900); }
.price-was { font-size: var(--fs-lg); color: var(--ink-300); }
.price-badge {
  background: #F2D1C6;
  color: #9A4A35;
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.product-info__desc {
  font-size: var(--fs-base);
  color: var(--ink-700);
  line-height: 1.9;
  margin-bottom: 28px;
}

/* Options */
.product-option { margin-bottom: 22px; }
.product-option__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 10px;
  font-size: var(--fs-sm);
}
.product-option__choices { display: flex; gap: 10px; }
.opt-chip {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-700);
  padding: 9px 18px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all var(--dur);
}
.opt-chip:hover { border-color: var(--gold); }
.opt-chip.active { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Buy row */
.product-buy {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.qty-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  width: 42px; height: 48px;
  border: none;
  background: var(--paper-2);
  color: var(--ink-900);
  font-size: 20px;
  cursor: pointer;
  transition: background var(--dur);
}
.qty-btn:hover { background: var(--gold-soft); }
.qty-value {
  width: 50px;
  height: 48px;
  text-align: center;
  border: none;
  background: var(--paper);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--ink-900);
}
.product-add { flex: 1; height: 48px; }
.product-wish {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-size: 20px;
  color: var(--ink-700);
  cursor: pointer;
  transition: all var(--dur);
}
.product-wish:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Meta */
.product-meta { list-style: none; border-top: 1px solid var(--line); padding-top: 20px; }
.product-meta li { font-size: var(--fs-sm); color: var(--ink-700); margin-bottom: 10px; }
.product-meta strong { color: var(--ink-900); margin-left: 6px; }
.in-stock { color: #4A8A5C; font-weight: 600; }

/* Tabs */
.product-tabs { margin-top: 64px; }
.tabs-head {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}
.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--ink-500);
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--dur), border-color var(--dur);
}
.tab-btn.active { color: var(--ink-900); border-bottom-color: var(--gold); }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.4s ease; }
.tab-pane p { color: var(--ink-700); line-height: 1.9; margin-bottom: 14px; }
.tab-list { list-style: none; }
.tab-list li {
  padding-inline-start: 24px;
  position: relative;
  color: var(--ink-700);
  margin-bottom: 10px;
  line-height: 1.7;
}
.tab-list li::before { content: "✦"; position: absolute; inset-inline-start: 0; color: var(--gold); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.review-item { border-bottom: 1px solid var(--line); padding: 16px 0; }
.review-item:last-child { border-bottom: none; }
.review-item__head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.review-item__head strong { color: var(--ink-900); }
.review-item p { color: var(--ink-700); margin: 0; }

.section-related { background: var(--paper-2); }

@media (max-width: 860px) {
  .product-single__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ════════════════════════════════════════════════
   CART
   ════════════════════════════════════════════════ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 44px;
  align-items: start;
}

/* Cart items */
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item:first-child { padding-top: 0; }
.cart-item__img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #FBF7EE;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item__name { font-family: var(--font-body); font-weight: 600; color: var(--ink-900); margin-bottom: 4px; }
.cart-item__meta { font-size: var(--fs-sm); color: var(--ink-500); margin-bottom: 10px; }
.cart-item__price { font-family: var(--font-display); font-weight: 700; color: var(--gold-dark); }
.cart-item__controls { display: flex; align-items: center; gap: 18px; }
.cart-item__remove {
  background: none; border: none;
  color: var(--ink-300);
  font-size: 20px;
  cursor: pointer;
  transition: color var(--dur);
}
.cart-item__remove:hover { color: #C0584A; }

.cart-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.cart-qty button {
  width: 34px; height: 38px;
  border: none;
  background: var(--paper-2);
  color: var(--ink-900);
  font-size: 17px;
  cursor: pointer;
  transition: background var(--dur);
}
.cart-qty button:hover { background: var(--gold-soft); }
.cart-qty span {
  width: 40px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-sm);
  color: var(--ink-900);
}

/* Summary */
.cart-summary {
  position: sticky;
  top: 90px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
}
.cart-summary__title {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 20px;
}
.cart-coupon { display: flex; gap: 8px; margin-bottom: 22px; }
.cart-coupon input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  background: var(--paper);
}
.cart-coupon .btn { padding: 10px 18px; }
.cart-summary__rows { border-top: 1px solid var(--line); padding-top: 18px; margin-bottom: 22px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  color: var(--ink-700);
  margin-bottom: 12px;
}
.summary-row--discount { color: #4A8A5C; }
.summary-row--total {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--ink-900);
}
.cart-checkout { width: 100%; margin-bottom: 14px; }
.cart-continue {
  display: block;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--ink-700);
}
.cart-continue:hover { color: var(--gold-dark); }

/* Empty */
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty__icon { font-size: 60px; color: var(--gold-soft); margin-bottom: 16px; }
.cart-empty h2 { font-size: var(--fs-xl); color: var(--ink-900); margin-bottom: 10px; }
.cart-empty p { color: var(--ink-500); margin-bottom: 24px; }

@media (max-width: 860px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}
@media (max-width: 480px) {
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item__img { width: 80px; height: 80px; }
  .cart-item__controls { grid-column: 1 / -1; justify-content: space-between; }
}

/* ════════════════════════════════════════════════
   ACCOUNT — auth + dashboard
   ════════════════════════════════════════════════ */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.auth-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 34px;
}
.auth-tabs { display: flex; gap: 6px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.auth-tab {
  flex: 1;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--ink-500);
  padding: 12px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--dur), border-color var(--dur);
}
.auth-tab.active { color: var(--ink-900); border-bottom-color: var(--gold); }
.auth-form { display: none; }
.auth-form.active { display: block; animation: fadeIn 0.4s ease; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  background: var(--paper);
  color: var(--ink-900);
  transition: border-color var(--dur);
}
.field input:focus { outline: none; border-color: var(--gold); }
.field-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.remember { display: flex; align-items: center; gap: 8px; font-size: var(--fs-sm); color: var(--ink-700); cursor: pointer; }
.remember input { accent-color: var(--gold-dark); }
.forgot { font-size: var(--fs-sm); color: var(--gold-dark); }
.auth-submit { width: 100%; }

/* Dashboard */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: start; }
.dash-sidebar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.dash-user { display: flex; align-items: center; gap: 12px; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.dash-user__ava {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, var(--gold-soft) 0%, var(--gold-pale) 70%);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  flex-shrink: 0;
}
.dash-user strong { display: block; color: var(--ink-900); font-size: var(--fs-base); }
.dash-user span { font-size: var(--fs-sm); color: var(--ink-500); }
.dash-nav { display: flex; flex-direction: column; gap: 4px; }
.dash-nav__item {
  text-align: right;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--ink-700);
  padding: 11px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--dur);
}
.dash-nav__item:hover { background: var(--paper-2); }
.dash-nav__item.active { background: var(--gold-soft); color: var(--ink-900); font-weight: 600; }
.dash-logout { color: #C0584A; margin-top: 8px; }

.dash-main {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 28px;
}
.dash-panel { display: none; }
.dash-panel.active { display: block; animation: fadeIn 0.4s ease; }
.dash-panel__title { font-family: var(--font-body); font-size: var(--fs-lg); font-weight: 600; color: var(--ink-900); margin-bottom: 22px; }

/* Orders */
.order-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.order-row:last-child { border-bottom: none; }
.order-id { font-weight: 600; color: var(--ink-900); display: block; }
.order-date { font-size: var(--fs-sm); color: var(--ink-500); }
.order-status { font-size: var(--fs-xs); font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.order-status--done { background: #DCEEE0; color: #4A8A5C; }
.order-status--shipping { background: #FBEBD3; color: #B5852F; }
.order-total { font-family: var(--font-display); font-weight: 700; color: var(--ink-900); }
.order-link { font-size: var(--fs-sm); color: var(--gold-dark); }

/* Addresses */
.address-card { border: 1px solid var(--line); border-radius: 12px; padding: 20px; margin-bottom: 16px; position: relative; }
.address-tag { display: inline-block; background: var(--gold-soft); color: var(--ink-900); font-size: var(--fs-xs); padding: 3px 12px; border-radius: 20px; margin-bottom: 10px; }
.address-card p { color: var(--ink-700); line-height: 1.8; margin-bottom: 14px; }
.address-actions { display: flex; gap: 16px; }
.address-actions a { font-size: var(--fs-sm); color: var(--gold-dark); }
.address-actions .del { color: #C0584A; }
.add-address { width: 100%; }

.profile-form { max-width: 420px; }
.dash-wishlist-grid { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 860px) {
  .dash-layout { grid-template-columns: 1fr; }
  .order-row { grid-template-columns: 1fr auto; gap: 10px; }
}

/* ════════════════════════════════════════════════
   CHECKOUT
   ════════════════════════════════════════════════ */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.cstep {
  font-size: var(--fs-sm);
  color: var(--ink-300);
  font-weight: 600;
}
.cstep.active { color: var(--gold-dark); }
.cstep.done { color: var(--ink-700); }
.cstep-line { width: 40px; height: 1px; background: var(--gold-soft); }

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 44px;
  align-items: start;
}
.checkout-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  margin-bottom: 22px;
}
.checkout-block__title {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 18px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field--full { grid-column: 1 / -1; }
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  background: var(--paper);
  color: var(--ink-900);
  cursor: pointer;
}

/* Payment / shipping options */
.pay-option {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color var(--dur), background var(--dur);
}
.pay-option:last-child { margin-bottom: 0; }
.pay-option:has(input:checked) { border-color: var(--gold); background: var(--gold-pale); }
.pay-option input { accent-color: var(--gold-dark); width: 17px; height: 17px; flex-shrink: 0; }
.pay-option__body { flex: 1; }
.pay-option__body strong { display: block; color: var(--ink-900); font-size: var(--fs-sm); }
.pay-option__body span { font-size: var(--fs-xs); color: var(--ink-500); }
.pay-option__price { font-family: var(--font-display); font-weight: 700; color: var(--ink-900); }
.pay-icons { font-size: 20px; }

/* Summary */
.checkout-summary {
  position: sticky;
  top: 90px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
}
.checkout-items { margin-bottom: 18px; }
.checkout-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.checkout-item__img {
  width: 56px; height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #FBF7EE;
  flex-shrink: 0;
  position: relative;
}
.checkout-item__img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-item__qty {
  position: absolute;
  top: -6px; inset-inline-start: -6px;
  background: var(--gold-dark);
  color: #fff;
  font-size: 11px;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.checkout-item__info { flex: 1; }
.checkout-item__name { font-size: var(--fs-sm); color: var(--ink-900); font-weight: 600; }
.checkout-item__size { font-size: var(--fs-xs); color: var(--ink-500); }
.checkout-item__price { font-size: var(--fs-sm); font-weight: 600; color: var(--gold-dark); }

@media (max-width: 860px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}
@media (max-width: 520px) {
  .field-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════
   ABOUT PAGE (about.html)
   ════════════════════════════════════════════════════ */
.about-intro { position: relative; overflow: hidden; }
.about-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-7);
  align-items: center;
}
.about-intro__text h2 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--ink-900);
  margin: 10px 0 18px;
}
.about-intro__text p {
  color: var(--ink-700);
  line-height: 2;
  margin-bottom: 16px;
  font-size: var(--fs-md);
}
.about-intro__text strong { color: var(--gold-dark); font-weight: 700; }
.about-intro__media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card__ic {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--ink-900);
  margin-bottom: 10px;
}
.value-card p { color: var(--ink-500); line-height: 1.9; font-size: var(--fs-sm); }

/* Stats strip */
.about-stats {
  background: var(--ink-900);
  padding: var(--sp-8) 0;
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label { color: var(--paper-2); font-size: var(--fs-sm); letter-spacing: 0.02em; }

/* About CTA */
.about-cta__box {
  background: var(--gold-pale);
  border: 1px solid var(--gold-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.about-cta__box h2 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--ink-900);
  margin: 10px 0 14px;
}
.about-cta__box p { color: var(--ink-700); line-height: 1.9; margin-bottom: 26px; }
.about-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════
   CONTACT PAGE (contact.html)
   ════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--sp-7);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.contact-card__ic {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: 1.2rem;
}
.contact-card h3 { font-size: var(--fs-md); color: var(--ink-900); margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--ink-500); font-size: var(--fs-sm); }
.contact-card a { color: var(--gold-dark); }
.contact-card a:hover { text-decoration: underline; }
.contact-social {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 6px;
}
.contact-social a {
  flex: 1;
  text-align: center;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  padding: 10px 12px;
  font-size: var(--fs-sm);
  color: var(--ink-700);
  transition: all var(--dur);
}
.contact-social a:hover { background: var(--ink-900); color: var(--paper); border-color: var(--ink-900); }

/* Form card */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-7) var(--sp-6);
  box-shadow: var(--shadow-sm);
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--ink-900);
}
.contact-form-card__sub { color: var(--ink-500); font-size: var(--fs-sm); margin: 6px 0 26px; }
.contact-form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  background: var(--paper);
  color: var(--ink-900);
  resize: vertical;
  transition: border-color var(--dur);
}
.contact-form-card textarea:focus,
.contact-form-card select:focus { outline: none; border-color: var(--gold); }
.contact-submit { width: 100%; margin-top: 8px; }

/* Validation */
.field-error { display: block; color: #C0392B; font-size: var(--fs-xs); margin-top: 6px; min-height: 14px; }
.is-invalid { border-color: #C0392B !important; }

/* Success */
.contact-success { text-align: center; padding: var(--sp-6) 0; }
.contact-success__ic {
  display: inline-grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.contact-success h3 { font-family: var(--font-display); font-size: var(--fs-lg); color: var(--ink-900); margin-bottom: 10px; }
.contact-success p { color: var(--ink-500); margin-bottom: 22px; }

/* Responsive */
@media (max-width: 900px) {
  .about-intro__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}
