:root {
  --ink: #141414;
  --ink-soft: #3c3c3c;
  --ink-mute: #6b6b6b;
  --rule: #e3e1da;
  --rule-soft: #efece4;
  --paper: #ffffff;
  --paper-warm: #faf8f2;
  --paper-cool: #f3f5f6;
  --amber: #e6a817;
  --amber-deep: #946400;
  --amber-soft: #fff2cf;
  --shadow-sm: 0 1px 2px rgba(20,20,20,.06), 0 1px 3px rgba(20,20,20,.04);
  --shadow-md: 0 10px 30px rgba(20,20,20,.08), 0 2px 6px rgba(20,20,20,.05);
  --radius: 10px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  font-variant-numeric: tabular-nums;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  letter-spacing: 0;
  margin: 0;
  color: var(--ink);
}
h1, h2 {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
}
h3 {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
h1 { font-size: 3.05rem; font-weight: 800; line-height: 1.04; max-width: 12ch; }
h2 { font-size: 2.05rem; font-weight: 800; line-height: 1.12; }
h3 { font-size: 1.125rem; font-weight: 700; }

p { margin: 0 0 1em; }

/* ---------- topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark { width: 28px; height: 28px; color: var(--ink); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-line1 { font-weight: 800; font-size: 0.9rem; letter-spacing: -0.01em; }
.brand-line2 { font-weight: 600; font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }

.topnav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 600;
}
.topnav a { text-decoration: none; color: var(--ink-soft); }
.topnav a:hover { color: var(--ink); }

.topcall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.topcall:hover { background: #000; }
.topcall-icon { font-size: 0.95em; }

@media (max-width: 880px) {
  .topnav { display: none; }
}
@media (max-width: 540px) {
  .topcall-num { display: none; }
  .topcall::after { content: "Call"; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .12s ease, background .15s ease, color .15s ease;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-ghost { background: var(--paper); color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-block { display: flex; width: 100%; }

/* ---------- hero ---------- */
/* v2: full-bleed hero, text OVER image (desktop) */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero > .wrap { position: relative; z-index: 2; }

.hero-art {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 42%;
}
/* directional scrim — heavy on the left where the text lands */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12,14,18,.88) 0%, rgba(12,14,18,.68) 34%, rgba(12,14,18,.2) 62%, rgba(12,14,18,0) 82%),
    linear-gradient(0deg, rgba(12,14,18,.45) 0%, rgba(12,14,18,0) 38%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 620px;
  padding: 0;
  display: block;
  color: #fff;
}
.hero-copy h1 { color: #fff; text-shadow: 0 2px 22px rgba(0,0,0,.5); }
.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
  max-width: 50ch;
  margin: 18px 0 26px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.proof-chips {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.proof-chips li {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 0.9rem;
  color: #fff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.proof-chips strong { font-weight: 800; color: #fff; }
.proof-chips span { color: rgba(255,255,255,.82); }

@media (max-width: 880px) {
  /* mobile: image band on top, text stacked below (no overlay) */
  .hero { min-height: 0; display: block; padding: 0 0 42px; }
  .hero-art { position: relative; inset: auto; height: auto; }
  .hero-art img { height: auto; min-height: 300px; max-height: 52vh; object-fit: cover; object-position: center 34%; }
  .hero::after { display: none; }
  .hero-copy { color: var(--ink); max-width: none; padding: 30px 0 0; display: block; }
  .hero-copy h1 { color: var(--ink); text-shadow: none; }
  h1 { font-size: 2.35rem; max-width: 13ch; }
  h2 { font-size: 1.9rem; }
  .hero-sub { color: var(--ink-soft); text-shadow: none; margin-top: 16px; }
  .proof-chips li { background: var(--paper); border-color: var(--rule); color: var(--ink); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .proof-chips strong { color: var(--ink); }
  .proof-chips span { color: var(--ink-mute); }
  .hero-cta .btn { flex: 1; min-width: 0; }
}
@media (max-width: 540px) {
  h1 { font-size: 2rem; max-width: none; }
  h2 { font-size: 1.6rem; }
  .hero-art img { min-height: 240px; max-height: 46vh; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* ---------- section heads ---------- */
.section-head {
  max-width: 760px;
  margin: 0 0 36px;
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head p {
  color: var(--ink-soft);
  margin: 10px 0 0;
  font-size: 1.02rem;
}

/* ---------- pricing ---------- */
.pricing { padding: 80px 0; background: var(--paper); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.price-card:hover { border-color: var(--ink); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.price-card header { display: flex; flex-direction: column; gap: 4px; }
.price-card h3 { font-size: 1.05rem; }
.price-card h3,
.logistics-card h2,
.process-steps h3,
.limit-col h3,
.quote-form h3 {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
.price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-num {
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-unit { color: var(--ink-mute); font-weight: 600; font-size: 0.92rem; }
.price-range {
  margin: 0;
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-meta {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.price-detail {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.price-detail li {
  padding-left: 18px;
  position: relative;
}
.price-detail li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 2px;
}

.price-card--accent {
  background: linear-gradient(180deg, #fffaec 0%, #fff 65%);
  border-color: var(--amber);
}
.price-card--accent .price-num { color: var(--ink); }

.price-card--wide {
  grid-column: span 2;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}
.price-table td {
  padding: 10px 0;
  border-top: 1px solid var(--rule-soft);
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.price-table tr:first-child td { border-top: 0; }
.price-table td:first-child { font-weight: 700; color: var(--ink); width: 30%; }
.price-table td:last-child { text-align: right; font-weight: 700; color: var(--ink); width: 22%; }

.price-card--trip { background: var(--paper-cool); border-color: var(--rule); }
.price-card--trip .price-detail li::before { background: var(--ink); }

@media (max-width: 980px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card--wide { grid-column: span 2; }
}
@media (max-width: 620px) {
  .pricing { padding: 56px 0; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card--wide { grid-column: span 1; }
  .price-num, .price-range { font-size: 2rem; }
}

/* ---------- logistics ---------- */
.logistics { padding: 80px 0; background: var(--paper-cool); }

.logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.logistics-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.logistics-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--amber-soft);
  padding: 6px 10px;
  border-radius: 4px;
  align-self: flex-start;
}
.logistics-tag--alt { background: var(--ink); color: var(--paper); }
.logistics-card h2 { font-size: 1.8rem; }
.logistics-card p { color: var(--ink-soft); margin: 0; }
.logistics-card ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.logistics-card li {
  padding-left: 22px;
  position: relative;
}
.logistics-card li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--amber-deep);
  font-weight: 800;
}

@media (max-width: 780px) {
  .logistics { padding: 56px 0; }
  .logistics-grid { grid-template-columns: 1fr; }
}

/* ---------- process ---------- */
.process { padding: 80px 0; background: var(--paper); }
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process-steps li {
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--rule-soft);
}
.step-num {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--amber-deep);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.process-steps h3 { font-size: 1.15rem; margin-bottom: 6px; }
.process-steps p { color: var(--ink-soft); margin: 0; font-size: 0.96rem; }

@media (max-width: 820px) {
  .process { padding: 56px 0; }
  .process-steps { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- limits ---------- */
.limits { padding: 80px 0; background: var(--paper-cool); }
.limits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.limit-col {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--rule);
}
.limit-col h3 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.limit-fit h3 { color: #1f7a3a; }
.limit-skip h3 { color: #a3411e; }
.limit-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--ink);
}
.limit-col li {
  padding-left: 26px;
  position: relative;
  color: var(--ink-soft);
}
.limit-fit li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: #1f7a3a;
  font-weight: 800;
}
.limit-skip li::before {
  content: "—";
  position: absolute; left: 0; top: -2px;
  color: #a3411e;
  font-weight: 800;
}

@media (max-width: 780px) {
  .limits { padding: 56px 0; }
  .limits-grid { grid-template-columns: 1fr; }
}

/* ---------- reviews ---------- */
.reviews { padding: 80px 0; background: var(--paper); }
.reviews-note {
  font-size: 0.95rem;
  color: var(--ink-mute);
  margin-top: 6px !important;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.review {
  margin: 0;
  background: var(--paper-warm);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stars {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 0.15em;
}
.review blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}
.review figcaption {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .reviews { padding: 56px 0; }
  .review-grid { grid-template-columns: 1fr; }
}

/* ---------- contact ---------- */
.contact {
  padding: 80px 0;
  background: var(--ink);
  color: #f3f1ea;
}
.contact h2 { color: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-copy p { color: #c9c5b9; max-width: 46ch; }
.contact .btn-primary {
  background: var(--amber);
  color: var(--ink);
  margin-bottom: 10px;
}
.contact .btn-primary:hover { background: #f4ba2f; }
.contact .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #6e6a5d;
}
.contact .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid #3c3c3a;
}
.contact-meta dt {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.contact-meta dd {
  margin: 0;
  font-size: 0.96rem;
  color: #d6d2c4;
  line-height: 1.45;
}

.quote-form {
  background: #1f1f1d;
  border: 1px solid #2f2f2d;
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-form h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ccc8bb;
}
.quote-form label > span { letter-spacing: 0.02em; }
.quote-form input,
.quote-form textarea {
  font: inherit;
  font-weight: 500;
  padding: 12px 14px;
  border-radius: 8px;
  background: #2a2a28;
  border: 1px solid #3a3a37;
  color: #fff;
  width: 100%;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: #7a766a; }
.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: #2f2f2c;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-fineprint {
  font-size: 0.82rem;
  color: #8e8b80;
  margin: 4px 0 0;
}

@media (max-width: 820px) {
  .contact { padding: 56px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-meta { grid-template-columns: 1fr; gap: 18px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- area ---------- */
.area { padding: 64px 0; background: var(--paper-warm); }
.area h2 { margin-bottom: 8px; }
.area-intro { color: var(--ink-soft); max-width: 60ch; margin-bottom: 22px; }
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-list li {
  padding: 7px 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--rule);
  background: var(--paper);
  padding: 24px 0;
  font-size: 0.88rem;
  color: var(--ink-mute);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
}
.footer a { color: var(--ink); text-decoration: none; font-weight: 600; }
.footer a:hover { text-decoration: underline; }
.footer p { margin: 0; }

/* v2: contact map */
.contact-map{max-width:1160px;margin:26px auto 0;padding:0 clamp(18px,5vw,48px);}
.contact-map iframe{width:100%;height:340px;border:0;border-radius:12px;display:block;box-shadow:0 14px 34px rgba(0,0,0,.14);}
