/* ── Variables ───────────────────────────────────────────── */
:root {
  --color-bg:        #ffffff;
  --color-bg-alt:    #f5f5f3;
  --color-text:      #222222;
  --color-text-muted:#666666;
  --color-accent:    #c8511a;
  --color-accent-dk: #a84214;
  --color-border:    #e0ddd8;
  --font:            'Mulish', sans-serif;
  --header-h:        64px;
  --max-w:           1100px;
  --radius:          3px;
  --transition:      0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 200;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

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

ul { padding-left: 1.4em; }
li { margin-bottom: 0.3em; }
p  { margin-bottom: 0.8em; }
p:last-child { margin-bottom: 0; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Fixed background photo ──────────────────────────────── */
.sara-bg {
  position: fixed;
  top: 0;
  left: -76px;
  height: 100vh;
  width: auto;
  z-index: 0;
  pointer-events: none;
}

/* ── Header ──────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  backdrop-filter: blur(4px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 40px;
  width: auto;
}

#main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

#main-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 28px;
}

#main-nav ul a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

#main-nav ul a:hover { color: var(--color-accent); text-decoration: none; }

.lang-switcher {
  display: flex;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lang-switcher a {
  color: var(--color-text-muted);
  padding: 2px 6px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.lang-switcher a:hover,
.lang-switcher a.active {
  color: var(--color-accent);
  text-decoration: none;
}

.lang-switcher a.active {
  background: #f0ede8;
}

/* ── Mobile menu button ──────────────────────────────────── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Hero ────────────────────────────────────────────────── */
#hero {
  margin-top: var(--header-h);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #c8511a;
  background-size: cover;
  background-position: center;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #ffffff;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: clamp(13px, 1.5vw, 16px);
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ── Sections ────────────────────────────────────────────── */
.section {
  padding: 72px 0;
  position: relative;
  z-index: 1;
  background: transparent;
}

.section-alt {
  background: transparent;
}

.section-title {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

/* ── Accordion ───────────────────────────────────────────── */
.accordion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-full {
  grid-column: 1 / -1;
  margin-top: 24px;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text);
  text-align: left;
  transition: background var(--transition);
}

.accordion-header:hover { background: var(--color-bg-alt); }
.section-alt .accordion-header:hover { background: #eceae5; }

.accordion-icon {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--color-accent);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.accordion-icon::before { width: 10px; height: 1.5px; top: 4px; left: 0; }
.accordion-icon::after  { width: 1.5px; height: 10px; top: 0; left: 4px; }

.accordion-header[aria-expanded="true"] .accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion-body {
  display: none;
  padding: 16px 18px 18px;
  font-size: 14px;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

.accordion-body.open { display: block; }

.accordion-body strong { color: var(--color-text); }
.accordion-body em { color: var(--color-text); font-style: italic; }

/* ── Image grid (Besides) ────────────────────────────────── */
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.image-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  background: var(--color-bg-alt);
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.image-item:hover img { transform: scale(1.04); }

.image-item-empty {
  background: none;
  pointer-events: none;
}

.image-item-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

/* ── Contact form ────────────────────────────────────────── */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(138, 115, 85, 0.12);
}

.form-group textarea { resize: vertical; }

.btn-submit {
  padding: 11px 32px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}

.btn-submit:hover { background: var(--color-accent-dk); }

/* ── Anti-spam honeypot ──────────────────────────────────── */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Contact layout ──────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.contact-info {
  padding-top: 4px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.9;
  white-space: nowrap;
}

.contact-info a {
  color: var(--color-accent);
}

@media (max-width: 680px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-info { white-space: normal; }
}

/* ── Flash messages ──────────────────────────────────────── */
.flash {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 14px;
}

.flash-success {
  background: #edf7ed;
  color: #2e7d32;
  border: 1px solid #c3e6cb;
}

.flash-error {
  background: #fdecea;
  color: #c62828;
  border: 1px solid #f5c6cb;
}

/* ── Footer ──────────────────────────────────────────────── */
#site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--color-bg);
}

.footer-title {
  margin-bottom: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  color: #aaa;
  line-height: 1.8;
}

.footer-col:last-child {
  align-self: end;
}

.footer-col strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-text-muted);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .accordion-grid { grid-template-columns: 1fr 1fr; }
  .image-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  #main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 24px 20px;
  }

  #main-nav.open { display: flex; }

  #main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  #main-nav ul li { border-bottom: 1px solid var(--color-border); }
  #main-nav ul a { display: block; padding: 12px 0; }

  .lang-switcher { margin-top: 16px; }

  .mobile-menu-btn { display: flex; }

  .accordion-grid { grid-template-columns: 1fr; }
  .image-grid { grid-template-columns: 1fr 1fr; }

  .hero-content h1 { font-size: 14px; }
}
