/* ============================================================
   株式会社エウロパ - Style Sheet
   Design: Minimal, sans-serif, generous whitespace
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500&family=Jost:wght@300;400;500&display=swap');

/* --- Design Tokens --- */
:root {
  --color-bg: #FCFBF8;
  --color-bg-alt: #F5F1EA;
  --color-text: #34302B;
  --color-accent: #A58A70;
  --color-green: #9AA58E;

  --font-sans-jp: 'Zen Kaku Gothic New', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-sans-en: 'Jost', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --container-max: 1280px;
  --pad-pc: 80px;
  --pad-sp: 24px;
  --section-gap-pc: 160px;
  --section-gap-sp: 96px;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 2.0;
  color: var(--color-text);
  background-color: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Utility --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--pad-pc);
  padding-right: var(--pad-pc);
}

.en-label {
  font-family: var(--font-sans-en);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: block;
}

.section-heading {
  font-family: var(--font-sans-jp);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.section-heading--large {
  font-size: 40px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(252, 251, 248, 0.72);
  backdrop-filter: blur(10px);
  transition: background-color 0.4s ease, opacity 0.6s ease;
}

.site-header--scrolled {
  background-color: rgba(252, 251, 248, 0.92);
}

.is-opening .site-header {
  opacity: 0.4;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px var(--pad-pc);
}

.header-logo {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.header-logo__en {
  font-family: var(--font-sans-en);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--color-text);
}

.header-logo__jp {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 11px;
  color: var(--color-text);
  opacity: 0.7;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav__link {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #2F2B26;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header-nav__link:hover {
  color: var(--color-green);
}

.header-cta {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 13px;
  background-color: var(--color-accent);
  color: #fff;
  padding: 10px 24px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
}

.header-cta:hover {
  opacity: 0.85;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  gap: 7px;
  z-index: 1100;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger--open .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger--open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger--open .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav--open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__link {
  font-family: var(--font-sans-en);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--color-text);
}

.mobile-nav__cta {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 15px;
  background-color: var(--color-accent);
  color: #fff;
  padding: 14px 40px;
  border-radius: 2px;
  margin-top: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #FCFBF8;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease;
}

.hero-slide--active {
  opacity: 1;
}

.hero.is-opening .hero-slide {
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero.is-opening .hero-slide.hero-opening-slide-visible {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.5s ease;
}

.hero.is-opening .hero-slide img {
  transform: scale(1.03);
}

.hero.is-opening .hero-slide.hero-opening-slide-visible img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 44, 40, 0.22);
  opacity: 0;
  transition: opacity 0.8s ease, background 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.hero.is-revealed .hero-overlay {
  background: rgba(47, 44, 40, 0.22);
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: var(--pad-pc);
  padding-right: var(--pad-pc);
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero-content__label {
  font-family: var(--font-sans-en);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.hero-content__heading {
  font-family: var(--font-sans-jp);
  font-weight: 300;
  font-size: 48px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 32px;
}

.hero-content__sub {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 2.0;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
  max-width: 520px;
}

.hero-content__cta {
  display: inline-block;
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 48px;
  border-radius: 2px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  align-self: flex-start;
}

.hero-content__cta:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.9);
}

/* === Hero Opening === */
.hero-opening {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
}

.hero-opening.is-active {
  pointer-events: auto;
}

.hero-opening.is-hidden {
  display: none;
}

.hero-opening__logo,
.hero-opening__concept {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
}

.hero-opening__logo-mark {
  font-family: var(--font-sans-en);
  font-weight: 300;
  font-size: 64px;
  letter-spacing: 0.18em;
  color: #5C544B;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.5);
}

.hero-opening__logo-sub {
  margin-top: 16px;
  font-family: var(--font-sans-jp);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: #5C544B;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.5);
  opacity: 0;
}

.hero-opening__concept-text {
  font-family: var(--font-sans-jp);
  font-weight: 300;
  font-size: 40px;
  letter-spacing: 0.08em;
  color: #5C544B;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.hero-opening__skip {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: transparent;
  border: 1px solid rgba(92, 84, 75, 0.35);
  font-family: var(--font-sans-en);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #5C544B;
  opacity: 0.7;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 2px;
  pointer-events: auto;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.hero-opening__skip:hover {
  opacity: 1.0;
  background: rgba(255, 255, 255, 0.3);
}

.hero-content__label,
.hero-content__heading,
.hero-content__sub,
.hero-content__cta {
  opacity: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.6s ease;
}

.hero.is-revealed .hero-content__label {
  opacity: 1;
  transition-duration: 0.5s;
}

.hero.is-revealed .hero-content__heading {
  opacity: 1;
  transition-delay: 0.2s;
  transition-duration: 0.5s;
}

.hero.is-revealed .hero-content__sub {
  opacity: 1;
  transition-delay: 0.35s;
  transition-duration: 0.45s;
}

.hero.is-revealed .hero-content__cta {
  opacity: 1;
  transition-delay: 0.4s;
  transition-duration: 0.4s;
}

.hero.hero-opening-instant .hero-content__label,
.hero.hero-opening-instant .hero-content__heading,
.hero.hero-opening-instant .hero-content__sub,
.hero.hero-opening-instant .hero-content__cta {
  opacity: 1;
  transition-delay: 0s;
  transition-duration: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-opening {
    display: none !important;
  }
}

/* ============================================================
   CONCEPT
   ============================================================ */
.concept {
  padding-top: var(--section-gap-pc);
  padding-bottom: var(--section-gap-pc);
  background-color: var(--color-bg);
}

.concept-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.concept-text .section-heading {
  font-size: 32px;
}

.concept-text__body {
  font-size: 15px;
  line-height: 2.0;
  color: var(--color-text);
}

.concept-text__body p + p {
  margin-top: 24px;
}

.concept-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.concept-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.concept-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(252, 251, 248, 0.08);
}

/* ============================================================
   SERVICE
   ============================================================ */
.service {
  padding-top: var(--section-gap-pc);
  padding-bottom: var(--section-gap-pc);
  background-color: var(--color-bg);
}

.service-header {
  margin-bottom: 64px;
}

.service-header__lead {
  font-size: 15px;
  line-height: 2.0;
  max-width: 640px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  border: 1px solid rgba(165, 138, 112, 0.28);
  border-radius: 2px;
  padding: 48px;
  position: relative;
  background: rgba(255, 255, 255, 0.42);
}

.service-card__number {
  font-family: var(--font-sans-en);
  font-weight: 300;
  font-size: 64px;
  color: rgba(154, 123, 95, 0.3);
  line-height: 1;
  margin-bottom: 24px;
}

.service-card__title {
  font-family: var(--font-sans-jp);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-card__text {
  font-size: 14px;
  line-height: 2.0;
  margin-bottom: 16px;
}

.service-card__note {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-accent);
  font-style: italic;
}

/* ============================================================
   AREA & FLOW
   ============================================================ */
.area-flow {
  padding-top: var(--section-gap-pc);
  padding-bottom: var(--section-gap-pc);
  background-color: #F7F4EE;
}

.area-flow-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

/* Area */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.area-tag {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 13px;
  border: 1px solid rgba(154, 165, 142, 0.42);
  padding: 8px 16px;
  border-radius: 2px;
  color: var(--color-text);
}

.area-text {
  font-size: 15px;
  line-height: 2.0;
}

/* Flow */
.flow-list {
  position: relative;
  padding-left: 32px;
}

.flow-list::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background-color: rgba(165, 138, 112, 0.38);
}

.flow-item {
  position: relative;
  margin-bottom: 40px;
}

.flow-item:last-child {
  margin-bottom: 0;
}

.flow-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 10px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(165, 138, 112, 0.44);
  background-color: var(--color-bg-alt);
  z-index: 1;
}

.flow-item__step {
  font-family: var(--font-sans-en);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.flow-item__title {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 8px;
}

.flow-item__text {
  font-size: 14px;
  line-height: 2.0;
  color: var(--color-text);
  opacity: 0.8;
}

/* ============================================================
   COMPANY
   ============================================================ */
.company {
  padding-top: var(--section-gap-pc);
  padding-bottom: var(--section-gap-pc);
  background-color: var(--color-bg);
}

.company-inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: start;
}

.company-table {
  width: 100%;
}

.company-table dl {
  display: flex;
  border-bottom: 1px solid rgba(165, 138, 112, 0.28);
  padding: 20px 0;
}

.company-table dl:first-child {
  border-top: 1px solid rgba(165, 138, 112, 0.28);
}

.company-table dt {
  width: 160px;
  flex-shrink: 0;
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text);
}

.company-table dd {
  font-size: 14px;
  line-height: 2.0;
  color: var(--color-text);
}

.company-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.company-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(252, 251, 248, 0.08);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding-top: var(--section-gap-pc);
  padding-bottom: var(--section-gap-pc);
  background-color: var(--color-bg);
}

.faq-header {
  margin-bottom: 64px;
}

.faq-list {
  max-width: 840px;
}

.faq-item {
  border-top: 1px solid rgba(154, 165, 142, 0.36);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(154, 165, 142, 0.36);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
}

.faq-question__icon {
  font-family: var(--font-sans-en);
  font-weight: 300;
  font-size: 20px;
  flex-shrink: 0;
  margin-left: 24px;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item--open .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer__inner {
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 2.0;
  color: var(--color-text);
  opacity: 0.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding-top: var(--section-gap-pc);
  padding-bottom: var(--section-gap-pc);
  background-color: #F7F4EE;
}

.contact-header {
  margin-bottom: 48px;
}

.contact-header__lead {
  font-size: 15px;
  line-height: 2.0;
  max-width: 600px;
}

.contact-form {
  max-width: 640px;
}

.form-group {
  margin-bottom: 40px;
}

.form-label {
  display: block;
  font-family: var(--font-sans-en);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(154, 165, 142, 0.48);
  background: transparent;
  padding: 12px 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: var(--color-accent);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  background-color: #9B826B;
  color: #fff;
  border: none;
  padding: 16px 56px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.form-submit:hover {
  opacity: 0.85;
}

.form-message {
  margin-top: 24px;
  font-size: 14px;
  line-height: 2.0;
  color: var(--color-accent);
  display: none;
}

.form-message--visible {
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-text);
  color: var(--color-bg);
  padding: 64px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo__en {
  font-family: var(--font-sans-en);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.15em;
  color: var(--color-bg);
  margin-bottom: 8px;
}

.footer-logo__jp {
  font-family: var(--font-sans-jp);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-bg);
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav__link {
  font-family: var(--font-sans-en);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--color-bg);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-nav__link:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--color-accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-privacy {
  font-family: var(--font-sans-en);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--color-bg);
  opacity: 0.5;
}

.footer-copyright {
  font-family: var(--font-sans-en);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-bg);
  opacity: 0.5;
}

/* ============================================================
   RESPONSIVE — max-width: 768px
   ============================================================ */
@media (max-width: 768px) {
  .container {
    padding-left: var(--pad-sp);
    padding-right: var(--pad-sp);
  }

  /* Header */
  .header-inner {
    padding: 16px var(--pad-sp);
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  /* Hero */
  .hero-content {
    padding-left: var(--pad-sp);
    padding-right: var(--pad-sp);
  }

  .hero-opening__logo-mark {
    font-size: 40px;
  }

  .hero-opening__logo-sub {
    font-size: 12px;
  }

  .hero-opening__concept-text {
    font-size: 24px;
    letter-spacing: 0.05em;
  }

  .hero-opening__skip {
    right: 16px;
    bottom: 16px;
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero-content__heading {
    font-size: 32px;
  }

  .hero-content__sub {
    font-size: 14px;
  }

  /* Sections */
  .concept {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }

  .concept-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .concept-image {
    order: -1;
  }

  .service {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }

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

  .service-card {
    padding: 32px 24px;
  }

  .service-card__number {
    font-size: 48px;
  }

  .area-flow {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }

  .area-flow-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .company {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }

  .company-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .company-table dt {
    width: 120px;
  }

  .faq {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }

  .contact {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }

  .section-heading {
    font-size: 26px;
  }

  .section-heading--large {
    font-size: 30px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
  }

  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }

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

/* ============================================================
   RESPONSIVE — max-width: 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-content__heading {
    font-size: 28px;
  }

  .section-heading {
    font-size: 22px;
  }

  .company-table dl {
    flex-direction: column;
    gap: 4px;
  }

  .company-table dt {
    width: 100%;
    font-weight: 500;
    font-size: 13px;
  }
}
