/* ============================================================
   CITYLIGHTS FILMS — English Site CSS
   Design tokens mirror the Japanese parent site.
   ============================================================ */

/* ============================================================
   Custom Properties
   ============================================================ */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #162436;
  --navy-light:  #1e3248;
  --white:       #FFFFFF;
  --gold:        #C9A84C;
  --gold-dark:   #a8863a;
  --gray-bg:     #F5F5F5;
  --text:        #1a1a1a;
  --text-muted:  #666666;

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Noto Sans', sans-serif;

  --header-h:     72px;
  --ease:         0.3s ease;
  --ease-out:     0.4s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1200px;
  --pad-x:         clamp(20px, 4vw, 48px);
  --section-py:    clamp(72px, 10vw, 128px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a           { color: inherit; text-decoration: none; }
img         { max-width: 100%; height: auto; display: block; }
ul, ol      { list-style: none; }
button      { font-family: inherit; cursor: pointer; border: none; background: none; }
input,
select,
textarea    { font-family: inherit; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: var(--section-py) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header--left {
  text-align: left;
  margin-bottom: 32px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  color: inherit;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
}

.section-header--left .section-title::after {
  margin-left: 0;
}

.section-sub {
  margin-top: 20px;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 18px 44px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
              transform var(--ease), box-shadow var(--ease);
  text-align: center;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  padding: 14px 24px;
  font-size: 0.85rem;
}

.btn--whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn--full { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
}

.header.scrolled {
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--ease);
}

.header__logo:hover { opacity: 0.8; }

.header__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}

.header__nav-link {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--ease);
  white-space: nowrap;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--ease);
}

.header__nav-link:hover              { color: var(--gold); }
.header__nav-link:hover::after       { width: 100%; }

.header__nav-link--cta {
  padding: 9px 20px;
  border: 1.5px solid rgba(201, 168, 76, 0.6);
  color: var(--gold);
  padding-bottom: 9px;
}

.header__nav-link--cta::after { display: none; }

.header__nav-link--cta:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* Language switcher */
.header__lang-switch {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  transition: color var(--ease), border-color var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.header__lang-switch:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.4);
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease), width var(--ease);
  transform-origin: center;
}

.header__hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.header__hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 48px) var(--pad-x) 80px;
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 960px;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 1.2vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.2s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.4s both;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.04em;
  animation: fadeUp 0.8s 0.6s both;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.8s both;
}


.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(201, 168, 76, 0.35);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  animation: fadeUp 1s 1.4s both;
}

.hero__scroll-indicator span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s 2s infinite;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  padding: clamp(28px, 4vw, 40px) clamp(24px, 3vw, 32px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 22px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ============================================================
   SELECTED WORK
   ============================================================ */
.works { background: var(--gray-bg); }

.works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.work-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform var(--ease), box-shadow var(--ease);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

.work-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}

.work-card__thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.work-card__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.work-card:hover .work-card__thumb-img { transform: scale(1.04); }

.work-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 27, 42, 0.25);
  transition: background var(--ease);
  width: 100%;
  padding: 0;
}

.work-card:hover .work-card__play { background: rgba(13, 27, 42, 0.05); }

.work-card__play svg {
  width: 60px;
  height: 60px;
  color: var(--white);
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.6));
  transition: transform var(--ease);
}

.work-card:hover .work-card__play svg { transform: scale(1.12); }

.work-card__info {
  padding: 16px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.work-card__title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy);
}

.work-card__tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  background: var(--navy);
  color: var(--gold);
  white-space: nowrap;
  border-radius: 2px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

/* ============================================================
   GEAR LIST
   ============================================================ */
.gear {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.gear::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 5%  90%, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 95% 10%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.gear .section-header { position: relative; }
.gear .section-sub    { color: rgba(255, 255, 255, 0.45); }

.gear__table-wrap {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gear__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.gear__table thead th {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 20px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.gear__table thead th:first-child { padding-left: 0; }

.gear__table tbody td {
  padding: 16px 20px;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  text-align: left;
}

.gear__table tbody tr:last-child td { border-bottom: none; }

.gear__category {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35) !important;
  white-space: nowrap;
  vertical-align: top !important;
  padding-top: 20px !important;
  padding-left: 0 !important;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.about__photo {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(201, 168, 76, 0.15);
  object-fit: cover;
}

.about__bio {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 20px;
}

.about__creds {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__creds li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.about__creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 2px;
  background: var(--gold);
}

/* ============================================================
   RATES & BOOKING
   ============================================================ */
.rates { background: var(--gray-bg); }

.rates__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.rates__lead {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 32px;
}

.rates__terms {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.rates__terms li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.rates__term-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.rates__term-value {
  color: var(--text);
  text-align: right;
}

.rates__payment {
  background: var(--white);
  padding: clamp(32px, 4vw, 48px);
  border-left: 3px solid var(--gold);
}

.rates__payment-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}

.rates__payment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.rates__payment-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rates__payment-list strong {
  font-size: 0.9rem;
  color: var(--navy);
}

.rates__payment-list span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.rates__cta { margin-top: 4px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

/* Form */
.form-group { margin-bottom: 24px; }

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}

.badge {
  font-size: 0.62rem;
  padding: 2px 7px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: var(--font-display);
}

.badge--required {
  background: var(--navy);
  color: var(--white);
}

.badge--optional {
  background: #ddd;
  color: #666;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 2px;
  background: #FAFAFA;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: #aaa; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.7;
}

/* Contact info panel */
.contact__info {
  padding: clamp(28px, 4vw, 40px) clamp(24px, 3vw, 36px);
  background: var(--gray-bg);
  border-left: 3px solid var(--gold);
}

.contact__info-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--navy);
  margin-bottom: 28px;
}

.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__info-item dt {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact__info-item dd {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text);
}

.contact__info-item a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

.contact__info-item a:hover { color: var(--gold); }

.contact__info-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Thanks message */
.contact__thanks {
  padding: 48px 32px;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.contact__thanks p {
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
}

.contact__thanks p + p { margin-top: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 36px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
}

.footer__lang-link {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 10px;
  border-radius: 2px;
  transition: color var(--ease), border-color var(--ease);
}

.footer__lang-link:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.35);
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollDot {
  0%   { transform: translateY(0);   opacity: 1; }
  60%  { transform: translateY(16px); opacity: 0; }
  61%  { transform: translateY(0);   opacity: 0; }
  100% { transform: translateY(0);   opacity: 1; }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   Responsive — Tablet (≥640px)
   ============================================================ */
@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rates__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .contact__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* ============================================================
   Responsive — Desktop (≥1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .about__inner {
    grid-template-columns: 280px 1fr;
    gap: 72px;
  }
}

/* ============================================================
   Responsive — Mobile Nav (≤767px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --header-h: 60px; }

  .header__logo-img { height: 30px; }
  .header__hamburger { display: flex; }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 32px var(--pad-x) 40px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .header__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .header__nav-list li { width: 100%; }

  .header__nav-link {
    font-size: 0.95rem;
    padding: 13px 0;
    display: block;
    width: 100%;
  }

  .header__nav-link--cta {
    margin-top: 12px;
    padding: 14px 24px;
    display: inline-block;
    width: auto;
  }

  .header__lang-switch {
    margin-top: 20px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ============================================================
   Responsive — Small Mobile (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .services__grid  { grid-template-columns: 1fr; }
  .works__grid     { grid-template-columns: 1fr; }
  .rates__inner    { grid-template-columns: 1fr; }
  .contact__inner  { grid-template-columns: 1fr; }

  .btn { padding: 16px 32px; }

  .footer__inner { justify-content: center; text-align: center; }
}
