@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Montserrat:wght@700&display=swap');

:root {
  --color-dark: #101010;
  --color-teal: #0bb4aa;
  --color-teal-dark: #089990;
  --color-bg: #f9fafd;
  --color-white: #ffffff;
  --color-grey: #6c6c77;
  --color-light-grey: #d9d9d9;
  --max-width: 1140px;
  --nav-height: 70px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-dark);
  background: var(--color-bg);
}

a { color: var(--color-teal); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── NAV ──────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--color-dark);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; color: var(--color-teal); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-teal); text-decoration: none; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content {
  position: relative;
  padding: 0 20px;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-top: 0.75rem;
}
.hero-scroll {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.75rem 2rem;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.hero-scroll:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-white);
  text-decoration: none;
}

/* ── PAGE HEADER (non-hero pages) ───────────────────── */
.page-header {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 40px;
  text-align: center;
  background: var(--color-dark);
  color: var(--color-white);
}
.page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-header p {
  color: var(--color-teal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ── LAYOUT HELPERS ───────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
}
.section { padding: 80px 0; }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-teal);
  margin-top: 0.6rem;
}
.section-title.centered { text-align: center; }
.section-title.centered::after { margin: 0.6rem auto 0; }

/* ── INTRO SECTION ────────────────────────────────────── */
.intro { background: var(--color-white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-text p + p { margin-top: 1rem; }

/* ── FEATURES ─────────────────────────────────────────── */
.features { background: var(--color-bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.feature-card {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.feature-card-body { padding: 1.5rem; }
.feature-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ── COVER BAND ───────────────────────────────────────── */
.cover-band {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}
.cover-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.cover-band-content { position: relative; }

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials { background: var(--color-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
  margin-top: 3rem;
}
.testimonial {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--color-light-grey);
  border-radius: 4px;
}
.testimonial img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}
.testimonial blockquote {
  font-style: italic;
  color: var(--color-grey);
  font-size: 0.95rem;
  line-height: 1.7;
}
.testimonial blockquote::before { content: '\201C'; }
.testimonial blockquote::after  { content: '\201D'; }
.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
  color: var(--color-dark);
}

/* ── GALLERY (about page) ─────────────────────────────── */
.gallery-intro { background: var(--color-white); }
.gallery-intro p { max-width: 780px; margin: 0 auto; font-size: 1.05rem; }

.gallery { background: var(--color-bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.gallery-item { overflow: hidden; border-radius: 2px; }
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: var(--color-grey);
  background: var(--color-white);
}

/* ── CTA BAND ─────────────────────────────────────────── */
.cta-band {
  background: var(--color-teal);
  padding: 60px 0;
  text-align: center;
  color: var(--color-white);
}
.cta-band h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--color-dark);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn:hover { background: #2a2a2a; text-decoration: none; color: var(--color-white); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}
.btn-outline:hover { background: var(--color-white); color: var(--color-dark); }

/* ── CONTACT ──────────────────────────────────────────── */
.contact { background: var(--color-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-info p { color: var(--color-grey); margin-bottom: 1rem; }
.contact-info a { color: var(--color-teal); }
.contact-form { background: var(--color-bg); padding: 2rem; border-radius: 4px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--color-light-grey);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--color-white);
  color: var(--color-dark);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-teal);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note {
  font-size: 0.8rem;
  color: var(--color-grey);
  margin-top: 0.75rem;
}

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2rem 30px;
  font-size: 0.85rem;
}
.site-footer a { color: var(--color-teal); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-dark);
    padding: 1rem 0;
  }
  .nav-links li a { display: block; padding: 0.7rem 2rem; }
  .nav-toggle { display: flex; }

  .intro-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }

  .cover-band { background-attachment: scroll; }

  .section { padding: 50px 0; }
}
