/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Base */
:root {
  --font-paragraph: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #2a2a2a;
  background: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  border-bottom: 1px solid #eee;
  padding: 28px 0 22px;
  background: #fff;
}

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

.brand-title {
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 22px;
  color: #111;
  margin: 0;
}

.brand-subtitle {
  margin: 6px 0 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #888;
  font-weight: 500;
}

.main-nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #2a2a2a;
  font-weight: 400;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #888;
}

.social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.social a:hover { opacity: 1; }

/* Hero */
.hero {
  background: #ffffff;
  padding: 50px 0 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 334px;
  gap: 0;
  align-items: stretch;
}

.hero-text {
  padding: 30px 40px 30px 57px;
  display: flex;
  align-items: flex-start;
}

.hero-heading {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 57px;
  line-height: 1.25em;
  margin: 0;
  color: #111;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-heading .t-bold {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-heading .t-semibold {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-heading .t-regular {
  font-weight: 400;
}

.hero-heading .t-italic {
  font-style: italic;
  font-weight: 400;
}

.hero-heading .t-highlight {
  background-color: #f0ff00;
  padding: 0 0.08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-image img {
  width: 100%;
  height: 841px;
  max-height: 90vh;
  object-fit: cover;
  object-position: 50% 50%;
}

/* Story */
.story {
  padding: 80px 0 60px;
  background: #ffffff;
}

.story-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  color: #1a1a1a;
}

.story-body {
  max-width: 100%;
}

.story-body p {
  font-family: var(--font-paragraph);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a4a;
  margin: 0 0 22px;
}

.story-body h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  margin: 32px 0 12px;
  color: #1a1a1a;
}

/* Touring */
.touring {
  padding: 80px 0;
  background: #ffffff;
}

.touring-inner {
  display: grid;
  grid-template-columns: 588px 1fr;
  gap: 0;
  align-items: stretch;
}

.touring-text {
  padding-right: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.touring-text h2 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: #1a1a1a;
}

.touring-text p {
  font-family: var(--font-paragraph);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: #4a4a4a;
  margin: 0 0 36px;
}

.touring-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 100% 0%;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 198px;
  height: 54px;
  background: #1a1a1a;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid #1a1a1a;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background: #ffffff;
  color: #1a1a1a;
}

/* Contact page */
.contact {
  padding: 80px 0 120px;
  background: #ffffff;
}

.contact .container { max-width: 1100px; }

.contact-inner { max-width: 1100px; }

.contact-subtitle {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.1em;
  margin: 0 0 36px;
  color: #1a1a1a;
}

.contact-body {
  font-family: var(--font-paragraph);
  font-weight: 500;
  font-size: 15px;
  line-height: 2.2em;
  color: #2a2a2a;
  margin: 0;
  max-width: 100%;
}

.contact-body a {
  color: #2a2a2a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-body a:hover { color: #888; }

@media (max-width: 880px) {
  .contact { padding: 48px 0 80px; }
  .contact-subtitle { font-size: 36px; }
}

/* Gallery — infinite auto-scroll marquee */
.gallery {
  padding: 0 0 80px;
  background: #fafafa;
}

.gallery .container {
  padding-top: 26px;
  max-width: 980px;
}

.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: marquee-scroll 72s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  flex: 0 0 auto;
  margin: 0;
  height: 302px;
}

.marquee-item img {
  height: 302px;
  width: auto;
  display: block;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  /* the duplicated half is the original 7 items + 7 gaps of 8px */
  to   { transform: translate3d(calc(-50% - 4px), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

@media (max-width: 880px) {
  .marquee-item,
  .marquee-item img { height: 220px; }
}

@media (max-width: 520px) {
  .marquee-item,
  .marquee-item img { height: 180px; }
}

/* Footer */
.site-footer {
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid #eee;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.social--footer a img {
  width: 42px;
  height: 42px;
}

.copyright {
  margin: 0;
  font-size: 13px;
  color: #888;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 880px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 16px;
  }
  .main-nav { order: 3; width: 100%; justify-content: center; }
  .main-nav ul { justify-content: center; }

  .hero { padding: 24px 0 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-text { padding: 24px 0 32px; }
  .hero-heading { font-size: 38px; line-height: 1.2; }
  .hero-image img { height: 480px; }

  .story { padding: 48px 0; }
  .story-title { font-size: 56px; }

  .touring { padding: 48px 0; }
  .touring-inner { grid-template-columns: 1fr; gap: 28px; }
  .touring-text { padding-right: 0; }
  .touring-text h2 { font-size: 36px; }
  .touring-image img { height: 380px; }

}

@media (max-width: 520px) {
  .brand-title { font-size: 18px; letter-spacing: 0.12em; }
  .story-title { font-size: 42px; }
  .touring-text h2 { font-size: 30px; }
}
