/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: #111;
  font-size: 14px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── FONTS ── */
.serif { font-family: 'Playfair Display', Georgia, serif; }

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
}
.nav-logo-sub {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: #bbb;
  margin-left: 10px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 10px; letter-spacing: 2px; color: #666; text-transform: uppercase; }
.nav-links a:hover { color: #111; }
.lang-toggle { font-size: 10px; letter-spacing: 2px; border: 1px solid #ddd; padding: 4px 10px; color: #bbb; }
.lang-toggle .lang-active { color: #111; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 10px; letter-spacing: 1px; color: #bbb; padding: 12px 40px; border-bottom: 1px solid #f0f0f0; }
.breadcrumb a { color: #bbb; }
.breadcrumb a:hover { color: #111; }

/* ── HERO (homepage) ── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.hero-photo { background: #e0d8cc; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #bbb; font-size: 11px; letter-spacing: 2px; min-height: 500px; }
.hero-text { padding: 64px 52px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid #e8e8e8; }
.hero-eyebrow { font-size: 9px; letter-spacing: 4px; color: #bbb; text-transform: uppercase; margin-bottom: 20px; }
.hero-name { font-family: 'Playfair Display', Georgia, serif; font-size: 52px; font-weight: 400; line-height: 1.05; letter-spacing: -1px; margin-bottom: 20px; }
.hero-bio { font-size: 13px; line-height: 1.85; color: #777; max-width: 360px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; padding: 11px 24px; cursor: pointer; display: inline-block; border: 1px solid #111; color: #111; background: none; }
.btn:hover { background: #111; color: #fff; }
.btn-outline { border-color: #ddd; color: #aaa; }
.btn-outline:hover { border-color: #111; color: #111; background: none; }
.btn-sm { padding: 7px 16px; font-size: 9px; }

/* ── SECTION ── */
.section { padding: 56px 40px; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px solid #e8e8e8; }
.section-title { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 400; }
.section-link { font-size: 10px; letter-spacing: 2px; color: #bbb; }
.section-link:hover { color: #111; }

/* ── DIRECTIONS GRID ── */
.directions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #e8e8e8; border: 1px solid #e8e8e8; }
.dir-card { background: #fff; cursor: pointer; }
.dir-card:hover .dir-overlay { opacity: 0; }
.dir-image { aspect-ratio: 4/3; display: flex; align-items: flex-end; padding: 16px; position: relative; background: #d8cfc0; overflow: hidden; }
.dir-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dir-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); transition: opacity 0.2s; }
.dir-label { position: relative; z-index: 1; }
.dir-name { font-family: 'Playfair Display', Georgia, serif; font-size: 17px; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
.dir-meta { font-size: 9px; letter-spacing: 2px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ── TOURS LIST ── */
.tours-list { border: 1px solid #e8e8e8; }
.tour-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 24px; align-items: center; padding: 18px 24px; border-bottom: 1px solid #f0f0f0; cursor: pointer; }
.tour-row:last-child { border-bottom: none; }
.tour-row:hover { background: #fafafa; }
.tour-date { color: #999; }
.tour-date strong { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; font-weight: 400; color: #111; display: block; line-height: 1; }
.tour-date span { font-size: 9px; letter-spacing: 2px; }
.tour-name { font-size: 14px; margin-bottom: 4px; }
.tour-detail { font-size: 10px; letter-spacing: 1px; color: #bbb; }
.tour-price .amount { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 400; }
.tour-price .currency { font-size: 9px; letter-spacing: 1px; color: #bbb; margin-top: 2px; }

/* ── DIRECTION PAGE HERO ── */
.dir-hero { height: 440px; position: relative; overflow: hidden; background: #d0ccc0; display: flex; align-items: flex-end; padding: 40px; }
.dir-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dir-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%); }
.dir-hero-content { position: relative; z-index: 1; }
.dir-hero-label { font-size: 9px; letter-spacing: 4px; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-bottom: 10px; }
.dir-hero-title { font-family: 'Playfair Display', Georgia, serif; font-size: 54px; font-weight: 400; color: #fff; line-height: 1; letter-spacing: -1px; }

/* ── DIRECTION INTRO ── */
.dir-intro { display: grid; grid-template-columns: 1fr 280px; gap: 60px; padding: 48px 40px; }
.dir-intro-text h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; font-weight: 400; margin-bottom: 16px; }
.dir-intro-text p { font-size: 13px; line-height: 1.85; color: #666; }
.dir-meta-list { padding-top: 4px; }
.meta-item { padding: 14px 0; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: baseline; }
.meta-item:first-child { border-top: 1px solid #f0f0f0; }
.meta-label { font-size: 9px; letter-spacing: 2px; color: #bbb; text-transform: uppercase; }
.meta-value { font-size: 12px; color: #555; }

/* ── GALLERY ── */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; margin-left: calc(180px + 48px); }
.gallery-item { aspect-ratio: 1; background: #e8e8e8; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }

/* ── EXTRA TEXT ── */
.extra-text { padding: 36px 40px; }
.extra-text-inner { display: grid; grid-template-columns: 180px 1fr; gap: 48px; }
.extra-text-label { font-size: 9px; letter-spacing: 3px; color: #bbb; text-transform: uppercase; padding-top: 3px; }
.extra-text-body { font-size: 13px; line-height: 1.85; color: #666; }
.extra-text-body p + p { margin-top: 14px; }

/* ── REQUEST FORM ── */
.request-box { background: #fafafa; border: 1px solid #e8e8e8; padding: 36px; }
.request-box-title { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 400; margin-bottom: 8px; }
.request-box-sub { font-size: 12px; color: #999; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 9px; letter-spacing: 2px; color: #aaa; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  border: 1px solid #e0e0e0; padding: 10px 12px; font-size: 13px;
  color: #111; background: #fff; outline: none; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #aaa; }
.form-textarea { resize: vertical; min-height: 80px; }
.contact-type { display: flex; gap: 8px; }
.ct-option {
  flex: 1; padding: 9px; border: 1px solid #e0e0e0;
  text-align: center; font-size: 10px; letter-spacing: 1px;
  cursor: pointer; color: #888; background: #fff;
  transition: border-color 0.15s, color 0.15s;
}
.ct-option.active { border-color: #111; color: #111; }
.form-error { font-size: 11px; color: #c00; margin-bottom: 16px; letter-spacing: 1px; }
.section-no-tours { color: #bbb; font-size: 16px; margin-bottom: 20px; }

/* ── TOUR PAGE ── */
.tour-page { padding: 48px 40px; }
.tour-page-meta { display: flex; gap: 32px; flex-wrap: wrap; padding-bottom: 24px; margin-bottom: 32px; }
.tour-meta-item { }
.tour-meta-label { font-size: 9px; letter-spacing: 2px; color: #bbb; text-transform: uppercase; margin-bottom: 4px; }
.tour-meta-value { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 400; }
.tour-page-desc { font-size: 13px; line-height: 1.85; color: #666; margin-bottom: 40px; }
.tour-meta-value.spots-low { color: #c07000; }
.tour-meta-value.spots-none { color: #c00; }

/* ── ABOUT PAGE ── */
.about-text { font-size: 13px; line-height: 1.85; color: #777; margin-bottom: 14px; }
.about-contacts { display: flex; flex-direction: column; gap: 8px; margin-top: 28px; }
.about-contact-link { font-size: 11px; letter-spacing: 1px; color: #999; }
.about-contact-link:hover { color: #111; }

/* ── REQUEST SENT ── */
.request-sent { max-width: 480px; margin: 80px auto; padding: 0 40px; text-align: center; }
.request-sent-title { font-family: 'Playfair Display', Georgia, serif; font-size: 32px; font-weight: 400; margin-bottom: 16px; }
.request-sent-text { font-size: 13px; color: #888; line-height: 1.7; margin-bottom: 32px; }

/* ── FOOTER ── */
.footer { border-top: 1px solid #e8e8e8; padding: 22px 40px; display: flex; justify-content: space-between; align-items: center; }
.footer-name { font-family: 'Playfair Display', Georgia, serif; font-size: 13px; color: #999; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 10px; letter-spacing: 1px; color: #bbb; }
.footer-links a:hover { color: #111; }

/* ── ADMIN ── */
.admin-body { font-family: 'Helvetica Neue', Arial, sans-serif; background: #f5f5f5; min-height: 100vh; }
.admin-nav { background: #111; padding: 14px 24px; display: flex; gap: 20px; align-items: center; }
.admin-nav a { font-size: 11px; letter-spacing: 1px; color: #888; }
.admin-nav a:first-child { color: #fff; margin-right: 16px; font-size: 13px; }
.admin-nav a:hover { color: #fff; }
.admin-content { padding: 32px 24px; max-width: 1000px; margin: 0 auto; }
.admin-title { font-size: 20px; font-weight: 400; margin-bottom: 24px; color: #111; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; }
.admin-table th { font-size: 9px; letter-spacing: 2px; color: #aaa; text-align: left; padding: 10px 14px; border-bottom: 2px solid #e8e8e8; text-transform: uppercase; }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid #f0f0f0; font-size: 13px; color: #333; vertical-align: middle; }
.admin-table tr:hover td { background: #fafafa; }
.admin-form { background: #fff; padding: 28px; }
.admin-field { margin-bottom: 20px; }
.admin-field label { display: block; font-size: 9px; letter-spacing: 2px; color: #aaa; text-transform: uppercase; margin-bottom: 6px; }
.admin-field input, .admin-field select, .admin-field textarea {
  width: 100%; border: 1px solid #e0e0e0; padding: 9px 12px;
  font-size: 13px; outline: none; font-family: inherit;
}
.admin-field input:focus, .admin-field select:focus, .admin-field textarea:focus { border-color: #aaa; }
.admin-field textarea { min-height: 100px; resize: vertical; }
.admin-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-btn { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; border: 1px solid #111; padding: 9px 20px; background: none; color: #111; cursor: pointer; }
.admin-btn:hover { background: #111; color: #fff; }
.admin-btn-danger { border-color: #c00; color: #c00; }
.admin-btn-danger:hover { background: #c00; color: #fff; }
.admin-hint { font-size: 11px; color: #bbb; margin-top: 4px; }
.badge { font-size: 8px; letter-spacing: 1px; padding: 2px 7px; border: 1px solid; display: inline-block; text-transform: uppercase; }
.badge-new { color: #080; border-color: #080; }
.badge-contacted { color: #660; border-color: #660; }
.badge-done { color: #aaa; border-color: #aaa; }
.badge-published { color: #080; border-color: #080; }
.badge-draft { color: #aaa; border-color: #aaa; }
.admin-img-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; margin-top: 12px; }
.admin-img-item { position: relative; aspect-ratio: 1; overflow: hidden; background: #e8e8e8; }
.admin-img-item img { width: 100%; height: 100%; object-fit: cover; }
.admin-img-del { position: absolute; top: 4px; right: 4px; background: rgba(0,0,0,0.6); color: #fff; border: none; font-size: 14px; width: 24px; height: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.admin-login { max-width: 320px; margin: 100px auto; padding: 32px; background: #fff; border: 1px solid #e8e8e8; }
.admin-login h2 { font-size: 16px; font-weight: 400; margin-bottom: 20px; }
.admin-error { font-size: 11px; color: #c00; margin-bottom: 12px; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.admin-stat { background: #fff; padding: 20px; border: 1px solid #e8e8e8; }
.admin-stat-num { font-size: 32px; font-weight: 300; margin-bottom: 4px; }
.admin-stat-label { font-size: 9px; letter-spacing: 2px; color: #aaa; text-transform: uppercase; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  html { font-size: 16px; }
  .nav { padding: 14px 20px; }
  .nav-logo-sub { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 280px; }
  .hero-text { padding: 32px 20px; }
  .hero-name { font-size: 36px; }
  .section { padding: 32px 20px; }
  .dir-intro { grid-template-columns: 1fr; gap: 24px; }
  .dir-intro { padding: 32px 20px; }
  .directions-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); margin-left: 0; }
  .tour-row { grid-template-columns: 60px 1fr; }
  .tour-price { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .extra-text-inner { grid-template-columns: 1fr; gap: 12px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
  .breadcrumb { padding: 10px 20px; }
}