/* 1. Variables */
:root {
  --field-black: #07110F;
  --deep-turf: #12372D;
  --mid-turf: #245B46;
  --chalk: #F4F1E8;
  --warm-concrete: #D8D2C5;
  --boot-orange: #FF6B35;
  --field-cyan: #5BD6D0;
  --match-yellow: #E9F24A;
  --dark-text: #101B18;
  --light-text: #F8F6EF;
  --muted-light: #A9B7B1;
  --muted-dark: #687871;
  --dark-hairline: rgba(7,17,15,0.16);
  --light-hairline: rgba(255,255,255,0.16);
  --font-display: 'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-tech: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* 2. Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: var(--field-black);
  color: var(--light-text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, textarea {
  font: inherit;
}
ul {
  list-style: none;
}

/* 3. Base */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;700&display=swap');
body {
  font-family: var(--font-body);
}
.light-zone {
  background-color: var(--chalk);
  color: var(--dark-text);
}
.dark-zone {
  background-color: var(--field-black);
  color: var(--light-text);
}
.turf-zone {
  background-color: var(--deep-turf);
  color: var(--light-text);
}
.concrete-zone {
  background-color: var(--warm-concrete);
  color: var(--dark-text);
}
.line-broken-light {
  border-bottom: 1px dashed var(--light-hairline);
}
.line-broken-dark {
  border-bottom: 1px dashed var(--dark-hairline);
}
.btn-primary {
  display: inline-block;
  background-color: var(--boot-orange);
  color: var(--field-black);
  font-family: var(--font-tech);
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  transition: background-color 0.2s ease;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--light-text);
}
.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--light-text);
  border: 1px solid var(--light-hairline);
  font-family: var(--font-tech);
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--light-text);
  color: var(--field-black);
}

/* 4. Typography */
h1, h2, h3, .display-type {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.1;
}
.tech-type {
  font-family: var(--font-tech);
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}
.team-name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.kickoff-time {
  font-family: var(--font-tech);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.vs-label {
  font-family: var(--font-tech);
  font-size: clamp(0.9rem, 1.2vw, 1.25rem);
  color: var(--muted-light);
}
.concrete-zone .vs-label, .light-zone .vs-label {
  color: var(--muted-dark);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
}

/* 5. Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
:focus-visible {
  outline: 2px solid var(--boot-orange);
  outline-offset: 4px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--boot-orange);
  color: var(--field-black);
  padding: 1rem;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* 6. Containers */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.content-wrapper {
  padding: 5rem 0;
}

/* 7. Touchline Bar */
.touchline-bar {
  background-color: var(--deep-turf);
  color: var(--light-text);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px dashed var(--light-hairline);
}
.touchline-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.main-nav {
  display: flex;
  gap: 2rem;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}
.main-nav a:hover {
  color: var(--boot-orange);
}
.header-meta {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  color: var(--muted-light);
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light-text);
  cursor: pointer;
}

/* 8. Mobile Navigation */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--field-black);
  z-index: 1001;
  padding: 2rem;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-nav-panel.is-open {
  right: 0;
}
.close-menu {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--light-text);
  font-family: var(--font-tech);
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 3rem;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 2.5rem;
}

/* 9. Crossing Hero */
.hero {
  min-height: 80vh;
  display: flex;
  background-color: var(--deep-turf);
  color: var(--light-text);
  position: relative;
}
.hero-content {
  flex: 0 0 40%;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.hero-image-zone {
  flex: 0 0 60%;
  background-image: url('images/crossfield-hero.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.hero-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  pointer-events: none;
}
.route-line {
  height: 1px;
  background-color: rgba(255,255,255,0.2);
  width: 100%;
}
.hero-label {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  color: var(--boot-orange);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.1rem;
  color: var(--muted-light);
  margin-bottom: 2.5rem;
  max-width: 400px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
}
.hero-bottom-rail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--field-black);
  border-top: 1px solid var(--light-hairline);
  padding: 1rem 2rem;
  display: flex;
  gap: 3rem;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  z-index: 2;
}

/* 10. Snapshot Line */
.snapshot-line {
  background-color: var(--chalk);
  color: var(--dark-text);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--dark-hairline);
}
.snapshot-line .container {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-tech);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* 11. Shared Fixture Zones */
.crossfield-zone {
  position: relative;
  overflow: hidden;
}
.fixture-pairing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 4rem);
  align-items: center;
  width: 100%;
}
.left-team {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.vs {
  text-align: center;
}
.right-team {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.team-flag {
  width: clamp(30px, 4vw, 48px);
  height: auto;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

/* 12. Split Touchline Zone (01) */
.zone-01 {
  background-color: var(--field-black);
  color: var(--light-text);
  border-bottom: 1px dashed var(--light-hairline);
}
.zone-01-container {
  display: flex;
  min-height: 500px;
}
.zone-01-image {
  flex: 0 0 45%;
  background-image: url('images/spain-belgium-crossfield.webp');
  background-size: cover;
  background-position: center;
}
.zone-01-content {
  flex: 0 0 55%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.zone-01 .bottom-touchline {
  position: absolute;
  bottom: 2rem;
  left: 4rem;
  right: 4rem;
  border-bottom: 2px solid var(--boot-orange);
  padding-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-tech);
  font-size: 0.9rem;
}

/* 13. Offset Field Zone (02) */
.zone-02 {
  background-color: var(--mid-turf);
  color: var(--light-text);
  padding: 6rem 0;
  position: relative;
}
.zone-02-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 60%;
  background-image: url('images/norway-england-crossfield.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 1;
}
.zone-02 .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
}
.zone-02-left, .zone-02-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}
.zone-02-right {
  text-align: right;
}
.zone-02-center {
  width: 1px;
  background-color: var(--field-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.zone-02-center .vs-label {
  background-color: var(--mid-turf);
  padding: 1rem 0;
  position: absolute;
}
.zone-02 .tech-meta {
  font-family: var(--font-tech);
  font-size: 0.9rem;
  color: var(--field-cyan);
}
.zone-02 .tech-time {
  font-family: var(--font-tech);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

/* 14. Endline Zone (03) */
.zone-03 {
  background-color: var(--warm-concrete);
  color: var(--dark-text);
}
.zone-03 .top-rail {
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--dark-hairline);
  font-family: var(--font-tech);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.zone-03 .main-pairing {
  padding: 4rem 2rem;
}
.zone-03 .panoramic-band {
  width: 100%;
  height: 300px;
  background-image: url('images/argentina-switzerland-crossfield.webp');
  background-size: cover;
  background-position: center;
}
.zone-03 .bottom-rail {
  padding: 2rem;
  background-color: var(--match-yellow);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.zone-03 .time-display {
  font-family: var(--font-tech);
  font-size: 3rem;
  font-weight: 700;
  color: var(--field-black);
}

/* 15. Kickoff Markers */
.kickoff-markers {
  background-color: var(--deep-turf);
  padding: 6rem 0;
}
.markers-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.marker-item {
  display: grid;
  grid-template-columns: 80px 150px 150px 1fr;
  align-items: center;
  border-bottom: 1px dashed var(--light-hairline);
  padding-bottom: 1rem;
  font-family: var(--font-tech);
}
.marker-id {
  color: var(--boot-orange);
  font-weight: 700;
}
.marker-fixture {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
}

/* 16. Six Sides */
.six-sides {
  background-color: var(--chalk);
  color: var(--dark-text);
  padding: 6rem 0;
  position: relative;
}
.six-sides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.side-item {
  border-left: 2px solid var(--muted-light);
  padding-left: 1.5rem;
}
.side-item h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.side-item img {
  width: 48px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

/* 17. Information Sections */
.info-section {
  background-color: var(--field-black);
  padding: 6rem 0;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.info-card {
  border: 1px solid var(--light-hairline);
  padding: 3rem;
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--boot-orange);
  margin-bottom: 1.5rem;
}
.info-card ul {
  list-style-type: square;
  padding-left: 1.5rem;
  color: var(--muted-light);
  line-height: 1.8;
}
.editorial-note {
  background-color: var(--chalk);
  color: var(--dark-text);
  padding: 4rem 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  border-top: 1px solid var(--dark-hairline);
}

/* 18. Fixtures Sequence */
.fixtures-sequence {
  background-color: var(--field-black);
}
.fs-item {
  min-height: 70vh;
  border-bottom: 1px solid var(--light-hairline);
  display: flex;
  flex-direction: column;
}
.fs-01 .fs-layout {
  display: flex;
  flex: 1;
}
.fs-01 .fs-img {
  flex: 0 0 40%;
  background-image: url('images/spain-belgium-crossfield.webp');
  background-size: cover;
  background-position: center;
}
.fs-01 .fs-content {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fs-02 .fs-layout {
  display: flex;
  flex: 1;
  flex-direction: row-reverse;
}
.fs-02 .fs-img {
  flex: 0 0 40%;
  background-image: url('images/norway-england-crossfield.webp');
  background-size: cover;
  background-position: center;
}
.fs-02 .fs-content {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fs-03 .fs-img {
  width: 100%;
  height: 400px;
  background-image: url('images/argentina-switzerland-crossfield.webp');
  background-size: cover;
  background-position: center;
}
.fs-03 .fs-content {
  padding: 4rem 2rem;
  background-color: var(--warm-concrete);
  color: var(--dark-text);
}
.fs-meta-rail {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-tech);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px dashed currentcolor;
}
.fs-stage {
  font-family: var(--font-tech);
  color: var(--boot-orange);
  margin-bottom: 2rem;
}

/* 19. Field Guide */
.guide-header {
  background-color: var(--deep-turf);
  padding: 6rem 0;
  text-align: center;
}
.guide-content {
  padding: 6rem 0;
  max-width: 800px;
  margin: 0 auto;
}
.guide-item {
  margin-bottom: 3rem;
}
.guide-item h3 {
  font-family: var(--font-tech);
  color: var(--boot-orange);
  margin-bottom: 1rem;
}
.guide-item p {
  color: var(--muted-light);
  line-height: 1.8;
}
.clarification-box {
  background: rgba(255,107,53,0.1);
  border-left: 4px solid var(--boot-orange);
  padding: 2rem;
  margin-top: 4rem;
}

/* 20. About */
.about-hero {
  height: 50vh;
  background-image: url('images/editorial-crossfield.webp');
  background-size: cover;
  background-position: center;
}
.about-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted-light);
}
.about-text p {
  margin-bottom: 2rem;
}

/* 21. Contact Form */
.contact-wrap {
  max-width: 600px;
  margin: 6rem auto;
}
.hq-address-box {
  margin-bottom: 3rem;
  padding: 2rem;
  border: 1px solid var(--light-hairline);
  background-color: rgba(255,255,255,0.02);
}
.hq-address-box h2 {
  font-family: var(--font-tech);
  color: var(--boot-orange);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.hq-address-box address {
  font-style: normal;
  color: var(--light-text);
  line-height: 1.6;
}
.form-group {
  margin-bottom: 2rem;
}
.form-label {
  display: block;
  font-family: var(--font-tech);
  margin-bottom: 0.5rem;
  color: var(--muted-light);
}
.form-control {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid var(--light-hairline);
  color: var(--light-text);
  font-family: var(--font-body);
}
.form-control:focus {
  outline: none;
  border-color: var(--boot-orange);
}
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
#form-message {
  margin-top: 1rem;
  font-family: var(--font-tech);
  color: var(--boot-orange);
}

/* 22. Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 6rem auto;
  color: var(--muted-light);
  line-height: 1.8;
}
.legal-content h2 {
  font-family: var(--font-display);
  color: var(--light-text);
  margin: 3rem 0 1rem;
}
.legal-content p, .legal-content ul {
  margin-bottom: 1.5rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 2rem;
}

/* 23. Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--chalk);
  color: var(--dark-text);
  padding: 2rem;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.cookie-text p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* 24. Cookie Preferences */
.cookie-prefs {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--field-black);
  color: var(--light-text);
  padding: 3rem;
  border: 1px solid var(--light-hairline);
  z-index: 10000;
  width: 90%;
  max-width: 500px;
}
.cookie-prefs.is-open {
  display: block;
}
.pref-item {
  margin: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--dark-hairline);
  padding-bottom: 1rem;
}
.pref-label {
  font-family: var(--font-tech);
}
.pref-status {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted-light);
}

/* 25. Endline Footer */
.endline-footer {
  background-color: var(--field-black);
  border-top: 1px solid var(--light-hairline);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.footer-address {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted-light);
  line-height: 1.6;
  font-style: normal;
}
.footer-address strong {
  display: block;
  font-family: var(--font-tech);
  color: var(--light-text);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: right;
  font-family: var(--font-tech);
  font-size: 0.85rem;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--boot-orange);
}
.footer-bottom {
  border-top: 1px dashed var(--light-hairline);
  padding-top: 2rem;
  text-align: center;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  color: var(--muted-light);
}

/* 26. Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 27. Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 28. 1200px Media Query */
@media (max-width: 1200px) {
  .team-name { font-size: clamp(2rem, 5vw, 3.8rem); }
  .kickoff-time { font-size: clamp(2.6rem, 7vw, 4.8rem); }
  .hero-content { flex: 0 0 50%; }
  .hero-image-zone { flex: 0 0 50%; }
  .zone-01-container { flex-direction: column; }
  .zone-01-image { height: 300px; }
  .zone-02 .container { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
  .zone-02-right { text-align: center; }
  .zone-02-center { width: 100%; height: 1px; margin: 2rem 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-legal { text-align: center; flex-direction: row; justify-content: center; }
}

/* 29. 768px Media Query */
@media (max-width: 768px) {
  .team-name { font-size: clamp(1.7rem, 9vw, 2.8rem); }
  .kickoff-time { font-size: clamp(2.2rem, 12vw, 3.8rem); }
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .hero { flex-direction: column; }
  .hero-image-zone { height: 40vh; }
  .hero-bottom-rail { display: none; }
  .snapshot-line .container { flex-direction: column; gap: 1rem; text-align: center; }
  
  /* Vertical recomposition for mobile pairings */
  .fixture-pairing {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .left-team, .right-team {
    justify-content: center;
    text-align: center;
  }
  .zone-01-content { padding: 3rem 1.5rem; }
  .zone-01 .bottom-touchline { left: 1.5rem; right: 1.5rem; flex-direction: column; align-items: center; gap: 1rem; }
  
  .marker-item { grid-template-columns: 1fr; text-align: center; gap: 0.5rem; }
  .six-sides-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  
  .fs-01 .fs-layout, .fs-02 .fs-layout { flex-direction: column; }
  .fs-01 .fs-img, .fs-02 .fs-img { height: 300px; }
  
  .cookie-banner-content { flex-direction: column; text-align: center; }
}

/* 30. 480px Media Query */
@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .section-title { font-size: 1.8rem; }
  .zone-03 .bottom-rail { flex-direction: column; gap: 1rem; text-align: center; }
}