/* Glasshopper - Minimal Static Site */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary: #2c5f6e;
  --color-accent:  #c9a84c;
  --color-text:    #333;
  --color-muted:   #666;
  --color-bg:      #fff;
  --color-light:   #f7f4f0;
  --font-body:     'Georgia', serif;
  --font-sans:     'Helvetica Neue', Arial, sans-serif;
  --max-width:     1100px;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #e5e0d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  gap: 1rem;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--color-primary); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 90vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 760px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: normal;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.92;
  margin-bottom: 1.75rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background: #b5912e; }

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
section:nth-child(even) { background: var(--color-light); }

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

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: normal;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.section-intro {
  max-width: 680px;
  color: var(--color-muted);
  margin-bottom: 3rem;
}

/* ── INTRO GRID ── */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.intro-card {
  border-top: 3px solid var(--color-accent);
  padding-top: 1.25rem;
}

.intro-card h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.intro-card p { color: var(--color-muted); }

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); transform: translateY(-3px); }

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.product-card-body { padding: 1.25rem; }

.product-card-body h3 {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ── QUOTE / TAGLINE ── */
.tagline-section {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.tagline-section blockquote {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.6;
}

.tagline-section cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: #fff;
  padding: 1.75rem;
  border-left: 4px solid var(--color-accent);
}

.testimonial p { font-style: italic; color: var(--color-muted); margin-bottom: 1rem; }

.testimonial cite {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ── WORKSHOPS ── */
.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.workshop-grid img {
  width: 100%;
  border-radius: 4px;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.workshop-text h2 { margin-bottom: 1rem; }
.workshop-text p { color: var(--color-muted); margin-bottom: 1rem; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 3px;
  transition: opacity 0.2s;
}

.gallery-grid img:hover { opacity: 0.88; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p { color: var(--color-muted); margin-bottom: 1rem; }
.about-text strong { color: var(--color-primary); }

.about-sidebar { background: var(--color-light); padding: 2rem; border-radius: 4px; }
.about-sidebar h3 { color: var(--color-primary); margin-bottom: 1rem; }
.about-sidebar p { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 0.5rem; }
.about-sidebar a { color: var(--color-primary); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 { color: var(--color-primary); font-size: 1.2rem; margin-bottom: 1rem; }
.contact-info p { color: var(--color-muted); margin-bottom: 0.5rem; }
.contact-info a { color: var(--color-primary); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

.contact-map {
  background: var(--color-light);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-map h3 { color: var(--color-primary); }
.contact-map p { color: var(--color-muted); font-size: 0.9rem; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--color-primary);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
}

/* ── PACKAGES ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.package-card {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 2rem;
  background: #fff;
}

.package-card h3 { color: var(--color-primary); font-size: 1.2rem; margin-bottom: 0.5rem; }
.package-card .package-duration {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.package-card p { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 0.75rem; }
.package-card ul { color: var(--color-muted); font-size: 0.95rem; padding-left: 1.25rem; }
.package-card li { margin-bottom: 0.4rem; }

/* ── FOOTER ── */
footer {
  background: #1a1a1a;
  color: #aaa;
  text-align: center;
  padding: 3rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  list-style: none;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  list-style: none;
}

.footer-social a { color: #ccc; font-size: 0.85rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0.75rem 1rem; }
  .nav-links { gap: 1rem; }
  .workshop-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 3rem 1.25rem; }
}

@media (max-width: 480px) {
  .nav-links { gap: 0.75rem; }
  .nav-links a { font-size: 0.75rem; }
}
