:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #4b5563;
  --gold: #c4a035;
  --line: #e5e7eb;
  --max: 1180px;
  --font: 'Instrument Sans', 'Inter', system-ui, sans-serif;
  --ray-1: #e24329;
  --ray-2: #f89a1c;
  --ray-3: #f6c344;
  --ray-4: #a2c037;
  --ray-5: #00aeef;
  --ray-6: #0054a6;
  --ray-7: #662d91;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font);
  font-size: 17px;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

#godray-page {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--line);
}

#godray-page::-webkit-scrollbar { width: 8px; }
#godray-page::-webkit-scrollbar-track { background: var(--line); }
#godray-page::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  text-align: inherit;
  line-height: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.shell { padding-left: 20px; padding-right: 20px; }
.shell-inner { max-width: var(--max); margin: 0 auto; width: 100%; }
.section-pad { padding-top: 56px; padding-bottom: 56px; }

@media (min-width: 768px) {
  .shell { padding-left: 32px; padding-right: 32px; }
  .section-pad { padding-top: 72px; padding-bottom: 72px; }
}

@media (min-width: 1024px) {
  .shell { padding-left: 48px; padding-right: 48px; }
}

.rainbow-bar {
  display: flex;
  height: 3px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 40;
}

.rainbow-bar span { flex: 1; }
.r1 { background: var(--ray-1); }
.r2 { background: var(--ray-2); }
.r3 { background: var(--ray-3); }
.r4 { background: var(--ray-4); }
.r5 { background: var(--ray-5); }
.r6 { background: var(--ray-6); }
.r7 { background: var(--ray-7); }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 20px;
  position: sticky;
  top: 3px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) { .site-header { padding: 0 32px; } }
@media (min-width: 1024px) { .site-header { padding: 0 48px; } }

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.wordmark {
  display: flex;
  align-items: center;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  flex-shrink: 0;
}

.wordmark-logo {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
}

.wordmark-logo-footer {
  height: 64px;
}

@media (max-width: 640px) {
  .wordmark-logo { height: 44px; }
  .wordmark-logo-footer { height: 52px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-links a,
.nav-links button {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  background: transparent;
  border: 0;
  padding: 0;
  white-space: nowrap;
  cursor: pointer;
}

.nav-links a::after,
.nav-links button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links button:hover::after {
  width: 100%;
}

/* Packages + Work hidden on small screens (matches React site) */
.nav-hide-sm {
  display: none;
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--ink);
}

@media (min-width: 768px) {
  .nav-links { gap: 32px; }
  .nav-hide-sm { display: inline-block; }
}

@media (max-width: 479px) {
  .nav-links {
    gap: 10px;
  }

  .nav-links a,
  .nav-links button {
    font-size: 13px;
  }
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--bg);
}

@media (min-width: 768px) {
  .hero {
    height: calc(100vh - 75px);
    min-height: 560px;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: 0;
    height: auto;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 640px;
  padding: 40px 20px 40px;
}

@media (min-width: 768px) {
  .hero-content {
    min-height: 560px;
    height: 100%;
    padding: 0 32px 56px;
  }
}

@media (max-width: 960px) {
  .hero-content {
    order: 1;
    min-height: 0;
    height: auto;
    justify-content: flex-start;
    padding: 28px 20px 20px;
    background: var(--bg);
  }
}

@media (min-width: 1024px) {
  .hero-content { padding: 0 48px 56px; }
}

.hero-inner { max-width: var(--max); margin: 0 auto; width: 100%; }
.hero-copy { max-width: 100%; }

@media (min-width: 768px) {
  .hero-copy { max-width: 48%; }
}

@media (max-width: 960px) {
  .hero-copy { max-width: 100%; }
}

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.035em; line-height: 1.08; }

.hero h1 {
  font-size: 40px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

@media (min-width: 768px) { .hero h1 { font-size: 60px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 72px; } }

.lead {
  margin-top: 24px;
  max-width: 480px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  font-size: 16px;
  font-weight: 600;
  flex-wrap: wrap;
}

.link-gold,
button.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--gold);
  border-radius: 0;
  padding: 0 0 3px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.link-muted,
a.link-muted {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.link-gold:hover,
button.link-gold:hover,
.link-muted:hover,
a.link-muted:hover {
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  right: 20px;
  bottom: 16px;
  color: var(--muted);
  animation: bounce 2.2s ease-in-out infinite;
  display: none;
}

@media (min-width: 768px) { .hero-scroll { display: block; right: 48px; } }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.facts {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.facts-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .facts-grid { padding: 0 32px; grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) { .facts-grid { padding: 0 48px; } }

.fact {
  padding: 24px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact:nth-child(2n) { border-right: none; }
.fact:nth-child(n+3) { border-bottom: none; }

@media (min-width: 768px) {
  .fact {
    padding: 24px 24px 24px 0;
    border-bottom: none;
  }
  .fact:nth-child(2n) { border-right: 1px solid var(--line); }
  .fact:last-child { border-right: none; }
  .fact:not(:first-child) { padding-left: 24px; }
}

.fact-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.fact-val { font-size: 16px; font-weight: 500; line-height: 1.45; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-head h2 { font-size: 34px; }
.section-meta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 2px;
}

@media (min-width: 768px) { .section-head h2 { font-size: 52px; } }

.about-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
}

.about-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.about-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .about-photo img { height: 380px; }
}

.about-copy { padding-top: 0; }
@media (min-width: 1024px) { .about-copy { padding-top: 64px; } }

.about-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
  margin: 0 0 20px;
}

.about-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  gap: 24px;
}

.card-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.card-grid-2 { grid-template-columns: 1fr; }
.card-grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .card-grid-2, .card-grid-4 { grid-template-columns: 1fr 1fr; }
}

.card-cell {
  padding: 20px 24px;
  min-height: 148px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.card-cell .ico {
  margin-top: 2px;
}

.card-cell-body {
  flex: 1;
  min-width: 0;
}

.card-cell h3 { font-size: 22px; letter-spacing: -0.02em; margin-bottom: 8px; line-height: 1.25; }
.card-cell p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0; }

.service-card { overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img { transform: scale(1.04); }

.service-body { padding: 20px 24px; }
.service-body h3 { font-size: 24px; letter-spacing: -0.02em; margin-bottom: 12px; }
.service-body p { color: var(--muted); font-size: 16px; line-height: 1.75; margin: 0 0 16px; }
.service-deliver { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--gold); }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.compare-table {
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.compare-scroll { overflow-x: auto; }
.compare-scroll .compare-table { min-width: 560px; }

.compare-row {
  display: grid;
  border-top: 1px solid var(--line);
}

.compare-row:first-child { border-top: none; }

.compare-3 { grid-template-columns: 1.1fr 1fr 1.15fr; }
.compare-4 { grid-template-columns: 1.3fr 1fr 1fr 1fr; }

@media (min-width: 768px) {
  .compare-3 { grid-template-columns: 1.4fr 1fr 1fr; }
}

.compare-head,
.compare-label,
.compare-cell {
  display: flex;
  align-items: center;
}

.compare-head {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-left: 1px solid var(--line);
  padding: 16px 12px;
}

.compare-head:first-child {
  border-left: none;
}

.compare-label {
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 12px;
}

.compare-cell {
  justify-content: center;
  text-align: center;
  border-left: 1px solid var(--line);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 12px;
}

@media (min-width: 768px) {
  .compare-head,
  .compare-label,
  .compare-cell {
    padding: 16px 20px;
  }
}

.compare-cell.featured { background: rgba(196, 160, 53, 0.06); }
.compare-cell.strong { font-weight: 600; font-size: 17px; }

.compare-head.featured { background: rgba(196, 160, 53, 0.06); }

.plan-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

.plan-tag.gold { color: var(--gold); }

.plan-name {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

@media (min-width: 768px) {
  .plan-name { font-size: 26px; }
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 700;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover,
button.btn:hover {
  color: var(--gold);
}

.btn-primary,
button.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover,
button.btn-primary:hover {
  background: #d4ae3a;
  color: var(--ink);
}

.note { margin-top: 16px; font-size: 13px; color: var(--muted); }

.work-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 1024px) {
  .work-grid { grid-template-columns: 0.95fr 1.15fr; gap: 40px; }
}

.work-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.work-item:last-child { border-bottom: 1px solid var(--line); }
.work-item:hover { transform: translateX(6px); }
.work-item.active .work-num, .work-item.active .work-kicker { color: var(--gold); }
.work-item.active .work-title { color: var(--ink); }

.work-left { display: flex; align-items: center; gap: 12px; }
.work-num { font-size: 13px; font-weight: 600; color: var(--muted); }
.work-title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--muted); transition: color 0.2s; }
.work-kicker { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: none; }

@media (min-width: 480px) { .work-kicker { display: block; } }
@media (min-width: 768px) { .work-title { font-size: 28px; } }

.work-line { margin-top: 20px; color: var(--muted); font-size: 17px; line-height: 1.7; max-width: 460px; }

.work-visual {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

@media (min-width: 1024px) { .work-visual { min-height: 520px; } }

.work-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.work-visual img.active { opacity: 1; }

.work-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  z-index: 2;
}

.work-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(15, 23, 42, 0.55));
  pointer-events: none;
  z-index: 1;
}

.principle {
  padding: 48px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

@media (min-width: 768px) { .principle { padding: 64px 32px; } }
@media (min-width: 1024px) { .principle { padding: 64px 48px; } }

.principle-inner { max-width: var(--max); margin: 0 auto; }
.principle h2 { font-size: 36px; margin-bottom: 20px; }
.principle p { font-size: 18px; color: var(--muted); line-height: 1.5; max-width: 640px; margin: 0; }

@media (min-width: 768px) {
  .principle h2 { font-size: 60px; }
  .principle p { font-size: 22px; }
}

@media (min-width: 1024px) { .principle h2 { font-size: 72px; } }

.faq-list { max-width: 860px; border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-q,
button.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
}

.faq-q:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 0.28s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, opacity 0.38s ease;
  opacity: 0;
}

.faq-item.open .faq-a {
  max-height: 400px;
  opacity: 1;
}

.faq-a p {
  padding-bottom: 20px;
  padding-right: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 720px;
  margin: 0;
}

@media (min-width: 768px) {
  .faq-q { font-size: 18px; }
  .faq-a p { padding-right: 64px; }
}

.contact-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
}

.contact-list { border-top: 1px solid var(--line); }

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}

.contact-row a:hover { color: var(--gold); }

.contact-form {
  border: 1px solid var(--line);
  padding: 20px;
  background: var(--surface);
}

@media (min-width: 768px) { .contact-form { padding: 32px; } }

.form-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  padding: 8px 0;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--gold); }

.form-field textarea { min-height: 88px; resize: vertical; font-size: 16px; }

.interest-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }

.interest-btn,
button.interest-btn {
  height: 34px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 0;
  cursor: pointer;
}

.interest-btn.active,
.interest-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-submit,
button.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover,
button.btn-submit:hover {
  background: #d4ae3a;
  transform: translateY(-1px);
}

.marquee-wrap {
  overflow: hidden;
  padding: 16px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-weight: 500;
  font-size: 20px;
  white-space: nowrap;
  color: var(--muted);
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 20px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

@media (min-width: 768px) {
  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
  }
}

@media (min-width: 1024px) { .site-footer { padding: 28px 48px; } }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.footer-nav a,
.footer-nav button {
  display: inline-block;
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.footer-nav a:hover,
.footer-nav button:hover {
  color: var(--gold);
}

.footer-meta { font-size: 14px; color: var(--muted); text-align: left; }
@media (min-width: 768px) { .footer-meta { text-align: right; } }

.ico { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 20px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  border-radius: 8px;
  z-index: 100;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.warn { background: #b45309; }

[id] { scroll-margin-top: 75px; }

/* —— Mobile static design adjustments —— */
@media (max-width: 960px) {
  .hero h1 { font-size: 34px; }
  .lead { margin-top: 16px; font-size: 16px; line-height: 1.65; }
  .hero-actions { margin-top: 22px; gap: 16px; font-size: 15px; }

  .site-header { height: 64px; padding: 0 16px; }
  .header-inner { gap: 10px; }
  .nav-links { gap: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }

  .facts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0 16px;
  }

  .fact {
    padding: 18px 12px;
  }

  .fact-val { font-size: 14px; word-break: break-word; }

  .section-pad { padding-top: 48px; padding-bottom: 48px; }
  .shell { padding-left: 16px; padding-right: 16px; }
  .section-head h2 { font-size: 32px; }

  .tag-row {
    gap: 8px;
    margin-bottom: 20px;
  }

  .tag { font-size: 12px; padding: 5px 10px; }

  .compare-table,
  .compare-scroll {
    -webkit-overflow-scrolling: touch;
  }

  .compare-scroll {
    margin: 0 -16px;
    padding: 0 16px;
  }

  .compare-scroll .compare-table {
    min-width: 520px;
  }

  /* Package tables: horizontal scroll on narrow phones */
  .shell-inner > .compare-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .shell-inner > .compare-table .compare-row {
    min-width: 480px;
  }

  .compare-head,
  .compare-label,
  .compare-cell {
    padding: 12px 10px;
  }

  .compare-label { font-size: 12px; }
  .compare-cell { font-size: 13px; }
  .compare-cell.strong { font-size: 15px; }
  .plan-name { font-size: 18px; }
  .plan-tag { font-size: 11px; margin-bottom: 4px; }

  .btn,
  button.btn {
    height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .service-card img { height: 180px; }
  .service-body { padding: 18px 16px 20px; }
  .service-body h3 { font-size: 20px; }

  .work-title { font-size: 18px; }
  .work-visual { min-height: 280px; }

  .principle { padding: 48px 20px; }
  .principle h2 { font-size: 36px; }

  .interest-row { gap: 6px; }
  .interest-btn,
  button.interest-btn {
    font-size: 13px;
    padding: 8px 12px;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .site-footer {
    padding: 24px 16px;
    gap: 20px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .facts-grid { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 28px; }
  .principle h2 { font-size: 30px; }
}
