/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #1a1a1e;
  --color-bg-alt: #141418;
  --color-surface: #242428;
  --color-border: #333;
  --color-text: #ffeeee;
  --color-text-muted: #bba;
  --color-accent: #66eaff;
  --color-accent-hover: #99f0ff;
  --color-white: #fff;
  --font-main: "DotGothic16", sans-serif;
  --font-sans: "DotGothic16", sans-serif;
  --font-body: "DotGothic16", sans-serif;
  --color-neon-pink: #e06a9e;
  --color-neon-cyan: #28c8c8;
  --color-neon-red: #f94c3a;
  --color-neon-orange: #d48520;
  --color-neon-yellow: #d4b84a;
  --color-logo: #d44a42;
  --site-max-width: 1500px;
  --site-gutter: 4vw;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: auto;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 0px,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 47px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(200, 180, 140, 0.012) 0px,
      rgba(200, 180, 140, 0.012) 1px,
      transparent 1px,
      transparent 73px
    );
}

/* Vignette overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(
    ellipse at center,
    transparent 55%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ===== Container ===== */
.container {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(18, 18, 22, 0.82);
  border-bottom: 1px solid rgba(255, 105, 180, 0.12);
  box-shadow: 0 1px 8px rgba(255, 51, 51, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition);
}

.header-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-logo);
  text-shadow:
    0 0 6px rgba(212, 74, 66, 0.6),
    2px 1px 12px rgba(212, 74, 66, 0.3),
    -1px 0 18px rgba(180, 50, 40, 0.15);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: brightness(0.55) saturate(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  color: var(--color-white);
  text-shadow:
    0 0 8px rgba(0, 0, 0, 0.9),
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(224, 106, 158, 0.08);
  animation: neon-flicker 8s ease-in-out infinite;
}

@keyframes neon-flicker {
  0%, 100% { opacity: 1; }
  42% { opacity: 1; }
  43% { opacity: 0.92; }
  44% { opacity: 1; }
  72% { opacity: 1; }
  73% { opacity: 0.88; }
  73.5% { opacity: 1; }
  74% { opacity: 0.95; }
  75% { opacity: 1; }
}

.hero-content p {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-white);
  max-width: 600px;
  margin: 0 auto;
  line-height: 2;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

/* ===== Order Link Section ===== */
.order-link-section {
  text-align: center;
  padding: 80px 0;
}

.order-link-text {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-neon-red);
  letter-spacing: clamp(0.08em, 1vw, 0.3em);
  text-decoration: none;
  border-bottom: 2px dotted rgba(204, 58, 46, 0.5);
  text-shadow:
    0 0 4px rgba(204, 58, 46, 0.6),
    3px 1px 12px rgba(204, 58, 46, 0.25),
    -1px 0 8px rgba(140, 40, 30, 0.2);
  transition: color var(--transition), text-shadow var(--transition);
  line-height: 1.3;
  animation: neon-flicker 12s ease-in-out infinite;
  animation-delay: 3s;
}

.order-link-text:hover {
  color: #e05050;
  text-shadow:
    0 0 6px rgba(224, 80, 80, 0.7),
    3px 1px 16px rgba(224, 80, 80, 0.35),
    0 0 30px rgba(224, 80, 80, 0.2);
}

.order-link-text:focus-visible {
  outline: 3px solid var(--color-neon-cyan);
  outline-offset: 4px;
}

/* ===== Section Common ===== */
.section {
  padding: 100px 0;
  position: relative;
}

/* Soot stain at section corners */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(140, 100, 60, 0.25) 0%,
    rgba(60, 60, 60, 0.15) 15%,
    transparent 40%,
    transparent 60%,
    rgba(60, 60, 60, 0.15) 85%,
    rgba(140, 100, 60, 0.25) 100%
  );
}

.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(180deg,
    rgba(80, 70, 60, 0.2),
    rgba(50, 45, 40, 0.4)
  );
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 3rem;
  color: #e8c0d4;
  text-shadow:
    0 0 6px rgba(224, 106, 158, 0.5),
    3px 1px 14px rgba(224, 106, 158, 0.2),
    -2px 0 10px rgba(180, 60, 100, 0.15);
  position: relative;
}

.section-title::before {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(224, 106, 158, 0.5) 40%, rgba(204, 58, 46, 0.3) 70%, transparent 90%);
  margin: 0 auto 1.2rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(204, 58, 46, 0.3) 30%, rgba(224, 106, 158, 0.5) 60%, transparent 90%);
  margin: 1.2rem auto 0;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
  letter-spacing: 0.05em;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-accent);
  color: var(--color-white);
  background: rgba(201, 169, 110, 0.1);
}

/* ===== Order Page ===== */
.order-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.order-section:last-child {
  border-bottom: none;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.order-grid.reverse {
  direction: rtl;
}

.order-grid.reverse > * {
  direction: ltr;
}

.order-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
}

.order-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-text h3 {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  color: var(--color-white);
}

.order-text p {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--color-text-muted);
  margin-bottom: 0.8rem;
}

/* ===== Detail Link ===== */
.detail-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 2px;
  margin-top: 0.5rem;
  transition: all var(--transition);
}

.detail-link:hover {
  color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

/* ===== Tokusho Page ===== */
.tokusho-table {
  max-width: 800px;
  margin: 0 auto;
}

.tokusho-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.tokusho-item:last-child {
  border-bottom: none;
}

.tokusho-item dt {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.tokusho-item dd {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ===== Footer ===== */
.footer {
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg,
    transparent 5%,
    rgba(140, 100, 60, 0.4) 15%,
    rgba(204, 58, 46, 0.35) 30%,
    rgba(224, 106, 158, 0.3) 50%,
    rgba(40, 200, 200, 0.2) 75%,
    rgba(140, 100, 60, 0.3) 90%,
    transparent 95%
  ) 1;
  padding: 40px 0;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(10, 8, 6, 0.4));
}

.footer p {
  font-family: var(--font-main);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
}

/* ===== Page Header (sub pages) ===== */
.page-header {
  padding-top: 140px;
  padding-bottom: 40px;
  text-align: center;
}

/* Page-level GIF background */
body.page-bg-gif {
  background-repeat: no-repeat;
  background-size: 300% auto;
  background-position: center top;
  background-attachment: scroll;
}

.page-header h1 {
  font-family: var(--font-main);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-white);
  display: inline-block;
  padding: 0.5rem 2rem;
  border: 1px solid rgba(140, 100, 60, 0.3);
  border-top: 2px solid var(--color-neon-pink);
  border-bottom: 3px solid rgba(80, 60, 45, 0.5);
  background: linear-gradient(180deg, rgba(40, 36, 32, 0.6), rgba(30, 26, 22, 0.8));
  box-shadow:
    0 0 10px rgba(224, 106, 158, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.4);
  text-shadow:
    0 0 6px rgba(224, 106, 158, 0.4),
    2px 1px 8px rgba(224, 106, 158, 0.15);
}

.page-header h1::after {
  display: none;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  :root {
    --site-gutter: 6vw;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 14, 14, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .order-grid,
  .order-grid.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: ltr;
  }

  .hero-content h1 {
    letter-spacing: 0.1em;
  }
}

/* ===== Works Teaser (Top Page) ===== */
.works-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.works-teaser-card {
  background:
    linear-gradient(180deg, var(--color-surface) 0%, rgba(30, 28, 26, 0.95) 100%);
  border: 1px solid var(--color-border);
  border-top: 2px solid rgba(140, 100, 60, 0.3);
  border-bottom: 2px solid rgba(60, 55, 50, 0.5);
  border-radius: 0;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: block;
  color: var(--color-text);
}

.works-teaser-card:hover {
  border-color: var(--color-neon-pink);
  transform: translateY(-3px);
  color: var(--color-text);
  box-shadow: 0 4px 20px rgba(224, 106, 158, 0.12);
}

.works-teaser-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.works-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.works-teaser-card:hover .works-teaser-image img {
  transform: scale(1.05);
}

.works-teaser-image .placeholder-img {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.works-teaser-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  padding: 0.2rem 0.7rem;
  letter-spacing: 0.06em;
  border-radius: 2px;
}

.tag-t-head {
  background: rgba(255, 51, 51, 0.15);
  color: var(--color-neon-red);
  border: 1px solid var(--color-neon-red);
}

.tag-t-hair {
  background: rgba(0, 229, 255, 0.15);
  color: var(--color-neon-cyan);
  border: 1px solid var(--color-neon-cyan);
}

.tag-t-face-hair {
  background: rgba(255, 105, 180, 0.15);
  color: var(--color-neon-pink);
  border: 1px solid var(--color-neon-pink);
}

.works-teaser-body {
  padding: 1.2rem;
}

.works-teaser-body h3 {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.works-teaser-request {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.works-teaser-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.works-teaser-meta span {
  font-size: 0.75rem;
  color: var(--color-neon-cyan);
  letter-spacing: 0.04em;
}

.works-teaser-meta span:last-child {
  color: var(--color-neon-orange);
}

.works-teaser-more {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .works-teaser-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== Order Menu (依頼札) ===== */
.order-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.order-menu-card {
  display: block;
  background: linear-gradient(180deg, var(--color-surface) 0%, rgba(30, 28, 26, 0.95) 100%);
  border: 1px solid var(--color-border);
  border-top: 2px solid rgba(140, 100, 60, 0.3);
  border-bottom: 2px solid rgba(60, 55, 50, 0.5);
  padding: 1.8rem 1.4rem;
  text-align: center;
  color: var(--color-text);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.order-menu-card:hover {
  border-color: var(--color-neon-cyan);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(40, 200, 200, 0.1);
  color: var(--color-text);
}

.order-menu-icon {
  font-size: 2rem;
  color: var(--color-neon-red);
  margin-bottom: 1rem;
  text-shadow:
    0 0 6px rgba(204, 58, 46, 0.5),
    2px 1px 10px rgba(204, 58, 46, 0.2);
  line-height: 1;
}

.order-menu-card h3 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.order-menu-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.order-menu-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.order-menu-info span {
  font-size: 0.75rem;
  color: var(--color-neon-cyan);
  letter-spacing: 0.04em;
}

.order-menu-info span:first-child {
  color: var(--color-neon-orange);
}

/* ===== Order Flow Simple ===== */
.order-flow-simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.flow-simple-step {
  text-align: center;
  padding: 1.2rem 0.8rem;
  position: relative;
}

.flow-simple-step::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -12px;
  width: 4px;
  height: 4px;
  border-top: 1px solid rgba(140, 100, 60, 0.4);
  border-right: 1px solid rgba(140, 100, 60, 0.4);
  transform: rotate(45deg);
}

.flow-simple-step:last-child::after {
  display: none;
}

.flow-simple-num {
  font-size: 1.4rem;
  color: var(--color-neon-red);
  margin-bottom: 0.6rem;
  text-shadow: 0 0 6px rgba(204, 58, 46, 0.4);
  line-height: 1;
}

.flow-simple-step h3 {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.flow-simple-step p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.flow-simple-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.flow-simple-cta > p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.flow-simple-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ext-link {
  font-size: 0.8rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all var(--transition);
  letter-spacing: 0.04em;
}

.ext-link:hover {
  color: var(--color-white);
  border-color: var(--color-neon-cyan);
}

.ext-mercari:hover {
  border-color: var(--color-neon-red);
}

.btn-consult-main {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.9rem 3rem;
  background: transparent;
  border: 2px solid var(--color-neon-pink);
  color: var(--color-neon-pink);
  cursor: pointer;
  letter-spacing: 0.12em;
  transition: all var(--transition);
  text-shadow: 0 0 4px rgba(224, 106, 158, 0.3);
}

.btn-consult-main:hover {
  background: rgba(224, 106, 158, 0.1);
  color: var(--color-white);
  box-shadow: 0 0 16px rgba(224, 106, 158, 0.2);
}

/* ===== Footer Links ===== */
.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-neon-cyan);
}

.footer-divider {
  color: rgba(140, 100, 60, 0.4);
  margin: 0 0.8rem;
  font-size: 0.75rem;
}

/* ===== Responsive additions ===== */
@media (max-width: 768px) {
  .order-menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .order-flow-simple {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .flow-simple-step::after {
    display: none;
  }

  .flow-simple-links {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}

/* ===== Placeholder image style ===== */
.placeholder-img {
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

/* ===== Mobile Fixed CTA ===== */
.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    height: 48px;
    background: rgba(20, 18, 22, 0.95);
    border-top: 1px solid var(--color-neon-pink);
    color: var(--color-neon-pink);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    text-shadow: 0 0 6px rgba(224, 106, 158, 0.5);
    box-shadow: 0 -2px 12px rgba(224, 106, 158, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--transition), color var(--transition);
  }

  .mobile-cta:active {
    background: rgba(224, 106, 158, 0.15);
    color: var(--color-white);
  }

  /* Body padding for fixed CTA */
  body {
    padding-bottom: 56px;
  }

  /* Footer padding for fixed CTA */
  .footer {
    padding-bottom: 60px;
  }

  /* Hero text adjustments */
  .hero-content {
    padding: 1.2rem;
  }

  .hero-content p {
    line-height: 1.8;
  }

  /* Section padding reduction */
  .section {
    padding: 60px 0;
  }

  /* Order menu card mobile padding */
  .order-menu-card {
    padding: 1.4rem 1.2rem;
  }

  /* Order flow step mobile spacing */
  .flow-simple-step {
    padding: 1rem 0.6rem;
  }

  /* Page header mobile adjustment */
  .page-header {
    padding-top: 110px;
    padding-bottom: 30px;
  }

  .page-header h1 {
    padding: 0.4rem 1.2rem;
    font-size: clamp(1.1rem, 5vw, 1.6rem);
  }
}
