:root {
  --primary: #1a2e2a;
  --primary-soft: #2a4540;
  --accent: #d97757;
  --accent-deep: #b85a3c;
  --bg: #f4efe6;
  --bg-deep: #ebe4d6;
  --text: #1a2e2a;
  --muted: #6b6b66;
  --line: rgba(26, 46, 42, 0.12);
  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .nav-logo {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

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

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* =================== NAV =================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--pad);
  mix-blend-mode: difference;
  color: #fff;
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 0.25rem 0;
  transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 0.6; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 4px; right: 4px;
  height: 2px;
  background: currentColor;
  transition: all 0.3s;
}
.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle.is-open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { top: 15px; transform: rotate(-45deg); }

/* =================== HERO =================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: -8% 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26,46,42,0.55) 0%, rgba(26,46,42,0.25) 30%, rgba(26,46,42,0.7) 100%),
    linear-gradient(90deg, rgba(26,46,42,0.5) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  animation: heroIn 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.hero-title {
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.06em;
  margin-bottom: 1.5rem;
}
.hero-tag {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  max-width: 32ch;
  line-height: 1.5;
  opacity: 0.92;
}
.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
}
.hero-meta .dot { opacity: 0.4; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--pad);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.6;
}
.hero-scroll-line {
  width: 50px;
  height: 1px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* =================== SECTION TAGS =================== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
  max-width: 22ch;
}

/* =================== ABOUT =================== */
.about {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about-text h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.about-text p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  max-width: 48ch;
}
.about-text p + p { margin-bottom: 2rem; }

.btn-ghost {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.9rem 0;
  border-bottom: 1.5px solid var(--primary);
  transition: all 0.3s;
}
.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
  padding-left: 0.5rem;
}

.about-image {
  position: relative;
  margin-top: 2rem;
}
.about-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 4px;
}
.about-caption {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* =================== DISCIPLINE =================== */
.discipline {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: var(--primary);
  color: var(--bg);
}
.discipline .section-tag { color: var(--accent); }
.discipline .section-title { color: #fff; }
.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.discipline-card {
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  transition: all 0.4s;
}
.discipline-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.discipline-num {
  font-family: 'Archivo', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}
.discipline-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}
.discipline-card p {
  color: rgba(244, 239, 230, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =================== CATCHES =================== */
.catches {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: var(--bg-deep);
}
.catches-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
.catches-head .section-title { margin-bottom: 0; }
.catches-intro {
  color: var(--muted);
  max-width: 38ch;
  font-size: 1rem;
}
.catches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 1.25rem;
}
.catch {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.catch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.catch:hover img { transform: scale(1.05); }
.catch figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(26,46,42,0.85) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(30%);
  opacity: 0;
  transition: all 0.4s;
}
.catch:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}
.catch figcaption strong {
  font-family: 'Archivo', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.catch figcaption span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.85;
}
.catch-tall { grid-row: span 2; }
.catch-wide { grid-column: span 2; }

/* =================== STATS =================== */
.stats {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--accent);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.85;
}

/* =================== OFFER =================== */
.offer {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: var(--bg);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.offer-card {
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--line);
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(26,46,42,0.2);
  border-color: var(--accent);
}
.offer-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.offer-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.offer-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.offer-meta {
  font-family: 'Archivo', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* =================== CONTACT =================== */
.contact {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: var(--primary);
  color: var(--bg);
}
.contact .section-tag { color: var(--accent); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-text h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.contact-text p {
  color: rgba(244, 239, 230, 0.7);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 42ch;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(244,239,230,0.15);
  transition: padding 0.3s;
}
.contact-line:last-child { border-bottom: 1px solid rgba(244,239,230,0.15); }
.contact-line:hover { padding-left: 0.5rem; }
.contact-line span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
}
.contact-line strong {
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244,239,230,0.25);
  padding: 0.6rem 0;
  color: var(--bg);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form select option { background: var(--primary); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 1.1rem 2rem;
  font-family: 'Archivo', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  margin-top: 1rem;
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
}
.form-ok {
  opacity: 0;
  color: var(--accent);
  font-size: 0.9rem;
  transition: opacity 0.4s;
  margin-top: 0.5rem;
}

/* =================== FOOTER =================== */
.footer {
  background: #0e1c19;
  color: rgba(244, 239, 230, 0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244,239,230,0.1);
}
.footer-brand .nav-logo {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.9rem; }
.footer-links, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.footer-links a, .footer-legal a {
  transition: color 0.3s;
}
.footer-links a:hover, .footer-legal a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.6;
}

/* =================== REVEAL =================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================== MOBILE NAV =================== */
@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: var(--primary);
    color: #fff;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s;
    align-items: flex-start;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-toggle { display: block; color: #fff; z-index: 101; }
  .nav.is-mobile-open { color: #fff; mix-blend-mode: normal; }
}

/* =================== RESPONSIVE GRIDS =================== */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image img { height: 420px; }
  .discipline-grid, .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .catches-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .catches-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .discipline-grid, .offer-grid { grid-template-columns: 1fr; }
  .catches-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .catch-wide, .catch-tall { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .hero-meta .dot { display: none; }
}
