:root {
  --white:    #ffffff;
  --bg:       #f7f6f3;
  --bg2:      #f0ede8;
  --card:     #ffffff;
  --border:   #e4e0d8;
  --border2:  #ccc8be;
  --text:     #1a1916;
  --sub:      #6b6760;
  --dim:      #9c9890;
  --blue:     #1a56db;
  --blue-bg:  #eef3fd;
  --blue-b:   #c2d4f8;
  --green:    #16a34a;
  --green-bg: #edfaf3;
  --green-b:  #bbf0d3;
  --orange:   #c2410c;
  --orange-bg:#fff4ed;
  --orange-b: #fdd0b0;
  --font-d:   'Fraunces', serif;
  --font:     'DM Sans', sans-serif;
  --r:        12px;
  --shadow:   0 1px 3px rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.05);
  --shadow-h: 0 4px 12px rgba(0,0,0,.10), 0 12px 32px rgba(0,0,0,.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,246,243,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 600; font-size: 11px; color: #fff; letter-spacing: -.3px;
}
.logo-name { font-family: var(--font-d); font-size: 17px; font-weight: 700; color: var(--text); }
.logo-sub  { font-size: 10px; color: var(--dim); margin-top: -3px; font-weight: 300; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: var(--sub); text-decoration: none; font-size: 14px; font-weight: 400; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--blue); color: #fff; border: none; border-radius: 7px;
  padding: 8px 18px; font-family: var(--font); font-size: 13px; font-weight: 500;
  cursor: pointer; text-decoration: none; transition: background .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: #1447c0; }

/* ── HERO ── */
.hero {
  max-width: 1100px; margin: 0 auto;
  padding: 64px 5vw 72px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.hero-loc {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 5px; padding: 4px 10px;
  font-size: 11px; color: var(--sub); margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.hero-loc::before { content: '📍'; font-size: 11px; }
h1 {
  font-family: var(--font-d);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -.02em; margin-bottom: 18px; color: var(--text);
}
h1 .hl { color: var(--blue); }
.hero-desc {
  color: var(--sub); font-size: 15px; font-weight: 300;
  max-width: 440px; margin-bottom: 30px; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-blue {
  background: var(--blue); color: #fff; border: none; border-radius: 8px;
  padding: 11px 22px; font-family: var(--font); font-weight: 500; font-size: 14px;
  cursor: pointer; text-decoration: none; transition: background .15s, box-shadow .15s;
  box-shadow: 0 2px 8px rgba(26,86,219,.3);
}
.btn-blue:hover { background: #1447c0; box-shadow: 0 4px 14px rgba(26,86,219,.35); }
.btn-outline {
  background: var(--white); color: var(--sub); border: 1px solid var(--border2);
  border-radius: 8px; padding: 11px 22px; font-family: var(--font);
  font-size: 14px; cursor: pointer; text-decoration: none; transition: all .15s;
  box-shadow: var(--shadow);
}
.btn-outline:hover { color: var(--text); border-color: var(--text); }
.hero-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hc {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 14px;
  display: flex; align-items: flex-start; gap: 9px;
  box-shadow: var(--shadow);
}
.hc .ico { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.hc .lbl { font-size: 10px; color: var(--dim); text-transform: uppercase; letter-spacing: .06em; }
.hc .val { font-size: 13px; font-weight: 500; color: var(--text); margin-top: 1px; }
.hc-full { grid-column: 1/-1; }

/* ── HIGHLIGHTS ── */
.highlights { display: flex; flex-direction: column; gap: 10px; padding-top: 10px; }
.hl-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 20px;
  box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s;
  text-decoration: none; color: inherit; display: block;
}
.hl-card:hover { box-shadow: var(--shadow-h); transform: translateY(-2px); }
.hl-top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.hl-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.hl-icon.blue   { background: var(--blue-bg); }
.hl-icon.green  { background: var(--green-bg); }
.hl-icon.orange { background: var(--orange-bg); }
.hl-title { font-family: var(--font-d); font-size: 16px; font-weight: 600; }
.hl-sub { font-size: 12px; color: var(--sub); line-height: 1.5; }
.hl-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.hl-tag {
  border: 1px solid var(--border); border-radius: 4px;
  padding: 3px 9px; font-size: 11px; color: var(--sub);
}
.same-day {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--green-bg); border: 1px solid var(--green-b);
  border-radius: 4px; padding: 3px 9px; font-size: 11px; color: var(--green);
  margin-top: 8px; font-weight: 500;
}
.same-day::before { content: '✓'; font-weight: 700; }

/* ── SECTION BASE ── */
section { padding: 72px 5vw; }
.inner { max-width: 1100px; margin: 0 auto; }
.sec-label {
  font-size: 11px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .1em; color: var(--blue); margin-bottom: 6px;
}
.sec-title {
  font-family: var(--font-d);
  font-size: clamp(24px, 3vw, 34px); font-weight: 700;
  letter-spacing: -.02em; color: var(--text); margin-bottom: 10px;
}
.sec-desc {
  color: var(--sub); font-size: 14px; font-weight: 300;
  max-width: 540px; margin-bottom: 36px; line-height: 1.75;
}

/* ── SERVICES ── */
.services-wrap {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
}
.srv {
  background: var(--white); padding: 22px 20px;
  transition: background .15s; position: relative;
}
.srv:hover { background: var(--bg); }
.srv .srv-icon { font-size: 22px; margin-bottom: 10px; }
.srv h3 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 5px; line-height: 1.3; }
.srv p  { font-size: 12px; color: var(--sub); line-height: 1.55; }
.srv-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--blue-bg); border: 1px solid var(--blue-b);
  border-radius: 4px; padding: 2px 7px; font-size: 10px; color: var(--blue); font-weight: 500;
}
.srv-badge.home { background: var(--orange-bg); border-color: var(--orange-b); color: var(--orange); }

/* ── MONEY TRANSFER ── */
.money-wrap {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.money-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.money-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 14px;
}
.money-logo {
  height: 44px; border-radius: 8px; display: flex; align-items: center;
  padding: 0 14px; font-size: 18px; font-weight: 800; letter-spacing: -.5px;
  width: fit-content;
}
.ria-logo { background: #e8f5ff; color: #0070c0; }
.wu-logo  { background: #fff8e0; color: #c49000; }
.money-card h3 { font-family: var(--font-d); font-size: 18px; font-weight: 600; }
.money-card p  { font-size: 13px; color: var(--sub); line-height: 1.65; }
.money-features { display: flex; flex-direction: column; gap: 6px; }
.mf { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--sub); }
.mf::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.money-note {
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 14px; font-size: 12px; color: var(--dim); margin-top: 4px;
}

/* ── SHOP ── */
.shop-layout { display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.tag {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 5px; padding: 5px 12px; font-size: 12px; color: var(--sub);
  box-shadow: var(--shadow);
}
.price-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 26px; box-shadow: var(--shadow);
}
.price-box h3 { font-family: var(--font-d); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.price-box p  { font-size: 13px; color: var(--sub); margin-bottom: 20px; line-height: 1.65; }
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: #fff; border: none; border-radius: 8px;
  padding: 12px; font-family: var(--font); font-weight: 500; font-size: 14px;
  cursor: pointer; text-decoration: none; width: 100%; transition: background .15s;
  box-shadow: 0 2px 8px rgba(22,163,74,.25);
}
.btn-wa:hover { background: #15803d; }

/* ── ABOUT ── */
.about-wrap {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.about-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px;
}
.about-card .ico { font-size: 20px; margin-bottom: 12px; }
.about-card h4  { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.about-card p   { font-size: 12px; color: var(--sub); line-height: 1.6; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 380px 1fr; gap: 32px; align-items: start; }
.info-stack { display: flex; flex-direction: column; gap: 8px; }
.info-row {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 13px 16px;
  display: flex; align-items: flex-start; gap: 12px;
  box-shadow: var(--shadow);
}
.info-row .ico { font-size: 15px; margin-top: 2px; }
.info-row .lbl { font-size: 10px; color: var(--dim); text-transform: uppercase; letter-spacing: .06em; }
.info-row .val { font-size: 13px; color: var(--text); font-weight: 500; margin-top: 2px; }
.map-wrap {
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; height: 190px; box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.form-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; box-shadow: var(--shadow);
}
.form-box h3 { font-family: var(--font-d); font-size: 20px; font-weight: 600; margin-bottom: 22px; }
.fg { margin-bottom: 14px; }
.fg label {
  font-size: 11px; color: var(--sub); display: block;
  margin-bottom: 5px; text-transform: uppercase; letter-spacing: .05em;
}
.fg input, .fg textarea, .fg select {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: 7px; padding: 10px 13px; color: var(--text);
  font-family: var(--font); font-size: 14px; outline: none;
  transition: border-color .15s; resize: vertical;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--blue); background: var(--white);
}
.fg textarea { min-height: 90px; }
.form-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.btn-send {
  background: var(--blue); color: #fff; border: none; border-radius: 8px;
  padding: 12px; font-family: var(--font); font-weight: 500; font-size: 14px;
  cursor: pointer; transition: background .15s; width: 100%;
  box-shadow: 0 2px 8px rgba(26,86,219,.25);
}
.btn-send:hover { background: #1447c0; }
.btn-wa-s {
  display: block; width: 100%; text-align: center;
  background: var(--green-bg); border: 1px solid var(--green-b);
  color: var(--green); border-radius: 8px; padding: 11px;
  font-family: var(--font); font-size: 14px; text-decoration: none;
  font-weight: 500; transition: background .15s;
}
.btn-wa-s:hover { background: #d4f5e6; }
.form-note { font-size: 11px; color: var(--dim); margin-top: 12px; text-align: center; }

/* ── FOOTER ── */
footer {
  background: var(--text); color: #9ca3af; padding: 28px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; flex-wrap: wrap; gap: 12px;
}
footer a { color: #9ca3af; text-decoration: none; }
footer a:hover { color: #fff; }
.footer-logo { font-family: var(--font-d); font-size: 15px; color: #fff; font-weight: 600; }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(26,25,22,0.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  padding: 36px; width: 100%; max-width: 480px;
  animation: modalIn .22s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 24px;
}
.modal-head h2 { font-family: var(--font-d); font-size: 22px; font-weight: 700; line-height: 1.2; }
.modal-head p  { font-size: 13px; color: var(--sub); margin-top: 4px; }
.modal-close {
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  width: 32px; height: 32px; cursor: pointer; font-size: 16px; color: var(--sub);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-left: 12px; margin-top: 2px; transition: background .15s;
}
.modal-close:hover { background: var(--bg2); }
.modal .fg { margin-bottom: 14px; }
.modal .fg label {
  font-size: 11px; color: var(--sub); display: block;
  margin-bottom: 5px; text-transform: uppercase; letter-spacing: .05em;
}
.modal .fg input, .modal .fg textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 13px; color: var(--text);
  font-family: var(--font); font-size: 14px; outline: none;
  transition: border-color .15s; resize: vertical;
}
.modal .fg input:focus, .modal .fg textarea:focus {
  border-color: var(--blue); background: var(--white);
}
.modal .fg textarea { min-height: 90px; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-submit {
  width: 100%; background: var(--blue); color: #fff; border: none; border-radius: 9px;
  padding: 13px; font-family: var(--font); font-weight: 600; font-size: 15px;
  cursor: pointer; margin-top: 6px; transition: background .15s;
  box-shadow: 0 2px 8px rgba(26,86,219,.3);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.modal-submit:hover { background: #1447c0; }
.modal-note { font-size: 11px; color: var(--dim); text-align: center; margin-top: 10px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero           { grid-template-columns: 1fr; gap: 36px; padding: 48px 5vw 56px; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .money-grid     { grid-template-columns: 1fr; }
  .shop-layout    { grid-template-columns: 1fr; }
  .about-grid     { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .nav-links      { display: none; }
  .nav-cta        { display: none; }
  .hamburger      { display: flex; }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-grid    { grid-template-columns: 1fr; }
  .hero-contacts { grid-template-columns: 1fr; }
  .hc-full       { grid-column: auto; }
}

/* ── HAMBURGER / MOBILE NAV ── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .2s;
}
.mobile-nav {
  display: none;
  position: fixed; inset: 62px 0 0 0; z-index: 99;
  background: rgba(247,246,243,0.98);
  backdrop-filter: blur(14px);
  flex-direction: column; align-items: flex-start;
  padding: 24px 5vw; gap: 4px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text); text-decoration: none; font-size: 18px;
  font-weight: 500; padding: 12px 0; width: 100%;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .m-cta {
  margin-top: 16px; background: var(--blue); color: #fff;
  border-radius: 8px; padding: 14px 24px; text-align: center;
  font-weight: 600; border-bottom: none;
}
