/* ============================================================
   Gift Mall Shops — Site Stylesheet
   Palette: deep navy primary / gold accent / warm white surface
   Typeface: Sora (headings) / system stack (body)
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #29303d;
  background: #fbfaf6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand-word, .stat__num {
  font-family: "Sora", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #142038;
  line-height: 1.2;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { color: #48505e; }
a { color: #142038; text-decoration: none; }
img { max-width: 100%; display: block; }
.shell { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; color: #a8842c;
}
.tag::before { content: ""; width: 18px; height: 2px; background: #c9a24b; display: inline-block; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 26px;
  border-radius: 3px; font-weight: 700; font-size: .92rem; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold { background: #c9a24b; color: #142038; }
.btn--gold:hover { background: #b5903f; }
.btn--navy { background: #142038; color: #ffffff; }
.btn--navy:hover { background: #1c2c4d; }
.btn--ghost { background: transparent; color: #ffffff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #ffffff; }
.btn--ghost-dark { background: transparent; color: #142038; border-color: #d8d2c4; }
.btn--ghost-dark:hover { border-color: #142038; }
.btn--block { width: 100%; justify-content: center; }

/* ----- Top utility bar ----- */
.util-bar { background: #142038; color: #cdd4e0; font-size: .82rem; }
.util-bar__row {
  max-width: 1180px; margin: 0 auto; padding: 9px 24px; display: flex;
  justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.util-bar a { color: #cdd4e0; }
.util-bar a:hover { color: #ffffff; }
.util-bar__links { display: flex; gap: 20px; }

/* ----- Nav ----- */
.site-nav {
  position: sticky; top: 0; z-index: 40; background: #ffffff;
  border-bottom: 1px solid #ece7d9; transition: box-shadow .2s ease;
}
.site-nav.is-scrolled { box-shadow: 0 6px 24px rgba(20,32,56,.08); }
.site-nav__row {
  max-width: 1180px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-word { font-size: 1.2rem; font-weight: 800; letter-spacing: -.01em; }
.brand-word small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #a8842c; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { font-size: .92rem; font-weight: 600; color: #29303d; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: #142038; border-color: #c9a24b; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: #142038; margin: 5px 0; }
.mobile-menu { display: none; }

/* ----- Hero ----- */
.hero { background: #142038; color: #e8ebf2; padding: 72px 0 84px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -140px; right: -140px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(closest-side, rgba(201,162,75,.22), transparent 72%);
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.hero h1 { color: #ffffff; margin: 16px 0 20px; }
.hero h1 em { font-style: normal; color: #c9a24b; }
.hero__lede { font-size: 1.08rem; color: #b6bdcc; max-width: 46ch; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__panel { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 6px; padding: 26px; }
.hero__panel img { border-radius: 4px; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__panel { max-width: 420px; margin: 0 auto; }
}

/* ----- Stat strip ----- */
.stat-strip { background: #ffffff; border-bottom: 1px solid #ece7d9; }
.stat-strip__row {
  max-width: 1180px; margin: 0 auto; padding: 28px 24px; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center;
}
.stat__num { font-size: 1.5rem; font-weight: 800; }
.stat__label { font-size: .82rem; color: #6c7385; margin-top: 2px; }
@media (max-width: 760px) { .stat-strip__row { grid-template-columns: repeat(2, 1fr); } }

/* ----- Section shell ----- */
.section { padding: 74px 0; }
.section--tint { background: #f4f0e6; }
.section__head { max-width: 640px; margin-bottom: 42px; }
.section__head p { margin-top: 12px; }
.section__head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ----- Use-case grid ----- */
.usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.usecase-card { background: #ffffff; border: 1px solid #ece7d9; border-radius: 6px; padding: 26px; border-top: 3px solid #c9a24b; }
.usecase-card__icon { width: 42px; height: 42px; margin-bottom: 16px; }
.usecase-card h3 { margin-bottom: 8px; }
.usecase-card p { font-size: .9rem; }
@media (max-width: 980px) { .usecase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .usecase-grid { grid-template-columns: 1fr; } }

/* ----- Numbered process ----- */
.process { counter-reset: step; display: grid; gap: 0; }
.process__item {
  counter-increment: step; display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid #ece7d9;
}
.process__item:last-child { border-bottom: none; }
.process__num {
  width: 46px; height: 46px; border-radius: 50%; background: #142038; color: #ffffff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: "Sora", sans-serif;
}
.process__item h3 { margin-bottom: 6px; }
.process__item p { font-size: .95rem; }

/* ----- Two column feature list ----- */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.feature-list { list-style: none; display: grid; gap: 22px; }
.feature-list li { display: grid; grid-template-columns: 26px 1fr; gap: 14px; }
.feature-list i { color: #c9a24b; font-size: 1.05rem; margin-top: 3px; }
.feature-list h4 { margin-bottom: 4px; }
.feature-list p { font-size: .9rem; }
@media (max-width: 860px) { .feature-split { grid-template-columns: 1fr; } }

/* ----- Callout band ----- */
.callout { background: #142038; border-radius: 8px; padding: 40px; color: #e8ebf2; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.callout h3 { color: #ffffff; margin-bottom: 8px; }
.callout p { color: #b6bdcc; font-size: .92rem; max-width: 52ch; }
@media (max-width: 720px) { .callout { grid-template-columns: 1fr; text-align: center; } }

/* ----- FAQ accordion ----- */
.faq-list { display: grid; gap: 2px; border: 1px solid #ece7d9; border-radius: 6px; overflow: hidden; }
.faq-item { background: #ffffff; }
.faq-item__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; font-weight: 700; font-size: .98rem; display: flex; justify-content: space-between; align-items: center;
  color: #142038;
}
.faq-item__q::after { content: "\002B"; font-size: 1.3rem; color: #c9a24b; font-weight: 400; }
.faq-item.is-open .faq-item__q::after { content: "\2212"; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.is-open .faq-item__a { max-height: 400px; }
.faq-item__a-inner { padding: 0 24px 20px; font-size: .92rem; color: #55596a; }

/* ----- CTA band ----- */
.cta-band { background: #f4f0e6; border-top: 1px solid #ece7d9; border-bottom: 1px solid #ece7d9; padding: 56px 0; text-align: center; }
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { max-width: 50ch; margin: 0 auto 26px; }

/* ----- Content page header (non-home pages) ----- */
.page-head { background: #142038; color: #e8ebf2; padding: 54px 0 60px; }
.page-head h1 { color: #ffffff; margin: 12px 0 10px; }
.page-head p { color: #b6bdcc; max-width: 56ch; }
.breadcrumb { font-size: .8rem; color: #8b93a8; margin-bottom: 14px; }
.breadcrumb a { color: #8b93a8; }
.breadcrumb a:hover { color: #ffffff; }

/* ----- Prose (guide-style content pages) ----- */
.prose { max-width: 760px; }
.prose h2 { margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 26px 0 10px; }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 6px; color: #48505e; }
.note-box { background: #f4f0e6; border-left: 3px solid #c9a24b; border-radius: 0 6px 6px 0; padding: 18px 22px; margin: 24px 0; font-size: .92rem; }
.note-box strong { color: #142038; }
.disclaimer-box { background: #fbfaf6; border: 1px solid #ece7d9; border-radius: 6px; padding: 20px 22px; margin: 30px 0; font-size: .87rem; color: #6c7385; }

/* ----- Sidebar layout ----- */
.with-sidebar { display: grid; grid-template-columns: 1fr 280px; gap: 50px; align-items: start; }
.sidebar-card { background: #f4f0e6; border-radius: 6px; padding: 24px; position: sticky; top: 96px; }
.sidebar-card h4 { margin-bottom: 12px; }
.sidebar-card ul { list-style: none; display: grid; gap: 10px; }
.sidebar-card a { font-size: .88rem; font-weight: 600; }
.sidebar-card a:hover { color: #a8842c; }
@media (max-width: 900px) { .with-sidebar { grid-template-columns: 1fr; } .sidebar-card { position: static; } }

/* ----- Contact ----- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info { display: grid; gap: 20px; align-content: start; }
.contact-info__item { display: grid; grid-template-columns: 34px 1fr; gap: 12px; }
.contact-info__item i { color: #c9a24b; font-size: 1.1rem; margin-top: 3px; }
.contact-info__item h4 { margin-bottom: 3px; }
.form-field { display: grid; gap: 6px; margin-bottom: 18px; }
.form-field label { font-size: .84rem; font-weight: 700; color: #142038; }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid #ece7d9; border-radius: 4px; padding: 11px 14px; font-size: .95rem;
  font-family: inherit; background: #ffffff; color: #29303d;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: #c9a24b; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 760px) { .contact-grid, .form-row-2 { grid-template-columns: 1fr; } }

/* ----- Footer ----- */
.site-foot { background: #142038; color: #b6bdcc; padding-top: 56px; }
.site-foot__grid { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.site-foot__brand p { color: #8b93a8; font-size: .88rem; margin: 14px 0; max-width: 34ch; }
.site-foot h4 { color: #ffffff; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.site-foot ul { list-style: none; display: grid; gap: 10px; }
.site-foot a { color: #b6bdcc; font-size: .88rem; }
.site-foot a:hover { color: #c9a24b; }
.site-foot__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .8rem; color: #75809a; }
.site-foot__bottom .shell { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; width: 100%; flex-wrap: wrap; gap: 10px; }
@media (max-width: 900px) { .site-foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-foot__grid { grid-template-columns: 1fr; } }

/* ----- Utility / reveal ----- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.visually-hidden { position: absolute; left: -9999px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-burger { display: block; }
  .mobile-menu {
    display: none; flex-direction: column; gap: 4px; background: #ffffff; border-top: 1px solid #ece7d9;
    padding: 14px 24px 20px;
  }
  .mobile-menu.is-open { display: flex; }
  .mobile-menu a { padding: 10px 0; font-weight: 600; border-bottom: 1px solid #f1ede1; }
  .util-bar__row { justify-content: center; }
  .util-bar__links { display: none; }
}
