* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background: #0e1018;
  line-height: 1.7;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.narrow {
  width: min(920px, calc(100% - 64px));
}

.top-line {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 6px;
  background: linear-gradient(90deg, #f43a44 0%, #ed1a67 100%);
}

.site-header {
  position: fixed;
  top: 6px;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(14, 16, 24, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link img {
  width: 230px;
  max-width: 48vw;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.hamburger {
  width: 26px;
  display: inline-grid;
  gap: 5px;
}

.hamburger i {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.menu-panel {
  position: fixed;
  top: 108px;
  right: 24px;
  width: min(320px, calc(100vw - 48px));
  padding: 22px;
  border-radius: 22px;
  background: rgba(16, 18, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  display: none;
}

.menu-panel.is-open {
  display: grid;
  gap: 10px;
}

.menu-panel a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.menu-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-shot {
  position: relative;
  min-height: 700px;
  margin-top: -102px;
  padding-top: 102px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.05) 52%, rgba(0, 0, 0, 0.10) 100%),
    url("../assets/hero-bg-clean.jpg") center top / cover no-repeat;
}

.hero-shot-inner {
  min-height: 598px;
  display: flex;
  align-items: flex-end;
}

.hero-copy {
  padding: 0 0 34px;
  max-width: 760px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5.4vw, 4.9rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.intro-section {
  background: linear-gradient(90deg, #f43b44 0%, #ed145f 100%);
  padding: 92px 0 120px;
}

.intro-section h1 {
  margin: 0 0 28px;
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  line-height: 1.08;
  font-weight: 800;
}

.intro-section p {
  margin: 0 0 24px;
  max-width: 780px;
  font-size: 1.05rem;
}

.highlight-copy {
  margin-top: 52px;
  max-width: 860px;
}

.highlight-copy p {
  margin: 0;
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  line-height: 1.4;
  font-weight: 800;
}

.gallery-section {
  padding: 84px 0 0;
  background: linear-gradient(180deg, #b20d25 0%, #b20d25 10%, #0e1018 100%);
}

.gallery-wrap {
  padding-bottom: 84px;
}

.gallery-wrap img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.site-footer {
  padding: 72px 0 34px;
  background: #0e1018;
  border-top: 2px solid rgba(244, 58, 68, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 60px;
}

.site-footer h2 {
  margin: 0 0 20px;
  font-size: 1.5rem;
}

.site-footer p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.04rem;
}

.footer-note {
  padding-top: 36px;
}

.footer-note p {
  margin: 0;
}

.footer-bottom {
  margin-top: 62px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.75);
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.96rem;
}

.footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 820px) {
  .container,
  .narrow {
    width: min(100% - 32px, 100% - 32px);
  }

  .header-inner {
    min-height: 82px;
  }

  .logo-link img {
    width: 190px;
  }

  .menu-toggle span:first-child {
    display: none;
  }

  .menu-panel {
    top: 88px;
    right: 16px;
    width: calc(100vw - 32px);
  }

  .intro-section {
    padding: 64px 0 84px;
  }

  .intro-section p {
    font-size: 1rem;
  }

  .gallery-section {
    padding-top: 56px;
  }

  .gallery-wrap {
    padding-bottom: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}


@media (max-width: 820px) {
  .hero-shot,
  .hero-shot-inner {
    min-height: 620px;
  }

  .hero-copy {
    padding-bottom: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.02;
  }
}


@media (max-width: 900px) {
  .container,
  .narrow {
    width: min(100% - 36px, 1180px);
  }

  .header-inner {
    min-height: 86px;
  }

  .logo-link img {
    width: 190px;
    max-width: 52vw;
  }

  .menu-toggle {
    gap: 14px;
    font-size: 0.78rem;
  }

  .hero-shot {
    min-height: 620px;
    background-position: 46% top;
  }

  .hero-shot-inner {
    min-height: 518px;
  }

  .hero-copy {
    max-width: 540px;
    padding-bottom: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 8vw, 4rem);
  }
}

@media (max-width: 640px) {
  .top-line {
    height: 5px;
  }

  .site-header {
    top: 5px;
  }

  .header-inner {
    min-height: 68px;
  }

  .logo-link img {
    width: 142px;
    max-width: 48vw;
  }

  .menu-toggle {
    gap: 12px;
    padding: 10px 0;
  }

  .menu-toggle span:first-child {
    display: none;
  }

  .menu-panel {
    top: 84px;
    right: 12px;
    width: calc(100vw - 24px);
    padding: 18px;
    border-radius: 18px;
  }

  .hero-shot {
    min-height: 480px;
    margin-top: -73px;
    padding-top: 73px;
    background-position: 43% top;
  }

  .hero-shot-inner {
    min-height: 407px;
  }

  .hero-copy {
    max-width: 280px;
    padding-bottom: 22px;
  }

  .hero-copy h1 {
    font-size: 1.1rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  .intro-section {
    padding: 56px 0 78px;
  }

  .intro-section h1 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .intro-section p {
    font-size: 0.96rem;
    margin-bottom: 18px;
  }

  .highlight-copy {
    margin-top: 34px;
  }

  .highlight-copy p {
    font-size: 1.2rem;
  }

  .gallery-section {
    padding-top: 44px;
  }

  .gallery-wrap {
    padding-bottom: 44px;
  }

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

  .site-footer {
    padding: 50px 0 30px;
  }

  .footer-bottom {
    margin-top: 34px;
  }
}
