/* Big Bamb 共通スタイル（単一CSSファイル） */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: #1d1d1f;
  background-color: #f5f5f7;
  line-height: 1.6;
}

a {
  color: #0f62fe;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.admin-body {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.admin-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 32px 16px;
}

.admin-header,
.admin-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.admin-logo {
  font-weight: 600;
  font-size: 20px;
}

.admin-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}

.admin-login-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.admin-login-card {
  width: 100%;
  max-width: 400px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.admin-login-title {
  margin: 0 0 24px;
  font-size: 24px;
}

.admin-alert-error {
  margin-bottom: 16px;
  padding: 12px 16px;
  background-color: #ffe5e5;
  color: #c11818;
  border-radius: 12px;
  font-size: 14px;
}

.admin-alert-success {
  margin-bottom: 16px;
  padding: 12px 16px;
  background-color: #e5f5e8;
  color: #1b7f3a;
  border-radius: 12px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
}

.form-group input {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
  font-size: 14px;
  outline: none;
  background-color: #f9f9fb;
}

.form-group input:focus {
  border-color: #0f62fe;
  box-shadow: 0 0 0 1px rgba(15, 98, 254, 0.2);
  background-color: #ffffff;
}

.form-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.btn-primary {
  min-width: 120px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #0f62fe, #2f6bff);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(15, 98, 254, 0.35);
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 6px 18px rgba(15, 98, 254, 0.35);
}

.admin-dashboard {
  width: 100%;
  max-width: 800px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.admin-dashboard-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 22px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-top: 16px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th,
.table td {
  padding: 8px 12px;
  border-bottom: 1px solid #e5e5ea;
  text-align: left;
}

.table th {
  font-weight: 600;
  background-color: #f5f5f7;
}

.pagination {
  margin-top: 16px;
  display: flex;
  gap: 8px;
}

.pagination .page {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #d2d2d7;
  font-size: 13px;
}

.pagination .page.current {
  background-color: #0f62fe;
  color: #ffffff;
  border-color: #0f62fe;
}

.user-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.user-detail-grid dl {
  margin: 0;
}

.user-detail-grid dt {
  font-size: 13px;
  color: #555;
  margin-top: 8px;
}

.user-detail-grid dd {
  margin: 0;
  font-size: 14px;
}

.page-links {
  margin-top: 24px;
  font-size: 14px;
}

.clickable-row {
  cursor: pointer;
}

 .stock-chart-wrapper {
  margin-top: 24px;
}

/* =========================================================
   フロント共通レイアウト（ヘッダー / メニュー / フッター）
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo {
  display: block;
  height: 32px;
}

.mypage-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f7, #ffffff);
}

.mypage-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

/* スライドメニュー */
.slide-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.08);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.25s ease-out;
  z-index: 110;
}

.slide-menu.open {
  right: 0;
}

.slide-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slide-mypage-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f7, #ffffff);
  cursor: pointer;
}

.slide-mypage-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.slide-username {
  font-size: 15px;
  font-weight: 600;
}

.slide-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slide-menu nav li a {
  display: block;
  padding: 8px 12px;
  border-radius: 12px;
  color: #1d1d1f;
  text-decoration: none;
}

.slide-menu nav li a:hover {
  background-color: #f5f5f7;
}

/* オーバーレイ */
.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
  z-index: 105;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* メインコンテンツ */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

@media (min-width: 768px) {
  main {
    padding: 32px 24px 48px;
  }
}

/* ログイン案内（トップ用） */
.login-prompt-simple {
  margin: 24px auto 0;
  max-width: 480px;
  padding: 24px 16px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.line-login-button-simple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background-color: #06c755;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.line-login-button-simple svg {
  display: block;
}

.line-login-button-simple span {
  line-height: 1;
}

/* フッター */
.site-footer {
  padding: 16px 16px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  font-size: 13px;
  color: #555555;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.footer-menu a {
  font-size: 13px;
}

.footer-copy a {
  color: inherit;
}

/* =========================================================
   株式会社scratch コーポレートサイト（リニューアル）
   public/index.php は <body class="scratch-public-index">
   ========================================================= */
body.scratch-public-index {
  font-family: 'Noto Sans JP', system-ui, sans-serif;
  color: #1a1a2e;
  background: #f8f7f4;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ===== CSS Variables ===== */
:root {
  --primary: #2d3a4a;
  --accent: #c5a572;
  --accent-light: #e8d5b0;
  --bg: #f8f7f4;
  --bg-card: #ffffff;
  --text: #1a1a2e;
  --text-sub: #6b7280;
  --border: #e5e2dc;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --radius: 12px;
  --header-h: 64px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }

.site-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.site-brand span { color: var(--accent); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  background: none;
  border: none;
}
.hamburger .bar {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer navigation only (desktop nav is hidden) */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
}
.desktop-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-sub);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.desktop-nav a:hover {
  color: var(--primary);
  background: rgba(197,165,114,0.1);
}
.desktop-nav a.is-active {
  color: var(--primary);
  background: rgba(197, 165, 114, 0.18);
  font-weight: 600;
}

/* Mobile Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: #fff;
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 24px 32px;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.25s;
}
.drawer-nav a:hover,
.drawer-nav a:active {
  background: rgba(197,165,114,0.1);
  color: var(--accent);
}
.drawer-nav a.is-active {
  background: rgba(197, 165, 114, 0.14);
  color: var(--accent);
}
.drawer-nav a i {
  width: 24px;
  text-align: center;
  color: var(--accent);
  font-size: 1.05rem;
}
.drawer-nav a .en {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  color: var(--text-sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: auto;
}

.drawer-address {
  margin-top: auto;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ===== Hero ===== */
.hero {
  margin-top: var(--header-h);
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 480px;
  overflow: hidden;
  background: var(--primary);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  animation: heroFade 1s 0.2s forwards;
}
@keyframes heroFade {
  to { opacity: 1; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,46,0) 40%,
    rgba(26,26,46,0.55)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(16px);
  animation: slideUp 0.8s 0.5s forwards;
}
.hero-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  opacity: 0;
  transform: translateY(12px);
  animation: slideUp 0.7s 0.7s forwards;
}
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Subpage hero ===== */
.page-hero {
  margin-top: var(--header-h);
  position: relative;
  width: 100%;
  min-height: 200px;
  max-height: 300px;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  background: var(--primary);
}
.page-hero .hero-img {
  opacity: 0.55;
  animation: heroFade 0.8s 0.15s forwards;
}
.page-hero .hero-overlay {
  justify-content: center;
  padding: 32px 20px;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.35),
    rgba(26, 26, 46, 0.65)
  );
}
.page-hero .hero-title {
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  animation: slideUp 0.7s 0.35s forwards;
}
.page-hero .hero-sub {
  animation: slideUp 0.6s 0.5s forwards;
}
@media (min-width: 768px) {
  .page-hero {
    aspect-ratio: 21 / 5;
    max-height: 280px;
  }
  .page-hero .hero-overlay {
    padding: 40px;
  }
}

/* ===== Main Content ===== */
.main {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}
.main--wide {
  max-width: 960px;
}

/* News Section */
.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: cardIn 0.6s 0.9s forwards;
}
@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}
.news-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.9;
}
.news-card .news-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.news-badge .news-badge-icon {
  margin-right: 4px;
  font-size: 0.68rem;
}

/* Inner sections */
.renewal-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.renewal-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-light);
  letter-spacing: -0.01em;
}
.renewal-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -4px;
}
table.renewal-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 0.88rem;
  line-height: 1.65;
}
table.renewal-table .t-head {
  width: 34%;
  min-width: 120px;
  padding: 12px 14px;
  vertical-align: top;
  background: rgba(45, 58, 74, 0.06);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
table.renewal-table .t-item {
  padding: 12px 14px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  word-break: break-word;
}
table.renewal-table tr:last-child .t-head,
table.renewal-table tr:last-child .t-item {
  border-bottom: none;
}
table.renewal-table a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
table.renewal-table a:hover {
  color: var(--accent);
}
.renewal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.renewal-list li,
.renewal-list p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
}
.renewal-list li:last-child,
.renewal-list p:last-child {
  margin-bottom: 0;
}
.text-muted,
.renewal-note {
  font-size: 0.86rem;
  color: var(--text-sub);
  margin-top: 16px;
  line-height: 1.7;
}

/* Forms */
.renewal-form .renewal-table-wrap {
  margin: 0;
}
.renewal-form input[type="text"],
.renewal-form input[type="email"],
.renewal-form textarea {
  width: 100%;
  max-width: 560px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.renewal-form input:focus,
.renewal-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.2);
}
.renewal-form textarea {
  resize: vertical;
  min-height: 160px;
}
.renewal-form label {
  cursor: pointer;
  display: inline;
}
.renewal-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
.renewal-form .form-actions input[type="image"] {
  cursor: pointer;
  vertical-align: middle;
}

.renewal-btn {
  min-width: 220px;
  height: 56px;
  border: none;
  border-radius: 14px;
  padding: 0 28px;
  font-family: 'Noto Sans JP', system-ui, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.renewal-btn:hover,
.renewal-btn:active {
  transform: translateY(-1px);
  opacity: 0.95;
}

.renewal-btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ffb24a 0%, #f19a2b 100%);
  box-shadow: 0 8px 18px rgba(241, 154, 43, 0.34);
}

.renewal-btn-secondary {
  color: #fff;
  background: linear-gradient(180deg, #c7c9ce 0%, #b1b5bb 100%);
  box-shadow: 0 8px 18px rgba(115, 122, 132, 0.28);
}

/* Quick Links */
.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(16px);
}
.quick-link:nth-child(1) { animation: cardIn 0.5s 1.0s forwards; }
.quick-link:nth-child(2) { animation: cardIn 0.5s 1.1s forwards; }
.quick-link:nth-child(3) { animation: cardIn 0.5s 1.2s forwards; }
.quick-link:nth-child(4) { animation: cardIn 0.5s 1.3s forwards; }

.quick-link:hover, .quick-link:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}
.quick-link .ql-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}
.ql-icon.biz { background: linear-gradient(135deg, #4a6fa5, #2d3a4a); }
.ql-icon.company { background: linear-gradient(135deg, #c5a572, #a0845a); }
.ql-icon.request { background: linear-gradient(135deg, #6b8f71, #3d6b47); }
.ql-icon.work { background: linear-gradient(135deg, #b07156, #8a4f3a); }

.quick-link .ql-title {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}
.quick-link .ql-en {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: -6px;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.6);
  padding: 36px 20px;
  text-align: center;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--accent); }
.footer-address {
  font-size: 0.78rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-bottom: 24px;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-family: 'Outfit', sans-serif;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .hamburger { display: flex; }
  .desktop-nav { display: none; }
  .hero { aspect-ratio: 21 / 9; }
  .hero-overlay { padding: 40px; }
  .main { padding: 48px 32px 80px; }
  .quick-links { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .footer-links { gap: 8px 28px; }
}

@media (min-width: 1024px) {
  .header { padding: 0 40px; }
  .main { max-width: 900px; padding: 56px 40px 100px; }
  .main.main--wide { max-width: 1000px; }
}

/* ===== Utility ===== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

html {
  scroll-behavior: smooth;
}
