:root {
  --bg: #f7f4ee;
  --surface: #fffdf8;
  --surface-soft: #f1ece3;
  --surface-cool: #f6f3ed;
  --ink: #111113;
  --text: #2b2925;
  --muted: #6f6a60;
  --line: #ded7ca;
  --line-strong: #c8bca9;
  --primary: #ad8745;
  --primary-dark: #876833;
  --accent: #111113;
  --accent-dark: #111113;
  --danger: #dc2626;
  --danger-dark: #b91c1c;
  --success: #16834b;
  --warning-bg: #fff6df;
  --warning-line: #f1c76c;
  --warning-text: #7a4b00;
  --info-bg: #f6f0e4;
  --info-line: #d6c49d;
  --info-text: #6f5422;
  --shadow: 0 22px 60px rgba(17, 17, 19, 0.11);
  --shadow-soft: 0 12px 34px rgba(17, 17, 19, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar-photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(9, 9, 10, 0.94), rgba(17, 17, 19, 0.72) 52%, rgba(17, 17, 19, 0.28)),
    url("assets/site/hero-fuji-family.jpg");
  background-position: center 44%;
  background-size: cover;
  transform: scale(1.02);
}

.topbar-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: end;
  min-height: 400px;
  padding: 42px 0 34px;
}

.hero-copy {
  max-width: 780px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: white;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius);
  background: rgba(194, 58, 75, 0.9);
  font-weight: 900;
}

.brand-kicker {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.brand-lockup strong {
  display: block;
  font-size: 18px;
}

.topbar h1 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.02;
}

.topbar p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-panel {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 286px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(14, 20, 34, 0.56);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.hero-panel-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel-row {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel-row span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 700;
}

.hero-panel-row strong {
  color: #fffaf0;
  font-size: 17px;
  line-height: 1.35;
}

.app-shell {
  padding: 24px 0 46px;
}

.tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 20px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.tab-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: #526071;
  min-height: 42px;
  padding: 0 18px;
  border-radius: calc(var(--radius) - 2px);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.tab-btn:hover {
  color: var(--ink);
  background: rgba(173, 135, 69, 0.1);
}

.tab-btn.active {
  color: white;
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(23, 32, 50, 0.22);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.hero-card,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 22px;
  align-items: center;
  margin-bottom: 14px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(241, 236, 227, 0.88)),
    var(--surface);
}

.hero-card h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.15;
}

.hero-card p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.hero-points span {
  padding: 8px 11px;
  border: 1px solid rgba(173, 135, 69, 0.26);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: #4d4538;
  font-size: 12px;
  font-weight: 800;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  gap: 20px;
  align-items: start;
}

.admin-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.card {
  padding: 22px;
}

.card.is-attention {
  box-shadow:
    0 0 0 4px rgba(173, 135, 69, 0.16),
    var(--shadow-soft);
}

.card-head {
  margin-bottom: 18px;
}

.card-head h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.2;
}

.card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.sticky {
  position: sticky;
  top: 18px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 13px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.section-title::before {
  content: "";
  width: 7px;
  height: 28px;
  border-radius: 999px;
  background: var(--primary);
}

.section-title.compact {
  margin: 18px 0 12px;
  font-size: 14px;
}

.section-title.compact::before {
  width: 6px;
  height: 22px;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid + .grid {
  margin-top: 14px;
}

.field-full + .grid,
.field + .grid {
  margin-top: 14px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flight-options-grid.is-flight-excluded {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.passenger-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.passenger-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  align-items: center;
  gap: 8px;
  min-height: 78px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefb;
  overflow: hidden;
}

.passenger-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.passenger-copy strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 950;
}

.passenger-copy span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 750;
}

.passenger-stepper {
  display: inline-grid;
  grid-template-columns: 24px 24px 24px;
  align-items: center;
  gap: 3px;
  width: 78px;
  min-width: 78px;
}

.passenger-stepper button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.passenger-stepper button:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fffaf4;
}

.passenger-stepper button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.passenger-stepper input {
  width: 24px;
  min-width: 0;
  max-width: 24px;
  min-height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  appearance: textfield;
}

.passenger-stepper input::-webkit-outer-spin-button,
.passenger-stepper input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.child-age-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.child-age-field {
  display: grid;
  gap: 7px;
}

.child-age-field label {
  font-size: 12px;
}

label {
  color: #344154;
  font-size: 14px;
  font-weight: 800;
}

.required-note {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  color: #c22d3a;
  font-size: 11px;
  font-weight: 950;
  vertical-align: middle;
}

.required-note::before {
  content: "*";
  color: #c22d3a;
  font-size: 13px;
  line-height: 1;
}

.guide-mode-label {
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .guide-mode-label {
    white-space: normal;
  }

  .group-trip-note {
    align-items: stretch;
    flex-direction: column;
  }

  .group-trip-note .btn {
    width: 100%;
  }
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fffefb;
  font-size: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #c22d3a;
  box-shadow: 0 0 0 4px rgba(194, 45, 58, 0.1);
}

.field-error {
  color: #b4232e;
  font-size: 12px;
  font-weight: 800;
}

select {
  cursor: pointer;
}

select[multiple] {
  min-height: 150px;
}

textarea {
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #c1b3a0;
}

input:focus,
select:focus,
textarea:focus,
.tab-btn:focus-visible,
.btn:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(173, 135, 69, 0.16);
}

.field-help {
  color: var(--muted);
  font-size: 12px;
}

.group-trip-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(181, 98, 46, 0.24);
  border-radius: var(--radius);
  background: rgba(248, 239, 227, 0.78);
}

.group-trip-note strong,
.group-trip-note span {
  display: block;
}

.group-trip-note strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.group-trip-note span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.btn-small {
  min-height: 38px;
  padding: 0 13px;
  font-size: 12px;
  white-space: nowrap;
}

.addon-help {
  margin-top: -8px;
  margin-bottom: 14px;
}

.addon-groups {
  display: grid;
  gap: 18px;
}

.addon-group {
  display: grid;
  gap: 10px;
}

.addon-group-title {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
}

.checkbox-grid,
.city-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-card,
.city-check-card {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefb;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.check-card:hover,
.city-check-card:hover {
  border-color: rgba(173, 135, 69, 0.52);
  box-shadow: 0 8px 18px rgba(23, 32, 50, 0.07);
  transform: translateY(-1px);
}

.check-card:has(input:checked),
.city-check-card:has(input:checked) {
  border-color: rgba(173, 135, 69, 0.72);
  background: #fbf6ea;
  box-shadow: inset 0 0 0 1px rgba(173, 135, 69, 0.22);
}

.check-card input,
.city-check-card input {
  width: auto;
  min-height: auto;
  margin: 0;
  accent-color: var(--primary);
  transform: scale(1.08);
}

.check-card span,
.city-check-card span {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.22;
  font-weight: 800;
}

.check-card span.is-long {
  font-size: 13px;
  line-height: 1.16;
}

.check-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
  background: rgba(255, 253, 248, 0.52);
  box-shadow: none;
  transform: none;
}

.check-card.is-disabled:hover {
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.check-card.is-disabled input {
  cursor: not-allowed;
}

.addon-disabled-reason {
  flex-basis: 100%;
  margin-left: 26px;
  color: rgba(122, 39, 43, 0.88);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.3;
}

.form-actions,
.result-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: #fffefb;
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--surface-cool);
}

.estimate-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(173, 135, 69, 0.24);
  border-radius: var(--radius);
  background: #fbf6ea;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(173, 135, 69, 0.26);
  border-top-color: var(--primary);
  border-radius: 999px;
  animation: bsw-spin 0.72s linear infinite;
}

@keyframes bsw-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.16);
}

.btn-danger {
  background: var(--danger);
  color: white;
}

.btn-danger:hover {
  background: var(--danger-dark);
}

.btn-wa {
  width: 100%;
  background: #1fb85a;
  color: white;
}

.btn-wa:hover {
  background: #168d46;
}

.alert,
.info-box,
.disclaimer-box,
.recommend-box,
.lead-status {
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
}

.alert {
  margin-bottom: 14px;
}

.form-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  width: min(430px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid rgba(194, 45, 58, 0.42);
  border-left: 5px solid #c22d3a;
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 24px 70px rgba(17, 17, 19, 0.22);
}

.form-toast strong {
  display: block;
  margin-bottom: 4px;
  color: #111113;
  font-size: 15px;
}

.form-toast p {
  margin: 0;
  color: #6f1f28;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.form-toast button {
  align-self: start;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(194, 45, 58, 0.24);
  border-radius: 999px;
  background: rgba(194, 45, 58, 0.08);
  color: #9d1f2a;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.alert.error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.alert.success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.lead-status.pending {
  border: 1px solid var(--info-line);
  background: var(--info-bg);
  color: var(--info-text);
}

.lead-status.success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.lead-status.error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.info-box {
  margin-top: 14px;
  border: 1px solid var(--info-line);
  background: var(--info-bg);
  color: var(--info-text);
  font-weight: 700;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin-top: 10px;
  padding: 22px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.78), rgba(241, 236, 227, 0.88)),
    var(--surface-soft);
  color: var(--muted);
  text-align: center;
}

.result-panel {
  display: grid;
  gap: 16px;
}

.continue-box {
  padding: 16px;
  border: 1px solid rgba(173, 135, 69, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(246, 239, 226, 0.72)),
    var(--surface);
}

.free-consultation-badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  margin-bottom: 10px;
  padding: 0 10px;
  border: 1px solid rgba(31, 184, 90, 0.22);
  border-radius: 999px;
  background: rgba(31, 184, 90, 0.08);
  color: #13763a;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
}

.continue-box h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.continue-box > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.lead-grid {
  grid-template-columns: 1fr;
}

.continue-box .lead-status {
  margin-top: 14px;
}

.result-actions .btn {
  flex: 1 1 180px;
}

.result-actions .btn-wa {
  width: auto;
}

.price-box {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: var(--radius);
  color: white;
  background:
    linear-gradient(135deg, rgba(17, 17, 19, 0.98), rgba(78, 62, 34, 0.94)),
    var(--ink);
}

.price-box::after {
  content: "";
  position: absolute;
  inset: auto -28px -44px auto;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.price-label {
  position: relative;
  margin-bottom: 6px;
  font-size: 14px;
  opacity: 0.94;
}

.price-value {
  position: relative;
  font-size: 32px;
  font-weight: 950;
  line-height: 1.12;
}

.price-sub {
  position: relative;
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.88;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.stat-label {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.stat-value {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.summary-box {
  padding-top: 2px;
}

.summary-box h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
}

.summary-box > p {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.summary-rows {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: #fffefb;
  font-size: 14px;
}

.summary-row:nth-child(even) {
  background: var(--surface-soft);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row span {
  color: var(--muted);
}

.summary-row strong {
  max-width: 62%;
  color: var(--ink);
  text-align: right;
  overflow-wrap: anywhere;
}

.recommend-box {
  border: 1px solid var(--warning-line);
  background: var(--warning-bg);
  color: var(--warning-text);
}

.disclaimer-box {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--muted);
}

.pricing-editor {
  min-height: 620px;
  font-family: "SFMono-Regular", Consolas, Monaco, monospace;
  font-size: 12px;
  line-height: 1.55;
  tab-size: 2;
}

.admin-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #344154;
  font-size: 14px;
}

.admin-list strong {
  color: var(--ink);
}

.hidden {
  display: none !important;
}

.site-page {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(238, 247, 245, 0.72) 42%, rgba(255, 250, 240, 0.52)),
    #f6f7f1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 219, 207, 0.82);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(16px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
}

.site-brand {
  margin-bottom: 0;
  color: var(--ink);
}

.site-brand .brand-kicker {
  color: var(--muted);
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.site-menu a {
  color: #344154;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.site-menu a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-social-link,
.hero-social-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(173, 135, 69, 0.34);
  border-radius: 999px;
  color: #514b41;
  background: rgba(255, 253, 247, 0.72);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.header-social-link:hover,
.hero-social-icon:hover {
  border-color: rgba(173, 135, 69, 0.72);
  background: #fffdf7;
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.header-social-link svg,
.hero-social-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.hero-social-icon {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.hero-social-icon:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(173, 135, 69, 0.34);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.78);
}

.language-switch button {
  appearance: none;
  min-width: 36px;
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #514b41;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.language-switch button.is-active {
  background: #0b0c0f;
  color: #fffdf7;
}

.hero-language {
  display: flex;
  width: max-content;
  margin: 0 0 24px;
  background: rgba(255, 253, 247, 0.1);
}

.hero-language button {
  color: rgba(255, 253, 247, 0.82);
}

.hero-language button.is-active {
  background: #fffdf7;
  color: #0b0c0f;
}

.nav-cta {
  min-width: 132px;
}

.site-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 560px;
  color: white;
  background: var(--ink);
}

.site-hero-photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(12, 18, 28, 0.94), rgba(15, 38, 44, 0.74) 46%, rgba(151, 40, 56, 0.28)),
    url("assets/site/family-city-view.jpg");
  background-position: center 42%;
  background-size: cover;
  transform: scale(1.02);
}

.site-hero-inner {
  display: grid;
  align-content: center;
  gap: 32px;
  min-height: 560px;
  padding: 66px 0 54px;
}

.site-hero-copy {
  max-width: 830px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-hero .eyebrow,
.final-cta .eyebrow {
  color: #ffd166;
}

.site-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: #fffaf0;
  font-size: 64px;
  line-height: 1;
}

.hero-lead {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 860px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 850;
}

.proof-band {
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-grid div {
  display: grid;
  gap: 7px;
  min-height: 136px;
  padding: 25px;
  background: linear-gradient(135deg, #fffdf8, #eef7f5);
}

.proof-grid strong {
  color: var(--ink);
  font-size: 17px;
}

.proof-grid span {
  color: var(--muted);
  font-size: 14px;
}

.site-section {
  padding: 82px 0;
}

.section-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 52px;
  align-items: start;
}

.section-layout.reverse {
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.84fr);
}

.section-intro {
  max-width: 500px;
}

.section-intro h2,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  line-height: 1.08;
}

.section-intro p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section-intro .btn {
  margin-top: 24px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 234px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: var(--shadow-soft);
}

.feature-index {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
}

.feature-card h3,
.route-card h3,
.process-item h3,
.compare-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.feature-card p,
.route-card p,
.process-item p,
.compare-grid p,
.compare-grid li,
.faq-list p,
.checklist-item span {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.route-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef7f5;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.route-card {
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: var(--shadow-soft);
}

.route-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dce6df;
}

.route-card div {
  padding: 18px;
}

.route-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.process-section {
  background: #fffdf8;
}

.process-list,
.faq-list,
.compare-grid {
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fffdf8, #fff6df);
}

.process-item > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 950;
}

.checklist-section {
  background:
    linear-gradient(135deg, rgba(23, 32, 50, 0.96), rgba(15, 118, 110, 0.9)),
    var(--ink);
}

.checklist-section .section-heading h2 {
  color: #fffaf0;
}

.checklist-section .eyebrow {
  color: #ffd166;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.checklist-item {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.checklist-item strong {
  color: white;
  font-size: 17px;
}

.checklist-item span {
  color: rgba(255, 255, 255, 0.72);
}

.compare-section {
  background: #f7faf7;
}

.compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: var(--shadow-soft);
}

.compare-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.faq-section {
  background: #fffdf8;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefb;
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  padding: 0 20px 18px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  color: white;
  background:
    linear-gradient(90deg, rgba(12, 18, 28, 0.94), rgba(151, 40, 56, 0.72)),
    url("assets/site/osaka-night.jpg");
  background-position: center;
  background-size: cover;
}

.final-cta-inner {
  max-width: 780px;
}

.final-cta h2 {
  color: #fffaf0;
}

.final-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #172032;
  color: white;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fffaf0;
}

.site-footer span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffd166;
}

.premium-site {
  --bg: #f7f4ee;
  --surface: #fffdf7;
  --surface-soft: #f1ece3;
  --ink: #0b0c0f;
  --text: #24242a;
  --muted: #6e6a61;
  --line: #ded4c4;
  --line-strong: #cfc0aa;
  --primary: #ad8745;
  --primary-dark: #876833;
  --accent: #0b0c0f;
  --accent-dark: #0b0c0f;
  background: #f7f4ee;
  color: var(--text);
}

.premium-header {
  border-bottom: 1px solid rgba(222, 212, 196, 0.86);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 10px 28px rgba(11, 12, 15, 0.045);
}

.premium-nav {
  min-height: 82px;
}

.premium-brand {
  gap: 13px;
  margin-bottom: 0;
  color: var(--ink);
}

.brand-logo-img {
  display: block;
  width: 52px;
  height: 52px;
  padding: 8px;
  border: 1px solid rgba(176, 138, 71, 0.42);
  border-radius: 50%;
  background: #fffdf7;
  object-fit: contain;
}

.premium-brand .brand-kicker {
  color: var(--primary-dark);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-brand strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.premium-menu a {
  color: #514b41;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.premium-site .btn {
  border-radius: 4px;
  min-height: 48px;
  letter-spacing: 0.01em;
}

.premium-site .btn-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fffdf7;
}

.premium-site .btn-primary:hover {
  background: var(--primary-dark);
}

.premium-site .btn-secondary {
  border-color: rgba(255, 253, 247, 0.54);
  background: rgba(255, 253, 247, 0.08);
  color: #fffdf7;
}

.premium-site .btn-secondary:hover {
  border-color: rgba(255, 253, 247, 0.84);
  background: rgba(255, 253, 247, 0.16);
}

.premium-site .btn-secondary.dark-text {
  border-color: var(--line-strong);
  background: #fffdf7;
  color: var(--ink);
}

.premium-site .btn-secondary.dark-text:hover {
  border-color: var(--primary);
  background: #fbf6ea;
  color: var(--ink);
}

.premium-site .btn-ghost {
  border-color: rgba(255, 253, 247, 0.42);
  background: rgba(255, 253, 247, 0.08);
  color: #fffdf7;
}

.premium-site .btn-ghost:hover {
  border-color: rgba(255, 253, 247, 0.78);
  background: rgba(255, 253, 247, 0.16);
}

.premium-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 640px;
  color: #fffdf7;
  background: #0b0c0f;
}

.premium-hero-photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(8, 9, 12, 0.96), rgba(11, 12, 15, 0.76) 46%, rgba(11, 12, 15, 0.26)),
    linear-gradient(180deg, rgba(11, 12, 15, 0.18), rgba(11, 12, 15, 0.86)),
    url("assets/site/hero-fuji-family.jpg");
  background-position: center 44%;
  background-size: cover;
  transform: scale(1.02);
}

.premium-hero-inner {
  display: grid;
  align-content: center;
  gap: 58px;
  min-height: 640px;
  padding: 78px 0 58px;
}

.premium-hero-copy {
  max-width: 780px;
}

.premium-site .eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premium-hero .eyebrow,
.premium-estimator .eyebrow,
.premium-final-cta .eyebrow {
  color: #e8c27a;
}

.premium-hero h1 {
  max-width: 680px;
  margin: 0 0 18px;
  color: #fffdf7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 82px;
  font-weight: 500;
  line-height: 0.94;
}

.hero-tagline {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 253, 247, 0.84);
  font-size: 24px;
  font-weight: 520;
  line-height: 1.28;
}

.premium-hero .hero-lead {
  max-width: 720px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 19px;
}

.premium-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 900px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  background: rgba(255, 253, 247, 0.16);
}

.premium-hero-meta div {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 18px 20px;
  background: rgba(11, 12, 15, 0.42);
  backdrop-filter: blur(10px);
}

.premium-hero-meta span,
.premium-proof span,
.premium-process-grid span,
.premium-service-card span,
.journey-card span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-hero-meta strong {
  color: #fffdf7;
  font-size: 16px;
  line-height: 1.35;
}

.premium-proof {
  border-bottom: 1px solid var(--line);
  background: #0b0c0f;
  color: #fffdf7;
}

.premium-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 247, 0.12);
}

.premium-proof-grid div {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 24px;
  background: #0f1116;
}

.premium-proof strong {
  color: #fffdf7;
  font-size: 20px;
  line-height: 1.15;
}

.premium-proof span {
  color: rgba(255, 253, 247, 0.62);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.premium-section {
  padding: 84px 0;
}

.premium-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 64px;
  align-items: start;
}

.premium-split.reverse {
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.84fr);
}

.premium-site .section-intro h2,
.premium-site .section-heading h2,
.premium-estimator h2,
.premium-final-cta h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
}

.premium-site .section-intro p:not(.eyebrow),
.premium-site .section-heading p:not(.eyebrow),
.planner-copy p,
.premium-estimator p {
  color: var(--muted);
  font-size: 16px;
}

.planner-copy {
  display: grid;
  gap: 22px;
  max-width: 660px;
  padding-top: 44px;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: var(--primary-dark);
}

.service-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf7;
}

.premium-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.premium-service-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 248px;
  padding: 28px;
  background: #fffdf7;
}

.premium-service-card h3,
.premium-process-grid h3,
.premium-compare h3,
.trust-list strong {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.premium-service-card p,
.premium-process-grid p,
.premium-compare p,
.trust-list span {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.journey-section {
  background: #f5f1e8;
}

.premium-journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.journey-card {
  position: relative;
  display: grid;
  min-height: 410px;
  overflow: hidden;
  border-radius: 0;
  background: #0b0c0f;
  color: #fffdf7;
}

.journey-card.wide {
  grid-row: span 2;
  min-height: 838px;
}

.journey-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.journey-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 12, 15, 0.06), rgba(11, 12, 15, 0.84));
}

.journey-card div {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  gap: 10px;
  padding: 26px;
}

.journey-card h3 {
  margin: 0;
  color: #fffdf7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.journey-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 253, 247, 0.76);
  font-size: 15px;
}

.gallery-section {
  background: #0b0c0f;
  color: #fffdf7;
}

.gallery-section .section-heading h2 {
  color: #fffdf7;
}

.gallery-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 253, 247, 0.68);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: #14161d;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 570px;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, opacity 420ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 12, 15, 0), rgba(11, 12, 15, 0.72));
}

.gallery-item:hover img {
  transform: scale(1.035);
  opacity: 0.92;
}

.gallery-item figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fffdf7;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.instagram-section {
  overflow: hidden;
  border-top: 1px solid rgba(255, 253, 247, 0.08);
  background:
    radial-gradient(circle at 84% 16%, rgba(190, 153, 85, 0.18), transparent 34%),
    linear-gradient(135deg, #0b0c0f 0%, #17181d 54%, #0b0c0f 100%);
  color: #fffdf7;
}

.instagram-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.instagram-copy {
  display: grid;
  gap: 18px;
  max-width: 620px;
}

.instagram-copy h2 {
  margin: 0;
  color: #fffdf7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 500;
  line-height: 0.96;
}

.instagram-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 253, 247, 0.7);
  font-size: 17px;
  line-height: 1.7;
}

.instagram-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
}

.instagram-actions > span {
  color: rgba(255, 253, 247, 0.56);
  font-size: 13px;
  font-weight: 800;
}

.instagram-button {
  gap: 10px;
}

.instagram-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-visual {
  display: block;
  color: inherit;
  text-decoration: none;
}

.instagram-frame {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 247, 0.16);
  background: rgba(255, 253, 247, 0.06);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.instagram-visual:hover .instagram-frame {
  border-color: rgba(190, 153, 85, 0.56);
  background: rgba(255, 253, 247, 0.08);
  transform: translateY(-3px);
}

.instagram-frame-head,
.instagram-frame-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.instagram-frame-head {
  justify-content: flex-start;
}

.instagram-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 999px;
  background: #fffdf7;
}

.instagram-avatar img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.instagram-frame-head strong,
.instagram-frame-foot strong {
  display: block;
  color: #fffdf7;
  font-size: 15px;
  line-height: 1.2;
}

.instagram-frame-head small,
.instagram-frame-foot span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 253, 247, 0.62);
  font-size: 12px;
  font-weight: 850;
}

.instagram-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.instagram-photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #14161d;
}

.gallery-page-main {
  min-height: 100vh;
  background: #0b0c0f;
}

.gallery-page-section {
  padding: 84px 0 96px;
  color: #fffdf7;
}

.gallery-page-heading {
  max-width: 920px;
  margin-bottom: 40px;
}

.gallery-page-heading h1 {
  margin: 0;
  color: #fffdf7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  font-weight: 500;
  line-height: 0.96;
}

.gallery-page-heading p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 253, 247, 0.68);
  font-size: 17px;
}

.full-gallery-grid {
  column-count: 4;
  column-gap: 12px;
}

.full-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #14161d;
  cursor: zoom-in;
  break-inside: avoid;
}

.full-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 420ms ease, opacity 420ms ease;
}

.full-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 12, 15, 0), rgba(11, 12, 15, 0.1));
}

.full-gallery-item:hover img {
  transform: scale(1.035);
  opacity: 0.92;
}

.full-gallery-item:focus-visible {
  outline: 2px solid #e8c27a;
  outline-offset: 3px;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 28px;
}

.gallery-modal.is-open {
  display: grid;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 6, 8, 0.86);
  cursor: zoom-out;
}

.gallery-modal-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: min(1120px, calc(100vw - 48px));
  max-height: calc(100vh - 56px);
  margin: 0;
}

.gallery-modal-content img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 128px);
  border: 1px solid rgba(255, 253, 247, 0.18);
  object-fit: contain;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.38);
}

.gallery-modal-content figcaption {
  color: rgba(255, 253, 247, 0.72);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.gallery-modal-close {
  justify-self: end;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.08);
  color: #fffdf7;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.modal-open {
  overflow: hidden;
}

.detail-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf7;
}

.premium-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.premium-compare article {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 28px;
  background: #fffdf7;
}

.premium-estimator {
  padding: 84px 0;
  color: #fffdf7;
  background:
    linear-gradient(90deg, rgba(11, 12, 15, 0.96), rgba(11, 12, 15, 0.82)),
    url("assets/site/family-city-view.jpg");
  background-position: center 42%;
  background-size: cover;
}

.premium-estimator-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.premium-estimator h2 {
  max-width: 720px;
  color: #fffdf7;
}

.premium-estimator p {
  max-width: 700px;
  color: rgba(255, 253, 247, 0.72);
}

.premium-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid var(--line);
  background: var(--line);
}

.premium-process-grid div {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 190px;
  padding: 24px;
  background: #fffdf7;
}

.trust-section {
  border-top: 1px solid var(--line);
  background: #f0e8da;
}

.compact-heading {
  max-width: none;
  margin-bottom: 34px;
}

.testimonial-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
  align-items: start;
}

.testimonial-board {
  display: grid;
  gap: 18px;
}

.testimonial-copy {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fffdf7;
}

.testimonial-copy span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-copy blockquote {
  margin: 14px 0 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.16;
}

.testimonial-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.testimonial-screenshots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.testimonial-screenshots img {
  display: block;
  width: 100%;
  border: 1px solid rgba(207, 192, 170, 0.82);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(11, 12, 15, 0.12);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.testimonial-page-main {
  background: #f7f4ee;
}

.testimonial-page-hero {
  padding: 86px 0 50px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 0%, rgba(173, 135, 69, 0.18), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f2eadf 100%),
    #f7f4ee;
}

.testimonials-page .gallery-page-heading {
  margin-bottom: 0;
}

.testimonials-page .gallery-page-heading h1 {
  max-width: 760px;
  color: #0b0c0f;
}

.testimonials-page .gallery-page-heading p {
  color: rgba(11, 12, 15, 0.68);
}

.testimonial-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.testimonial-page-section {
  border-top: 0;
}

.muted-section {
  background: #f0e8da;
}

.testimonial-page-screenshots {
  column-count: 4;
  column-gap: 14px;
  align-items: start;
}

.testimonial-shot-item {
  margin-bottom: 14px;
  min-height: 0;
  box-shadow: 0 18px 50px rgba(11, 12, 15, 0.12);
}

.testimonial-shot-item::after {
  opacity: 0.04;
}

.testimonial-shot-item img {
  object-fit: contain;
  background: #fff;
}

.testimonial-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-list div {
  display: grid;
  gap: 7px;
  padding: 22px;
  background: #fffdf7;
}

.proof-assets-section {
  border-top: 1px solid var(--line);
  background: #fffdf7;
}

.proof-assets-section .premium-split {
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
}

.video-card {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0c0f;
  box-shadow: 0 24px 70px rgba(11, 12, 15, 0.12);
}

.testimonial-video {
  position: static;
}

.testimonial-video-list {
  display: grid;
  gap: 14px;
}

.testimonial-video-card {
  position: relative;
  appearance: none;
  display: grid;
  align-content: end;
  width: 100%;
  min-height: 380px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(207, 192, 170, 0.82);
  border-radius: 4px;
  color: #fffdf8;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(11, 12, 15, 0.2), rgba(11, 12, 15, 0.9)),
    var(--video-thumb, url("assets/testimonials/testimonial-01.jpg")) center / cover;
  box-shadow: 0 24px 70px rgba(11, 12, 15, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.testimonial-page-section .testimonial-video-card {
  min-height: 320px;
}

.testimonial-page-section .testimonial-video-card .video-play {
  margin-bottom: 58px;
}

.testimonial-page-section .testimonial-video-card strong {
  font-size: 28px;
}

.testimonial-video-card:hover {
  border-color: rgba(173, 135, 69, 0.72);
  box-shadow: 0 28px 80px rgba(11, 12, 15, 0.18);
  transform: translateY(-2px);
}

.testimonial-video-card .video-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 34px;
  margin-bottom: 88px;
  padding: 0 14px;
  border: 1px solid rgba(255, 253, 248, 0.54);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.12);
  color: #fffdf8;
  font-size: 12px;
  font-weight: 900;
}

.testimonial-video-card span:not(.video-play) {
  margin-bottom: 12px;
  color: #c5a15b;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-video-card strong {
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.04;
}

.testimonial-video-card small {
  margin-top: 10px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.drive-video {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 0;
  aspect-ratio: 16 / 9;
}

.drive-video-link {
  display: grid;
  align-content: end;
  min-height: 380px;
  padding: 28px;
  color: white;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(11, 12, 15, 0.18), rgba(11, 12, 15, 0.92)),
    url("assets/testimonials/testimonial-01.jpg") center / cover;
}

.drive-video-link span {
  margin-bottom: 12px;
  color: #c5a15b;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drive-video-link strong {
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.04;
}

.drive-video-link small {
  margin-top: 10px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 16px 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: #18a85d;
  color: white;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(10, 74, 41, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.floating-whatsapp:hover {
  background: #128c4e;
  box-shadow: 0 22px 60px rgba(10, 74, 41, 0.36);
  transform: translateY(-2px);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.video-modal.is-open {
  display: grid;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 8, 10, 0.82);
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 6px;
  background: #0b0c0f;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.video-modal-content iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 6px;
}

.video-modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  z-index: 2;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 253, 248, 0.32);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: #fffdf8;
  font-weight: 900;
  cursor: pointer;
}

.route-panel {
  display: grid;
  align-content: start;
}

.route-panel h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.05;
}

.route-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.route-preview-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.route-preview-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  background: #fffdf7;
}

.route-preview-card.featured {
  border-color: #0b0c0f;
  background: #0b0c0f;
  color: #fffdf7;
}

.route-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.route-card-head span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card-head strong {
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid rgba(176, 138, 71, 0.34);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 950;
}

.route-preview-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.route-preview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.route-preview-card.featured h3 {
  color: #fffdf7;
}

.route-preview-card.featured p {
  color: rgba(255, 253, 247, 0.72);
}

.route-preview-card.featured .route-card-head strong {
  border-color: rgba(255, 253, 247, 0.22);
  color: #e8c27a;
}

.route-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.route-chips span {
  padding: 7px 10px;
  border: 1px solid rgba(207, 192, 170, 0.78);
  background: #f8f2e7;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.route-preview-card.featured .route-chips span {
  border-color: rgba(255, 253, 247, 0.2);
  background: rgba(255, 253, 247, 0.08);
  color: #fffdf7;
}

.route-highlights {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.route-highlights li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.route-highlights li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--primary);
}

.route-preview-card.featured .route-highlights li {
  color: rgba(255, 253, 247, 0.74);
}

.premium-site .faq-section {
  background: #fffdf7;
}

.faq-simple {
  display: grid;
  gap: 34px;
}

.faq-simple h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 0.96;
}

.faq-simple .faq-list {
  max-width: 900px;
}

.estimate-reason-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(173, 135, 69, 0.12), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f6f0e6 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.estimate-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--line);
}

.estimate-reason-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.96);
}

.estimate-reason-grid span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.estimate-reason-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
}

.estimate-reason-grid p {
  margin: 0;
  color: rgba(74, 56, 43, 0.72);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.approach-strip {
  background: #111113;
  color: #fffdf8;
}

.approach-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}

.approach-strip h2 {
  margin: 0;
  color: #fffdf8;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.6vw, 78px);
  font-weight: 400;
  line-height: 0.96;
}

.approach-strip .eyebrow {
  margin-bottom: 22px;
  color: #c9a45d;
}

.approach-points {
  display: grid;
  gap: 18px;
  max-width: 650px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.72;
}

.approach-points p {
  margin: 0;
}

.gallery-page-cta {
  padding: clamp(44px, 6vw, 76px) 0;
  background: #111113;
  color: #fffdf8;
}

.gallery-page-cta-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.gallery-page-cta h2 {
  margin: 0;
  color: #fffdf8;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 400;
  line-height: 0.98;
}

.gallery-page-cta p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.68;
}

.gallery-page-cta .hero-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.premium-final-cta {
  padding: 82px 0;
  color: #fffdf7;
  background:
    linear-gradient(90deg, rgba(11, 12, 15, 0.96), rgba(101, 33, 38, 0.76)),
    url("assets/site/osaka-night.jpg");
  background-position: center;
  background-size: cover;
}

.premium-final-inner {
  max-width: 840px;
}

.premium-final-cta h2 {
  color: #fffdf7;
}

.premium-footer {
  background: #0b0c0f;
}

.private-car-page {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(241, 236, 227, 0.72) 44%, rgba(255, 253, 248, 0.92)),
    #f7f4ed;
}

.car-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: white;
  background: #0b0c0f;
}

.car-hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.9), rgba(8, 9, 12, 0.5) 54%, rgba(8, 9, 12, 0.78)),
    url("assets/site/osaka-night.jpg") center / cover;
  transform: scale(1.02);
}

.car-hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: 70px 0;
}

.car-hero-copy {
  max-width: 780px;
}

.car-hero-vehicle {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 0;
  border: 1px solid #fff;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.car-hero-vehicle img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.22));
}

.car-hero h1 {
  margin: 0;
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.94;
  letter-spacing: 0;
}

.car-hero p:not(.eyebrow) {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.65;
}

.car-overview-section {
  background:
    radial-gradient(circle at 84% 8%, rgba(173, 135, 69, 0.1), transparent 30%),
    #fffdf8;
}

.car-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(209, 198, 180, 0.9);
}

.car-vehicle-card {
  min-height: 280px;
  padding: 34px;
  border-right: 1px solid rgba(209, 198, 180, 0.9);
  background: rgba(255, 253, 248, 0.72);
}

.car-vehicle-card:last-child {
  border-right: 0;
}

.car-vehicle-card span,
.car-price-card-head span,
.car-request-grid article > span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.car-vehicle-card h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 31px;
  line-height: 1.1;
}

.car-vehicle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.car-price-section {
  background: #f4efe6;
}

.car-price-section .section-heading p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.car-status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-top: 20px;
  padding: 0 12px;
  border: 1px solid rgba(173, 135, 69, 0.24);
  background: rgba(255, 253, 248, 0.68);
  color: #6d5a36;
  font-size: 12px;
  font-weight: 900;
}

.car-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.car-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 34px;
}

.car-home-layout .car-vehicle-grid {
  min-height: 100%;
}

.car-request-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(209, 198, 180, 0.9);
  background: #111113;
  color: #fffdf8;
}

.car-request-note span {
  margin-bottom: 18px;
  color: #c5a15b;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.car-request-note strong {
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.08;
}

.car-request-note p {
  margin: 18px 0 20px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.62;
}

.car-request-note .text-link {
  color: #f1dca8;
}

.car-price-card {
  min-width: 0;
  border: 1px solid rgba(209, 198, 180, 0.9);
  background: #fffdf8;
}

.car-price-card-head {
  padding: 24px;
  border-bottom: 1px solid rgba(209, 198, 180, 0.9);
}

.car-price-card-head span {
  margin-bottom: 12px;
}

.car-price-card-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.18;
}

.car-table-wrap {
  overflow-x: auto;
}

.car-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.car-table th,
.car-table td {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(209, 198, 180, 0.72);
  text-align: left;
  vertical-align: top;
}

.car-table th {
  color: var(--muted);
  background: rgba(246, 239, 226, 0.68);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.car-table td {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.car-table td:first-child {
  width: 44%;
}

.car-table td strong {
  display: block;
  margin-bottom: 4px;
}

.car-table td span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.car-empty {
  padding: 22px;
  color: var(--muted);
  font-weight: 800;
}

.car-rate-section {
  background:
    radial-gradient(circle at 86% 8%, rgba(181, 98, 46, 0.09), transparent 32%),
    linear-gradient(180deg, #f8f3ea 0%, #fffdf8 100%);
}

.car-rate-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 38px;
}

.car-rate-panel,
.car-rate-result {
  border: 1px solid rgba(209, 198, 180, 0.92);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 22px 58px rgba(44, 32, 24, 0.08);
}

.car-rate-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 2.8vw, 34px);
}

.car-rate-field {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.car-rate-field[hidden] {
  display: none;
}

.car-rate-field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.03em;
}

.car-rate-field select {
  width: 100%;
  min-height: 58px;
  padding: 0 44px 0 18px;
  border: 1px solid rgba(172, 154, 126, 0.88);
  border-radius: 0;
  background-color: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 750;
}

.car-rate-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(28px, 3vw, 42px);
}

.rate-pill {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(181, 98, 46, 0.34);
  color: var(--primary);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.car-rate-result h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.rate-vehicle {
  margin: 16px 0 0;
  color: rgba(74, 56, 43, 0.72);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rate-amount {
  display: block;
  margin-top: 22px;
  color: var(--primary-dark);
  font-size: clamp(28px, 3.3vw, 44px);
  font-weight: 950;
  line-height: 1;
}

.rate-note {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.66;
}

.car-rate-contact-note {
  margin-top: 18px;
  color: rgba(74, 56, 43, 0.72);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

.car-rate-contact-note a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.car-rate-contact-note a:hover {
  color: #121211;
}

.car-rate-data {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(209, 198, 180, 0.72);
  background: rgba(255, 253, 248, 0.62);
  color: rgba(74, 56, 43, 0.72);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.car-rate-data strong {
  color: var(--ink);
}

.car-request-section {
  background: #fffdf8;
}

.vehicle-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.vehicle-catalog-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 420px;
  padding: clamp(22px, 2.5vw, 30px);
  border: 1px solid rgba(209, 198, 180, 0.9);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 22px 58px rgba(44, 32, 24, 0.08);
}

.vehicle-photo {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(209, 198, 180, 0.82);
  background: #fff;
  overflow: hidden;
}

.vehicle-photo img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.vehicle-catalog-card:nth-child(4) .vehicle-photo img {
  height: 190px;
}

.vehicle-illustration {
  display: grid;
  place-items: center;
  min-height: 126px;
  border: 1px solid rgba(209, 198, 180, 0.8);
  background:
    linear-gradient(140deg, rgba(17, 17, 19, 0.08), transparent 48%),
    #f3eee5;
}

.vehicle-illustration svg {
  width: 100%;
  max-width: 250px;
  fill: none;
  stroke: #111113;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
}

.vehicle-illustration path:nth-child(2) {
  stroke-width: 5;
}

.vehicle-illustration circle {
  fill: #111113;
  stroke: #111113;
}

.vehicle-catalog-card > span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vehicle-catalog-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.94;
}

.vehicle-catalog-card p {
  margin: 0;
  color: rgba(74, 56, 43, 0.72);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.65;
}

.vehicle-catalog-card .text-link {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: fit-content;
  padding: 0 18px;
  border: 1px solid rgba(181, 98, 46, 0.82);
  background: var(--primary);
  color: #fffdf8;
  box-shadow: 0 16px 34px rgba(181, 98, 46, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-catalog-card .text-link:hover {
  border-color: #121211;
  background: #121211;
  color: #fffdf8;
  box-shadow: 0 18px 38px rgba(18, 18, 17, 0.18);
  transform: translateY(-2px);
}

.car-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 54px;
  align-items: start;
}

.car-request-grid h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.car-request-grid article p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.68;
}

@media (max-width: 1080px) {
  .topbar-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 36px 0;
  }

  .hero-panel {
    max-width: 620px;
    min-height: 0;
  }

  .topbar h1 {
    font-size: 44px;
  }

  .content-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .site-menu {
    display: none;
  }

  .site-hero,
  .site-hero-inner {
    min-height: 500px;
  }

  .section-layout,
  .section-layout.reverse,
  .route-grid,
  .checklist-grid,
  .premium-proof-grid,
  .premium-service-grid,
  .premium-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-hero,
  .premium-hero-inner {
    min-height: 600px;
  }

  .premium-hero h1 {
    font-size: 72px;
  }

  .hero-tagline {
    font-size: 25px;
  }

  .premium-split,
  .premium-split.reverse,
  .premium-estimator-inner,
  .car-hero-inner,
  .car-rate-layout,
  .car-price-grid,
  .car-request-grid,
  .car-home-layout,
  .approach-strip-inner {
    grid-template-columns: 1fr;
  }

  .estimate-reason-grid,
  .vehicle-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-page-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-assets-section .premium-split {
    grid-template-columns: 1fr;
  }

  .instagram-layout {
    grid-template-columns: 1fr;
  }

  .testimonial-media-grid {
    grid-template-columns: 1fr;
  }

  .video-card {
    position: static;
  }

  .premium-hero-meta {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .car-hero,
  .car-hero-inner {
    min-height: 560px;
  }

  .car-hero-vehicle {
    max-width: 720px;
  }

  .premium-journey-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .full-gallery-grid {
    column-count: 2;
  }

  .testimonial-screenshots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-page-screenshots {
    column-count: 2;
  }

  .testimonial-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-card,
  .journey-card.wide {
    min-height: 520px;
  }

  .section-layout .section-intro,
  .section-layout.reverse .section-intro,
  .section-heading {
    max-width: none;
  }

  .sticky {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .topbar-photo {
    background-position: 62% center;
  }

  .topbar-inner {
    padding: 28px 0 30px;
  }

  .brand-lockup {
    margin-bottom: 28px;
  }

  .topbar h1 {
    font-size: 34px;
  }

  .topbar p {
    font-size: 16px;
  }

  .site-nav {
    min-height: 70px;
  }

  .header-actions {
    gap: 8px;
  }

  .site-brand {
    margin-bottom: 0;
  }

  .site-brand .brand-mark {
    width: 46px;
    height: 46px;
  }

  .site-brand strong {
    font-size: 16px;
  }

  .nav-cta {
    min-width: 0;
    padding: 0 12px;
    font-size: 13px;
  }

  .header-actions .nav-cta {
    display: none;
  }

  .language-switch button {
    min-width: 32px;
    min-height: 30px;
    padding: 0 8px;
  }

  .site-hero,
  .site-hero-inner {
    min-height: auto;
  }

  .site-hero-photo {
    background-position: 54% center;
  }

  .site-hero-inner {
    padding: 48px 0 42px;
  }

  .site-hero h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .tabs,
  .form-actions,
  .admin-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .form-actions .btn,
  .admin-actions .btn,
  .tab-btn {
    flex: 1 1 auto;
  }

  .hero-card,
  .grid-2,
  .grid-3,
  .checkbox-grid,
  .city-check-grid,
  .stat-grid,
  .proof-grid,
  .section-layout,
  .section-layout.reverse,
  .feature-grid,
  .route-grid,
  .checklist-grid,
  .compare-grid,
  .premium-proof-grid,
  .premium-service-grid,
  .premium-process-grid,
  .premium-compare {
    grid-template-columns: 1fr;
  }

  .premium-nav {
    min-height: 72px;
  }

  .brand-logo-img {
    width: 46px;
    height: 46px;
    padding: 7px;
  }

  .premium-hero,
  .premium-hero-inner {
    min-height: auto;
  }

  .premium-hero-photo {
    background-position: 58% center;
  }

  .premium-hero-inner {
    gap: 42px;
    padding: 56px 0 44px;
  }

  .premium-hero h1 {
    font-size: 48px;
  }

  .car-hero,
  .car-hero-inner {
    min-height: 520px;
  }

  .car-hero-inner {
    padding: 54px 0;
  }

  .car-hero-vehicle {
    min-height: 300px;
  }

  .car-hero-vehicle img {
    min-height: 300px;
  }

  .car-hero h1 {
    font-size: 48px;
  }

  .car-hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .premium-hero .hero-lead,
  .hero-tagline {
    font-size: 16px;
  }

  .premium-hero-meta div,
  .premium-proof-grid div,
  .premium-service-card,
  .premium-process-grid div,
  .premium-compare article,
  .trust-list div {
    min-height: 0;
    padding: 20px;
  }

  .premium-section {
    padding: 62px 0;
  }

  .premium-split,
  .premium-split.reverse {
    gap: 30px;
  }

  .planner-copy {
    padding-top: 0;
  }

  .premium-site .section-intro h2,
  .premium-site .section-heading h2,
  .route-panel h2,
  .faq-simple h2,
  .premium-estimator h2,
  .premium-final-cta h2,
  .car-request-grid h2 {
    font-size: 38px;
  }

  .car-vehicle-grid {
    grid-template-columns: 1fr;
  }

  .car-vehicle-card {
    min-height: 0;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(209, 198, 180, 0.9);
  }

  .car-vehicle-card:last-child {
    border-bottom: 0;
  }

  .car-price-card-head {
    padding: 20px;
  }

  .car-rate-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .car-rate-result {
    padding: 24px;
  }

  .car-rate-field select {
    min-height: 54px;
    font-size: 14px;
  }

  .premium-journey-grid {
    gap: 14px;
  }

  .journey-card,
  .journey-card.wide {
    min-height: 430px;
  }

  .journey-card h3 {
    font-size: 31px;
  }

  .gallery-grid,
  .testimonial-screenshots {
    grid-template-columns: 1fr;
  }

  .estimate-reason-grid,
  .vehicle-catalog-grid {
    grid-template-columns: 1fr;
  }

  .estimate-reason-grid article,
  .vehicle-catalog-card {
    min-height: 0;
  }

  .vehicle-photo {
    min-height: 188px;
    padding: 14px;
  }

  .vehicle-photo img {
    height: 188px;
  }

  .instagram-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-frame {
    padding: 12px;
  }

  .testimonial-page-screenshots {
    column-count: 1;
  }

  .gallery-page-section {
    padding: 62px 0 70px;
  }

  .gallery-page-heading h1 {
    font-size: 40px;
  }

  .full-gallery-grid {
    column-count: 1;
  }

  .gallery-item,
  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .testimonial-copy {
    padding: 20px;
  }

  .testimonial-copy blockquote {
    font-size: 24px;
  }

  .drive-video,
  .drive-video-link,
  .testimonial-video-card {
    min-height: 260px;
  }

  .testimonial-video-grid {
    grid-template-columns: 1fr;
  }

  .route-preview-card {
    padding: 18px;
  }

  .route-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .premium-estimator,
  .premium-final-cta {
    padding: 58px 0;
  }

  .hero-card,
  .card {
    padding: 18px;
  }

  .hero-points {
    justify-content: flex-start;
  }

  .site-section {
    padding: 56px 0;
  }

  .section-intro h2,
  .section-heading h2,
  .final-cta h2 {
    font-size: 31px;
  }

  .proof-grid {
    border-right: 0;
    border-left: 0;
  }

  .site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-row {
    display: grid;
    gap: 4px;
  }

  .summary-row strong {
    max-width: none;
    text-align: left;
  }

  .form-toast {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 0 13px;
  }

  .pricing-editor {
    min-height: 440px;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 18px, 1180px);
  }

  .topbar h1 {
    font-size: 30px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-brand {
    gap: 9px;
  }

  .site-brand .brand-kicker {
    display: none;
  }

  .site-brand strong {
    font-size: 14px;
  }

  .brand-logo-img {
    width: 42px;
    height: 42px;
    padding: 7px;
  }

  .premium-brand {
    gap: 9px;
  }

  .premium-brand strong {
    font-size: 13px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 10px;
    font-size: 12px;
  }

  .header-actions .nav-cta {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .header-social-link {
    width: 38px;
    height: 38px;
  }

  .header-social-link svg {
    width: 19px;
    height: 19px;
  }

  .premium-hero h1 {
    font-size: 42px;
  }

  .journey-card,
  .journey-card.wide {
    min-height: 380px;
  }

  .journey-card div {
    padding: 22px;
  }

  .hero-panel,
  .hero-card,
  .card {
    padding: 16px;
  }

  .price-value {
    font-size: 28px;
  }

  .floating-whatsapp span {
    display: none;
  }
}

/* Lumiere-inspired visual refresh */
body {
  background: #faf7f1;
  color: #2c2018;
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.premium-site {
  --bg: #faf7f1;
  --surface: #fffaf4;
  --surface-soft: #f3ede2;
  --surface-deep: #eae1d3;
  --ink: #2c2018;
  --text: #4a382b;
  --muted: #8c7966;
  --line: #e4d8c8;
  --line-strong: #cbb9a3;
  --primary: #b5622e;
  --primary-dark: #7a3d18;
  --sage: #6f8f78;
  --charcoal: #201711;
  background:
    radial-gradient(circle at 84% 6%, rgba(181, 98, 46, 0.1), transparent 30%),
    linear-gradient(180deg, #faf7f1 0%, #f5efe5 46%, #faf7f1 100%);
  color: var(--text);
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

.premium-site h1,
.premium-site h2,
.premium-site .section-intro h2,
.premium-site .section-heading h2,
.premium-site .gallery-page-heading h1,
.premium-site .journey-card h3,
.premium-site .instagram-copy h2,
.premium-site .faq-simple h2,
.premium-site .premium-final-cta h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.premium-header {
  border-bottom: 1px solid rgba(228, 216, 200, 0.82);
  background: rgba(250, 247, 241, 0.9);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.premium-nav {
  min-height: 88px;
}

.premium-brand {
  gap: 14px;
}

.brand-logo-img {
  width: 54px;
  height: 54px;
  border-color: rgba(181, 98, 46, 0.28);
  background: #fffaf4;
  box-shadow: 0 10px 24px rgba(44, 32, 24, 0.08);
}

.premium-brand strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.premium-menu {
  gap: clamp(16px, 2vw, 30px);
}

.premium-menu a {
  position: relative;
  color: rgba(44, 32, 24, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.premium-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.premium-menu a:hover {
  color: var(--ink);
}

.premium-menu a:hover::after {
  transform: scaleX(1);
}

.premium-site .btn {
  min-height: 48px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.premium-site .btn-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fffaf4;
  box-shadow: 0 16px 36px rgba(181, 98, 46, 0.22);
}

.premium-site .btn-primary:hover {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.premium-site .btn-ghost,
.premium-site .btn-secondary.dark-text {
  border-color: var(--line-strong);
  background: rgba(255, 250, 244, 0.64);
  color: var(--ink);
}

.premium-site .btn-ghost:hover,
.premium-site .btn-secondary.dark-text:hover {
  border-color: var(--primary);
  background: #fffaf4;
  color: var(--primary-dark);
}

.header-social-link,
.hero-social-icon {
  border: 1px solid rgba(44, 32, 24, 0.16);
  background: rgba(255, 250, 244, 0.72);
  color: var(--ink);
  box-shadow: none;
}

.header-social-link:hover,
.hero-social-icon:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fffaf4;
}

.premium-hero {
  min-height: 720px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(120deg, #faf7f1 0%, #faf7f1 47%, rgba(243, 237, 226, 0.72) 47%, rgba(243, 237, 226, 0.72) 100%),
    var(--bg);
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 118px max(28px, calc((100vw - 1180px) / 2)) auto auto;
  z-index: 0;
  width: min(48vw, 590px);
  height: 590px;
  border: 1px solid rgba(181, 98, 46, 0.18);
  border-radius: 22px;
  transform: translate(18px, 18px);
}

.premium-hero-photo {
  inset: auto;
  top: 116px;
  right: max(32px, calc((100vw - 1180px) / 2));
  bottom: auto;
  left: auto;
  z-index: 0;
  width: min(48vw, 590px);
  height: 590px;
  border-radius: 22px;
  background-image:
    linear-gradient(180deg, rgba(44, 32, 24, 0.08), rgba(44, 32, 24, 0.24)),
    url("assets/site/hero-fuji-family.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0 34px 90px rgba(44, 32, 24, 0.16);
  transform: none;
}

.premium-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(42px, 6vw, 86px);
  align-content: center;
  min-height: 720px;
  padding: 132px 0 76px;
}

.premium-hero-copy,
.premium-hero-meta {
  grid-column: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--primary-dark);
}

.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.premium-hero h1 {
  max-width: 600px;
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 7vw, 108px);
  font-weight: 400;
  line-height: 0.93;
}

.premium-hero .hero-tagline {
  max-width: 560px;
  margin-top: 28px;
  color: rgba(74, 56, 43, 0.78);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 400;
  line-height: 1.62;
}

.premium-hero .hero-actions {
  margin-top: 34px;
}

.premium-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 640px;
  margin-top: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 24px 54px rgba(44, 32, 24, 0.08);
}

.premium-hero-meta div {
  min-height: 112px;
  padding: 21px;
  border-right: 1px solid var(--line);
  background: transparent;
  backdrop-filter: none;
}

.premium-hero-meta div:last-child {
  border-right: 0;
}

.premium-hero-meta span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.premium-hero-meta strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.premium-proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--ink);
}

.premium-proof-grid {
  gap: 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: transparent;
}

.premium-proof-grid div {
  min-height: 136px;
  padding: 26px;
  border-right: 1px solid var(--line);
  background: transparent;
}

.premium-proof-grid div:last-child {
  border-right: 0;
}

.premium-proof strong {
  color: var(--primary-dark);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.premium-proof span {
  color: rgba(74, 56, 43, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.premium-section {
  padding: clamp(82px, 9vw, 122px) 0;
}

.premium-split {
  gap: clamp(42px, 7vw, 92px);
}

.premium-site .section-heading h2,
.premium-site .section-intro h2,
.premium-estimator h2,
.faq-simple h2,
.premium-final-cta h2 {
  color: var(--ink);
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.96;
}

.premium-site .section-heading p:not(.eyebrow),
.premium-site .section-intro p:not(.eyebrow),
.planner-copy p,
.premium-estimator p {
  color: rgba(74, 56, 43, 0.7);
  font-size: 17px;
  line-height: 1.72;
}

.premium-site .eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-section,
.journey-section,
.trust-section,
.faq-section,
.muted-section {
  border-color: var(--line);
  background: var(--surface-soft);
}

.premium-service-grid,
.premium-process-grid,
.premium-compare-grid {
  gap: 0;
  border-color: var(--line);
  background: var(--line);
}

.premium-service-card,
.premium-process-grid article,
.premium-compare,
.trust-list li,
.faq-item {
  border-color: var(--line);
  background: rgba(255, 250, 244, 0.84);
  box-shadow: none;
}

.premium-service-card h3,
.premium-process-grid h3,
.premium-compare h3,
.trust-list strong,
.faq-item h3 {
  color: var(--ink);
  font-weight: 900;
}

.premium-journey-grid {
  gap: 18px;
}

.journey-card {
  min-height: 440px;
  border-radius: 22px;
  background: var(--charcoal);
  box-shadow: 0 24px 70px rgba(44, 32, 24, 0.15);
}

.journey-card.wide {
  min-height: 898px;
}

.journey-card img {
  opacity: 0.86;
}

.journey-card::after {
  background: linear-gradient(180deg, rgba(44, 32, 24, 0.02), rgba(44, 32, 24, 0.78));
}

.journey-card h3 {
  font-size: clamp(34px, 4.8vw, 54px);
}

.journey-card span {
  color: #f2b177;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.gallery-section {
  background: var(--bg);
  color: var(--ink);
}

.gallery-section .section-heading h2 {
  color: var(--ink);
}

.gallery-section .section-heading p:not(.eyebrow) {
  color: rgba(74, 56, 43, 0.68);
}

.gallery-grid {
  gap: 16px;
}

.gallery-item {
  border-radius: 18px;
  background: var(--charcoal);
  box-shadow: 0 22px 60px rgba(44, 32, 24, 0.12);
}

.gallery-item figcaption {
  color: #fffaf4;
}

.instagram-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 18%, rgba(111, 143, 120, 0.18), transparent 34%),
    linear-gradient(135deg, #f3ede2 0%, #faf7f1 58%, #eadccc 100%);
  color: var(--ink);
}

.instagram-copy h2 {
  color: var(--ink);
}

.instagram-copy p:not(.eyebrow),
.instagram-actions > span,
.instagram-frame-foot,
.instagram-handle small {
  color: rgba(74, 56, 43, 0.68);
}

.instagram-frame {
  border-color: var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.76);
  box-shadow: 0 28px 80px rgba(44, 32, 24, 0.12);
}

.instagram-visual:hover .instagram-frame {
  border-color: rgba(181, 98, 46, 0.44);
  background: #fffaf4;
}

.instagram-avatar {
  border-color: rgba(181, 98, 46, 0.28);
  background: #fffaf4;
}

.instagram-handle strong,
.instagram-frame-foot strong {
  color: var(--ink);
}

.testimonial-page-hero {
  background:
    radial-gradient(circle at 84% 0%, rgba(181, 98, 46, 0.14), transparent 34%),
    linear-gradient(180deg, #faf7f1 0%, #f3ede2 100%);
}

.testimonials-page .gallery-page-heading h1,
.gallery-page-heading h1 {
  color: var(--ink);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.96;
}

.testimonials-page .gallery-page-heading p,
.gallery-page-heading p {
  color: rgba(74, 56, 43, 0.72);
}

.testimonial-shot-item,
.testimonial-video-card {
  border-radius: 18px;
}

.testimonial-video-card {
  box-shadow: 0 20px 54px rgba(44, 32, 24, 0.14);
}

.premium-final-cta {
  background:
    linear-gradient(120deg, rgba(32, 23, 17, 0.92), rgba(122, 61, 24, 0.78)),
    url("assets/site/osaka-night.jpg");
  color: #fffaf4;
}

.premium-final-cta .eyebrow,
.premium-final-cta h2 {
  color: #fffaf4;
}

.premium-footer {
  border-top: 1px solid rgba(250, 247, 241, 0.08);
  background: var(--charcoal);
}

@media (max-width: 1180px) {
  .premium-hero {
    min-height: auto;
    background: var(--bg);
  }

  .premium-hero::before {
    display: none;
  }

  .premium-hero-photo {
    inset: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    opacity: 0.18;
    box-shadow: none;
  }

  .premium-hero-inner {
    display: block;
    min-height: auto;
    padding: 116px 0 76px;
  }

  .premium-hero-copy,
  .premium-hero-meta {
    max-width: 720px;
  }

  .premium-hero-meta {
    margin-top: 36px;
  }
}

@media (max-width: 760px) {
  .premium-nav {
    min-height: 74px;
  }

  .premium-menu {
    gap: 14px;
  }

  .premium-menu a {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .premium-hero-inner {
    padding: 90px 0 58px;
  }

  .premium-hero h1 {
    font-size: clamp(50px, 14vw, 76px);
  }

  .premium-hero .hero-tagline {
    font-size: 17px;
  }

  .premium-hero-meta,
  .premium-proof-grid {
    grid-template-columns: 1fr;
  }

  .premium-hero-meta div,
  .premium-proof-grid div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .premium-hero-meta div:last-child,
  .premium-proof-grid div:last-child {
    border-bottom: 0;
  }

  .premium-site .section-heading h2,
  .premium-site .section-intro h2,
  .faq-simple h2,
  .premium-final-cta h2,
  .testimonials-page .gallery-page-heading h1,
  .gallery-page-heading h1 {
    font-size: clamp(40px, 12vw, 62px);
  }

  .journey-card,
  .journey-card.wide {
    min-height: 420px;
    border-radius: 18px;
  }

  .gallery-item,
  .gallery-item.large {
    border-radius: 16px;
  }
}

@media (max-width: 460px) {
  .premium-brand strong {
    font-size: 13px;
  }

  .premium-site .btn {
    letter-spacing: 0.06em;
  }

  .premium-hero h1 {
    font-size: 46px;
  }
}

/* Estimator clean light treatment */
.estimator-page {
  --bg: #faf7f1;
  --surface: #fffaf4;
  --surface-soft: #f3ede2;
  --surface-deep: #eae1d3;
  --ink: #2c2018;
  --text: #4a382b;
  --muted: #8c7966;
  --line: #e4d8c8;
  --line-strong: #cbb9a3;
  --primary: #b5622e;
  --primary-dark: #7a3d18;
  background:
    radial-gradient(circle at 88% 4%, rgba(181, 98, 46, 0.1), transparent 30%),
    linear-gradient(180deg, #faf7f1 0%, #f5efe5 42%, #faf7f1 100%);
  color: var(--text);
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

.estimator-page .topbar {
  overflow: hidden;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, #faf7f1 0%, #faf7f1 50%, rgba(243, 237, 226, 0.88) 50%, rgba(243, 237, 226, 0.88) 100%);
}

.estimator-page .topbar::before {
  content: "";
  position: absolute;
  top: 82px;
  right: max(26px, calc((100vw - 1180px) / 2));
  width: min(42vw, 520px);
  height: 260px;
  border: 1px solid rgba(181, 98, 46, 0.16);
  border-radius: 22px;
  pointer-events: none;
}

.estimator-page .topbar-photo {
  display: none;
}

.estimator-page .topbar-inner {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  min-height: 400px;
  padding: 46px 0 42px;
}

.estimator-page .hero-copy {
  max-width: 720px;
}

.estimator-page .brand-lockup {
  margin-bottom: 26px;
  color: var(--ink);
}

.estimator-page .brand-lockup strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.estimator-page .hero-language {
  margin-bottom: 26px;
}

.estimator-page .language-switch {
  border-color: rgba(44, 32, 24, 0.16);
  background: rgba(255, 250, 244, 0.8);
  box-shadow: none;
}

.estimator-page .language-switch button {
  color: rgba(44, 32, 24, 0.64);
}

.estimator-page .language-switch button.active {
  background: var(--ink);
  color: #fffaf4;
}

.estimator-page .topbar h1 {
  max-width: 700px;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.estimator-page .topbar p {
  max-width: 620px;
  color: rgba(74, 56, 43, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.estimator-page .hero-actions {
  gap: 12px;
  margin-top: 30px;
}

.estimator-page .btn {
  min-height: 48px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.estimator-page .btn-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fffaf4;
  box-shadow: 0 16px 36px rgba(181, 98, 46, 0.2);
}

.estimator-page .btn-primary:hover {
  background: var(--primary-dark);
}

.estimator-page .btn-ghost,
.estimator-page .btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 250, 244, 0.7);
  color: var(--ink);
}

.estimator-page .btn-ghost:hover,
.estimator-page .btn-secondary:hover {
  border-color: var(--primary);
  background: #fffaf4;
  color: var(--primary-dark);
}

.estimator-page .hero-social-icon {
  border-color: var(--line-strong);
  background: rgba(255, 250, 244, 0.72);
  color: var(--ink);
}

.estimator-page .hero-social-icon:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fffaf4;
}

.estimator-page .hero-panel {
  align-content: center;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 24px 58px rgba(44, 32, 24, 0.1);
  backdrop-filter: none;
}

.estimator-page .hero-panel-label {
  color: var(--primary);
  letter-spacing: 0.14em;
}

.estimator-page .hero-panel-row {
  border-top-color: var(--line);
}

.estimator-page .hero-panel-row span {
  color: rgba(74, 56, 43, 0.58);
}

.estimator-page .hero-panel-row strong {
  color: var(--ink);
}

.estimator-page .app-shell {
  padding: 34px 0 56px;
}

.estimator-page .tabs {
  display: none;
}

.estimator-page .hero-card,
.estimator-page .card {
  border-color: var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.86);
  box-shadow: 0 16px 44px rgba(44, 32, 24, 0.08);
}

.estimator-page .hero-card {
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.94), rgba(243, 237, 226, 0.82)),
    var(--surface);
}

.estimator-page .hero-card h2 {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
}

.estimator-page .hero-card p,
.estimator-page .card-head p,
.estimator-page .field-help {
  color: rgba(74, 56, 43, 0.68);
}

.estimator-page label,
.estimator-page .card-head h3,
.estimator-page .section-title,
.estimator-page .addon-group-title,
.estimator-page .check-card span,
.estimator-page .city-check-card span {
  color: var(--ink);
}

.estimator-page input,
.estimator-page select,
.estimator-page textarea {
  border-color: var(--line-strong);
  background: #fffdf8;
  color: var(--ink);
}

.estimator-page .hero-points span,
.estimator-page .check-card,
.estimator-page .city-check-card,
.estimator-page .passenger-card {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.72);
}

.estimator-page .check-card:has(input:checked),
.estimator-page .city-check-card:has(input:checked) {
  border-color: rgba(181, 98, 46, 0.72);
  background: #f8efe3;
  box-shadow: inset 0 0 0 1px rgba(181, 98, 46, 0.2);
}

.estimator-page .passenger-copy span {
  color: rgba(74, 56, 43, 0.62);
}

.estimator-page .passenger-stepper button {
  border-color: rgba(181, 98, 46, 0.34);
  color: var(--primary-dark);
  background: rgba(255, 250, 244, 0.88);
}

.estimator-page .section-title::before {
  background: var(--primary);
}

.estimator-page .tab-panel.active {
  display: block;
}

@media (max-width: 1080px) {
  .estimator-page .topbar::before {
    display: none;
  }

  .estimator-page .topbar-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 0 36px;
  }

  .estimator-page .hero-panel {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .passenger-grid,
  .child-age-grid {
    grid-template-columns: 1fr;
  }

  .passenger-card {
    min-height: 82px;
  }
}

@media (max-width: 760px) {
  .estimator-page .topbar {
    background: linear-gradient(180deg, #faf7f1 0%, #f3ede2 100%);
  }

  .estimator-page .topbar-inner {
    padding: 28px 0 30px;
  }

  .estimator-page .brand-lockup {
    margin-bottom: 22px;
  }

  .estimator-page .hero-language {
    margin-bottom: 22px;
  }

  .estimator-page .topbar h1 {
    font-size: 42px;
  }

  .estimator-page .topbar p {
    font-size: 16px;
  }

  .estimator-page .app-shell {
    padding-top: 22px;
  }
}

@media (max-width: 460px) {
  .estimator-page .topbar h1 {
    font-size: 36px;
  }
}

/* Additional services */
.additional-services-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(181, 98, 46, 0.08), transparent 30%),
    #fffaf4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.additional-services-section .section-heading {
  max-width: 760px;
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--line);
}

.additional-service-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.96);
}

.additional-service-card span,
.service-detail-label span,
.services-hero-note span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.additional-service-card h3 {
  max-width: 290px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(23px, 2.3vw, 32px);
  line-height: 1.06;
}

.additional-service-card p {
  margin: 0;
  color: rgba(74, 56, 43, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.additional-service-card .text-link {
  align-self: end;
}

.services-page {
  background: #f7f4ee;
}

.services-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fffaf4;
  background: #111113;
}

.services-hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(10, 10, 12, 0.94), rgba(17, 17, 19, 0.74) 48%, rgba(17, 17, 19, 0.34)),
    url("assets/site/family-city-view.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 17, 19, 0), rgba(17, 17, 19, 0.18));
}

.services-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: 560px;
  padding: clamp(110px, 12vw, 160px) 0 clamp(70px, 8vw, 96px);
}

.services-hero-copy {
  max-width: 1040px;
}

.services-hero h1 {
  max-width: none;
  margin: 0;
  color: #fffaf4;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 94px);
  font-weight: 400;
  line-height: 0.94;
  white-space: nowrap;
}

.services-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 250, 244, 0.78);
  font-size: 18px;
  line-height: 1.72;
}

.services-hero-note {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(17, 17, 19, 0.54);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.services-hero-note p {
  margin: 0;
  color: rgba(255, 250, 244, 0.78);
  font-size: 15px;
  line-height: 1.68;
}

.services-detail-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(181, 98, 46, 0.08), transparent 26%),
    linear-gradient(180deg, #faf7f1 0%, #f3ede2 100%);
}

.services-detail-grid {
  display: grid;
  gap: 18px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(28px, 4.5vw, 54px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 22px 62px rgba(44, 32, 24, 0.08);
}

.service-detail-label h3 {
  max-width: 420px;
  margin: 14px 0 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 0.96;
}

.service-detail-copy {
  display: grid;
  gap: 20px;
  align-content: start;
}

.service-detail-copy p {
  margin: 0;
  color: rgba(74, 56, 43, 0.76);
  font-size: 18px;
  line-height: 1.72;
}

.service-detail-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(44, 32, 24, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.service-detail-copy .btn {
  justify-self: start;
  margin-top: 6px;
}

@media (max-width: 1080px) {
  .additional-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-hero-inner {
    grid-template-columns: 1fr;
  }

  .services-hero-note {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .additional-services-grid,
  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .additional-service-card {
    min-height: 0;
  }

  .services-hero-inner {
    min-height: auto;
    padding: 98px 0 62px;
  }

  .services-hero h1 {
    font-size: clamp(48px, 13vw, 72px);
    white-space: normal;
  }

  .services-hero p:not(.eyebrow),
  .service-detail-copy p {
    font-size: 16px;
  }

  .service-detail-card {
    padding: 26px;
  }
}

/* Gallery light page and clickable preview refresh */
.gallery-page-main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 84% 6%, rgba(181, 98, 46, 0.08), transparent 30%),
    linear-gradient(180deg, #faf7f1 0%, #f3ede2 58%, #faf7f1 100%);
}

.gallery-page-section {
  padding: clamp(72px, 8vw, 112px) 0 clamp(84px, 9vw, 124px);
  color: var(--ink);
}

.gallery-page-heading {
  max-width: 980px;
  margin-bottom: 46px;
}

.gallery-page-heading h1 {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.92;
  white-space: nowrap;
}

.gallery-page-heading p {
  max-width: 700px;
  color: rgba(74, 56, 43, 0.72);
  font-size: 18px;
  line-height: 1.68;
}

@media (max-width: 760px) {
  .gallery-page-heading h1 {
    white-space: normal;
  }
}

.full-gallery-grid {
  column-gap: 18px;
}

.full-gallery-item {
  margin-bottom: 18px;
  border: 1px solid rgba(228, 216, 200, 0.9);
  border-radius: 20px;
  background: #fffaf4;
  box-shadow: 0 22px 58px rgba(44, 32, 24, 0.1);
}

.full-gallery-item::after {
  background: linear-gradient(180deg, rgba(44, 32, 24, 0), rgba(44, 32, 24, 0.06));
}

.full-gallery-item:focus-visible {
  outline: 2px solid var(--primary);
}

.gallery-item {
  display: block;
  color: #fffaf4;
  text-decoration: none;
  cursor: pointer;
}

.gallery-item figcaption,
.gallery-item .gallery-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fffaf4;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.gallery-actions .btn-secondary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fffaf4;
  box-shadow: 0 16px 36px rgba(181, 98, 46, 0.18);
}

.gallery-actions .btn-secondary:hover {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  color: #fffaf4;
}

@media (max-width: 760px) {
  .full-gallery-grid {
    column-gap: 14px;
  }

  .full-gallery-item {
    margin-bottom: 14px;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
