@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #0A0A0F;
  --ink2: #12121A;
  --ink3: #1C1C28;
  --ember: #FF4500;
  --ember2: #FF6B35;
  --gold: #D4A843;
  --silver: #888899;
  --mist: #F4F2EF;
  --fog: #E8E5E0;
  --pure: #FFFFFF;
  --green-ok: #2ECC71;
  --r: 20px;
  --r-sm: 12px;
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.07), 0 0 0 1px rgba(0, 0, 0, 0.04);
  --shadow-lift: 0 20px 60px rgba(0, 0, 0, 0.14), 0 4px 20px rgba(0, 0, 0, 0.06);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--mist);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1
}

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

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

button {
  font-family: 'Outfit', sans-serif;
  cursor: pointer
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--mist)
}

::-webkit-scrollbar-thumb {
  background: var(--ember);
  border-radius: 3px
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  gap: 2rem;
  /* justify-content: space-between */
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--pure);
  letter-spacing: -0.5px;
  white-space: nowrap
}

.navbar-brand em {
  font-style: italic;
  color: var(--ember)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none
}

.nav-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pure);
  background: rgba(255, 255, 255, 0.08)
}

.nav-dropdown {
  position: relative
}

.nav-dropdown>a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.6rem
}

.drop-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--ink2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-sm);
  min-width: 200px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5)
}

.nav-dropdown:hover .drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.drop-panel a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.15s
}

.drop-panel a:hover {
  color: var(--pure);
  background: rgba(255, 255, 255, 0.06)
}

.nav-search {
  position: relative;
  display: flex;
  align-items: center
}

.nav-search input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.45rem 1rem 0.45rem 2.4rem;
  color: var(--pure);
  font-size: 0.82rem;
  width: 200px;
  outline: none;
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.3)
}

.nav-search input:focus {
  width: 260px;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--ember)
}

.nav-search .search-icon {
  position: absolute;
  left: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  pointer-events: none
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--ink2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  max-height: 320px;
  overflow-y: auto;
  z-index: 9999;
  display: none
}

.search-results-dropdown.show {
  display: block
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04)
}

.search-result-item:last-child {
  border-bottom: none
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.05)
}

.search-result-item img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0
}

.search-result-item .info h6 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pure);
  font-family: 'Outfit', sans-serif
}

.search-result-item .info span {
  font-size: 0.72rem;
  color: var(--ember)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: absolute;
  right: 20px;
}

.nav-icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s
}

.nav-icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--pure);
  border-color: rgba(255, 255, 255, 0.2)
}

.badge-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--ember);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--ink)
}

.badge-dot.show {
  display: flex
}

.cart-wrapper {
  position: relative
}

.cart-preview {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--ink2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  width: 320px;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.97);
  transition: all 0.25s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 9999
}

.cart-wrapper:hover .cart-preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1)
}

.cart-preview-hdr {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 0.5rem
}

.cart-preview-items {
  max-height: 220px;
  overflow-y: auto
}

.cp-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04)
}

.cp-item:last-child {
  border-bottom: none
}

.cp-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px
}

.cp-item .ci {
  flex: 1
}

.cp-item .ci h6 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pure);
  font-family: 'Outfit', sans-serif;
  line-height: 1.3
}

.cp-item .ci span {
  font-size: 0.72rem;
  color: var(--ember)
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6)
}

.cart-total-row strong {
  color: var(--pure);
  font-size: 1rem
}

.cart-total-row .total-price {
  color: var(--ember);
  font-weight: 700;
  font-size: 1.05rem
}

.cp-checkout {
  width: 100%;
  padding: 0.65rem;
  background: var(--ember);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem
}

.cp-checkout:hover {
  background: var(--ember2)
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  padding: 5rem 0 0;
  margin-top: 6rem
}

.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem
}

.footer-brand-col .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--pure);
  margin-bottom: 1rem
}

.footer-brand-col .brand em {
  font-style: italic;
  color: var(--ember)
}

.footer-brand-col p {
  font-size: 0.83rem;
  line-height: 1.7;
  max-width: 280px
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem
}

.fsoc {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s
}

.fsoc:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.25rem
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem
}

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s
}

.footer-links a:hover {
  color: var(--pure)
}

.footer-sub-input {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem
}

.footer-sub-input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem;
  color: var(--pure);
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.2s
}

.footer-sub-input input::placeholder {
  color: rgba(255, 255, 255, 0.25)
}

.footer-sub-input input:focus {
  border-color: var(--ember)
}

.footer-sub-input button {
  background: var(--ember);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap
}

.footer-sub-input button:hover {
  background: var(--ember2)
}

.footer-unsub-link {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 0.6rem;
  display: block;
  text-decoration: underline;
  transition: color 0.2s
}

.footer-unsub-link:hover {
  color: rgba(255, 255, 255, 0.5)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4rem;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6)
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s
}

.footer-bottom a:hover {
  color: var(--ember)
}

/* ─── PRODUCT CARD ─── */
.product-card {
  position: relative;
  background: var(--pure);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
  box-shadow: var(--shadow-card)
}

.product-card:hover {
  transform: translateY(-8px) rotate(0.3deg);
  box-shadow: var(--shadow-lift)
}

.pc-img {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--fog)
}

.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s
}

.product-card:hover .pc-img img {
  transform: scale(1.1)
}

.pc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2
}

.pb-new {
  background: var(--ink);
  color: var(--pure)
}

.pb-hot {
  background: var(--ember);
  color: var(--pure)
}

.pb-sale {
  background: var(--gold);
  color: var(--ink)
}

.pc-quick-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.3s
}

.product-card:hover .pc-quick-actions {
  transform: translateX(0);
  opacity: 1
}

.pc-qa-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--ink);
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15)
}

.pc-qa-btn:hover,
.pc-qa-btn.active {
  background: var(--ember);
  color: var(--pure)
}

.pc-discount-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--ink);
  color: var(--pure);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  z-index: 2
}

.pc-body {
  padding: 1rem 1.1rem 1.2rem
}

.pc-cat {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--silver);
  margin-bottom: 0.35rem
}

.pc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.6rem;
  transition: color 0.2s
}

.product-card:hover .pc-name {
  color: var(--ember)
}

.pc-stars {
  color: var(--gold);
  font-size: 0.72rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem
}

.pc-stars span {
  color: var(--silver);
  font-size: 0.7rem
}

.pc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem
}

.pc-price {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.pc-price .cur {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1
}

.pc-price .orig {
  font-size: 0.72rem;
  color: var(--silver);
  text-decoration: line-through;
  line-height: 1
}

.pc-colors {
  display: flex;
  gap: 4px
}

.pc-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.2s
}

.pc-color-dot:hover {
  transform: scale(1.4)
}

.pc-add-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--pure);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0
}

.pc-add-btn:hover {
  background: var(--ember);
  transform: scale(1.1)
}

.pc-add-btn.added {
  background: var(--green-ok)
}

/* ─── TOAST ─── */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none
}

.toast-msg {
  background: var(--ink2);
  color: var(--pure);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--ember);
  padding: 0.8rem 1.25rem;
  border-radius: 12px;
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: toastSlide 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, toastFade 0.3s ease 2.7s forwards
}

.toast-msg i {
  color: var(--ember);
  font-size: 0.85rem
}

.toast-msg.wish-toast {
  border-left-color: var(--gold)
}

.toast-msg.wish-toast i {
  color: var(--gold)
}

@keyframes toastSlide {
  from {
    transform: translateX(80px);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

@keyframes toastFade {
  to {
    opacity: 0;
    transform: translateX(30px)
  }
}

/* ─── UTILITIES ─── */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2.5rem
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--ember);
  margin-bottom: 0.6rem
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.6rem
}

.section-sub {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.6
}

.btn-ember {
  background: var(--ember);
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.3px
}

.btn-ember:hover {
  background: var(--ember2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 69, 0, 0.4)
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--pure)
}

.btn-ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem
}

.btn-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--pure)
}

.breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: var(--silver)
}

.breadcrumb-bar a {
  color: var(--silver);
  transition: color 0.15s
}

.breadcrumb-bar a:hover {
  color: var(--ember)
}

.breadcrumb-bar .sep {
  color: var(--fog);
  font-size: 0.6rem
}

.breadcrumb-bar .current {
  color: var(--ink);
  font-weight: 600
}

@media(max-width:900px) {
  .navbar {
    padding: 0 1.25rem
  }

  .nav-links {
    display: none
  }

  .nav-search input {
    width: 140px
  }

  .nav-search input:focus {
    width: 180px
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem
  }
}

@media(max-width:560px) {
  .footer-inner {
    grid-template-columns: 1fr
  }

  .container {
    padding: 0 1.25rem
  }
}

/* faq */
.faq-section {
  background: var(--mist);
  padding: 60px 20px;
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
  text-align: center;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px auto;
  background: var(--pure);
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: 0.3s var(--ease);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 25px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: var(--ember);
  margin-right: 10px;
}

.toggle-icon {
  transition: transform 0.3s var(--spring);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background: var(--fog);
  color: var(--ink3);
  transition: all 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px 25px;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
  color: var(--ember2);
}

/* about */
/* =========================
   MISSION SECTION
========================= */

.mission-section {
  padding: 100px 20px;
  background: var(--mist);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-img-wrap img {
  width: 100%;
  border-radius: var(--r);
  box-shadow: var(--shadow-lift);
}

.mission-text h2 {
  font-size: 38px;
  color: var(--ink);
  margin-bottom: 20px;
}

.mission-text p {
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ember);
  color: var(--pure);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 20px;
}

.mission-points {
  margin-top: 25px;
}

.mission-pt {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--ink2);
}

.mission-pt i {
  color: var(--gold);
}


/* =========================
   VALUES SECTION
========================= */

.values-section {
  padding: 100px 20px;
  background: var(--pure);
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  color: var(--ink);
}

.section-subtitle {
  color: var(--silver);
  margin-top: 10px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}

.value-card {
  background: var(--mist);
  padding: 30px;
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
  transition: 0.35s var(--ease);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.value-icon {
  font-size: 24px;
  color: var(--ember);
  margin-bottom: 15px;
}

.value-card h4 {
  margin-bottom: 10px;
  color: var(--ink2);
}

.value-card p {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-text h2 {
    font-size: 30px;
  }
}

/* process */
/* =========================
   SHOPPING PROCESS
========================= */

.process-section {
  padding: 100px 20px;
  background: var(--mist);
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header h2 {
  font-size: 36px;
  color: var(--ink);
}

.process-header p {
  color: var(--silver);
  margin-top: 10px;
}

/* Steps Wrapper */
.process-steps {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* Vertical Line */
.process-line {
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--ember), var(--gold));
  border-radius: 10px;
}

/* Step */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 60px;
  position: relative;
}

/* Number Circle */
.step-number {
  min-width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--pure);
  border: 3px solid var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--ember);
  box-shadow: var(--shadow-card);
  z-index: 2;
}

/* Text Content */
.step-content h4 {
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--ink2);
}

.step-content p {
  color: var(--silver);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Hover Effect */
.process-step:hover .step-number {
  background: var(--ember);
  color: var(--pure);
  transition: 0.3s var(--ease);
}

/* Responsive */
@media (max-width: 768px) {
  .process-line {
    left: 28px;
  }

  .step-number {
    min-width: 55px;
    height: 55px;
    font-size: 16px;
  }
}

/* contact */
/* =========================
   CONTACT LAYOUT
========================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  padding: 100px 0;
}

/* =========================
   CONTACT INFO CARD
========================= */

.contact-info-card {
  background: var(--ink);
  color: var(--pure);
  padding: 40px;
  border-radius: var(--r);
  box-shadow: var(--shadow-lift);
}

.contact-info-card h3 {
  margin-bottom: 30px;
  font-size: 24px;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.contact-icon {
  min-width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ember), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure);
  font-size: 16px;
}

.contact-item h5 {
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--fog);
  font-weight: 600;
}

.contact-item p,
.contact-item a {
  font-size: 14px;
  color: var(--silver);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--ember2);
}

.contact-map {
  margin-top: 30px;
  padding: 25px;
  background: var(--ink2);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--fog);
}

/* =========================
   FORM CARD
========================= */

.contact-form-card {
  background: var(--pure);
  padding: 50px;
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  color: var(--ink);
}

.contact-form-card p {
  color: var(--silver);
  margin-bottom: 30px;
}

/* =========================
   FORM ELEMENTS
========================= */

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

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--ink2);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--fog);
  background: var(--mist);
  font-size: 14px;
  transition: 0.25s var(--ease);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--ember);
  background: var(--pure);
  box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* =========================
   SUBJECT CHIPS
========================= */

.subject-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subject-chip {
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid var(--fog);
  background: var(--mist);
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s var(--ease);
}

.subject-chip:hover {
  border-color: var(--ember);
  color: var(--ember);
}

.subject-chip.active {
  background: var(--ember);
  color: var(--pure);
  border-color: var(--ember);
}

/* =========================
   SUBMIT BUTTON
========================= */

.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--ember), var(--ember2));
  color: var(--pure);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s var(--ease);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

/* =========================
   SUCCESS STATE
========================= */

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success .tick {
  width: 70px;
  height: 70px;
  background: var(--green-ok);
  color: var(--pure);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  box-shadow: var(--shadow-card);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 30px;
  }
}