/* =========================================
   Easy Fahrschule — style.css
   Pure CSS, no frameworks, mobile-first
   ========================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #374151;
  line-height: 1.6;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Design Tokens ---- */
:root {
  --primary:       #0f1c3f;
  --primary-light: #1a2d5a;
  --accent:        #c9a84c;
  --accent-light:  #e8c876;
  --accent-dark:   #a07830;
  --text:          #374151;
  --text-light:    #6b7280;
  --surface:       #f8f9fc;
  --border:        #e5e7eb;
  --white:         #ffffff;
  --success:       #10b981;
  --radius:        0.75rem;
  --radius-lg:     1.25rem;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:     0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:     0 10px 30px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  --container:     1200px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; color: var(--primary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.02em; }
h3 { font-size: 1.125rem; font-weight: 700; }
p  { color: var(--text-light); }

/* ---- Layout ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
.section--surface { background: var(--surface); }

.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(3,1fr); } }

.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}
.section-intro {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-intro p { margin-top: 0.75rem; font-size: 1rem; line-height: 1.7; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(201,168,76,.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 6px 20px rgba(201,168,76,.45);
  transform: translateY(-1px);
}
.btn--outline {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn--outline:hover { background: rgba(255,255,255,.14); }
.btn--dark { background: var(--primary); color: #fff; }
.btn--dark:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #20BA5C; }

.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.btn-group--center { justify-content: center; }

/* ---- Cards ---- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: rgba(201,168,76,.25);
}
.card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,.1);
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 1.5rem; height: 1.5rem; }
.card h3 { color: var(--primary); margin-bottom: 0.5rem; }
.card p  { font-size: 0.9rem; line-height: 1.65; }
.card-link { display: block; color: inherit; }

.card-link-text {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1rem;
  transition: color 0.2s;
}
.card-link:hover .card-link-text { color: var(--accent-dark); }
.card-link-text svg { width: 1rem; height: 1rem; transition: transform 0.2s; }
.card-link:hover .card-link-text svg { transform: translateX(3px); }

/* ---- Check list ---- */
.check-list { display: grid; gap: 0.6rem; margin-top: 1rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310b981'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---- Trust badges ---- */
.trust-badges { display: flex; flex-wrap: wrap; gap: 1rem 1.75rem; margin-top: 2rem; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(200,215,255,.65);
}
.trust-badge::before {
  content: '';
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23c9a84c'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: var(--accent); stroke-width: 2.5; }
.logo-name {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.logo-tagline {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
}

.main-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .main-nav { display: flex; } }

.nav-link {
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--surface); }

.nav-cta {
  margin-left: 0.75rem;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(201,168,76,.3);
  transition: all 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,168,76,.4); }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 0.5rem;
}
.hamburger span { display: block; height: 2px; background: var(--text-light); border-radius: 2px; transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0.75rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 0.75rem 1rem; font-size: 0.9375rem; border-radius: 0.5rem; }
.mobile-nav .nav-cta { margin: 0.5rem 0 0; text-align: center; padding: 0.875rem; display: block; border-radius: 9999px; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 50%, #0d2348 100%);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cdefs%3E%3Cpattern id='g' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M60 0L0 0 0 60' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23g)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding: 5rem 0; width: 100%; }
.hero-content { max-width: 650px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { color: rgba(200,215,255,.65); font-size: 1.0625rem; max-width: 520px; line-height: 1.75; }

/* =========================================
   PAGE HEADER
   ========================================= */
.page-header {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cdefs%3E%3Cpattern id='g' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M60 0L0 0 0 60' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23g)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; }
.page-header .section-label { color: var(--accent); margin-bottom: 0.75rem; }
.page-header h1 { color: #fff; font-size: clamp(1.75rem,4vw,2.75rem); max-width: 700px; margin: 0 auto 1rem; }
.page-header h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p { color: rgba(200,215,255,.65); max-width: 560px; margin: 0 auto; }

/* =========================================
   STEPS
   ========================================= */
.steps { display: grid; gap: 2rem; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3,1fr); } }
.step { text-align: center; }
.step-num {
  width: 4rem;
  height: 4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
}
.step h3 { margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; max-width: 240px; margin: 0 auto; }

/* =========================================
   FAQ
   ========================================= */
.faq-group { margin-bottom: 2.5rem; }
.faq-group-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.faq-group-title::before { content: ''; display: block; width: 2rem; height: 2px; background: var(--accent); border-radius: 2px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.5rem; overflow: hidden; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.15s;
  font-family: inherit;
}
.faq-question:hover { background: var(--surface); }
.faq-question svg { flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: var(--accent-dark); transition: transform 0.25s; }
.faq-item.open .faq-question { background: var(--surface); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.25rem 1.1rem; font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* =========================================
   CONTACT FORM
   ========================================= */
.form-grid { display: grid; gap: 1.25rem; }
.form-row-2 { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8125rem; font-weight: 600; color: var(--primary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  background: #fff;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cdefs%3E%3Cpattern id='g' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M60 0L0 0 0 60' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23g)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(200,215,255,.65); max-width: 520px; margin: 0 auto; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer { background: var(--primary); color: #fff; position: relative; }
.site-footer::before { content: ''; display: block; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,.4), transparent); }
.footer-grid { display: grid; gap: 2.5rem; padding: 3.5rem 0 2.5rem; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(200,215,255,.5); line-height: 1.65; max-width: 260px; }
.footer-heading { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.875rem; color: rgba(200,215,255,.55); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; color: rgba(200,215,255,.55); }
.footer-contact-item svg { width: 1rem; height: 1rem; color: rgba(201,168,76,.6); flex-shrink: 0; }
.footer-contact-item a { color: inherit; transition: color 0.15s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p, .footer-bottom a { font-size: 0.75rem; color: rgba(200,215,255,.35); }
.footer-bottom a:hover { color: rgba(200,215,255,.7); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.5); }
.wa-float svg { width: 1.75rem; height: 1.75rem; fill: #fff; }

/* =========================================
   SERVICES PAGE — detail cards
   ========================================= */
.service-cards { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .service-cards { grid-template-columns: 1fr 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: block;
  color: inherit;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: rgba(201,168,76,.3);
}
.service-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card-icon svg { width: 1.75rem; height: 1.75rem; }
.service-card h2 { font-size: 1.25rem; color: var(--primary); margin-bottom: 0.75rem; transition: color 0.2s; }
.service-card:hover h2 { color: var(--accent-dark); }
.service-card > p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.service-card .check-list { grid-template-columns: 1fr 1fr; }

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1.25rem;
  transition: color 0.2s;
}
.service-card:hover .more-link { color: var(--accent-dark); }
.more-link svg { width: 1rem; height: 1rem; transition: transform 0.2s; }
.service-card:hover .more-link svg { transform: translateX(3px); }

/* =========================================
   FOR-WHO GRID
   ========================================= */
.for-who-grid { display: grid; gap: 0.875rem; }
@media (min-width: 640px)  { .for-who-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .for-who-grid { grid-template-columns: repeat(3,1fr); } }
.for-who-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.for-who-item::before {
  content: '';
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23c9a84c'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* =========================================
   INFO BOX
   ========================================= */
.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box p { margin: 0; font-size: 0.9rem; }

/* =========================================
   HERO WITH IMAGE (two-column)
   ========================================= */
.hero-with-image { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) {
  .hero-with-image { grid-template-columns: 1fr 1fr; }
  .hero-content { max-width: 100%; }
}
.hero-image-wrap {
  display: none;
  position: relative;
}
@media (min-width: 1024px) { .hero-image-wrap { display: block; } }
.hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

/* =========================================
   WHY GRID
   ========================================= */
.about-text-block {
  max-width: 820px;
  margin: 0 auto 3rem;
}
.about-text-block p { font-size: 0.9375rem; line-height: 1.8; color: var(--text); }
.why-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4,1fr); } }
.why-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.why-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.why-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}
.why-icon svg { width: 1.4rem; height: 1.4rem; }
.why-item h3 { margin-bottom: .5rem; font-size: 1rem; }
.why-item p  { font-size: .875rem; line-height: 1.6; }

/* =========================================
   PHOTO GALLERY
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}
.gallery-item--featured {
  grid-column: span 2;
  grid-row: span 2;
}
@media (min-width: 1024px) {
  .gallery-item--featured { grid-column: span 2; grid-row: span 2; }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.04); }

/* =========================================
   UTILITY
   ========================================= */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.max-w-prose { max-width: 720px; margin: 0 auto; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }
main { flex: 1; }
