:root {
  --sand: #f6efe6;
  --sand-dark: #e8ddd0;
  --terra: #b85c38;
  --terra-dark: #8f4228;
  --teal: #1f6b62;
  --teal-light: #2a8a7e;
  --ink: #2a2218;
  --muted: #6b5f52;
  --gold: #c9a227;
  --white: #fffcf8;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(42, 34, 24, 0.12);
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--terra); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-dark);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  flex-wrap: wrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.lang {
  display: flex;
  gap: 4px;
}

.lang button {
  border: 1px solid var(--sand-dark);
  background: var(--white);
  color: var(--muted);
  border-radius: 8px;
  padding: 6px 10px;
  font: 600 0.8rem "Source Sans 3", sans-serif;
  cursor: pointer;
}

.lang button.on {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.logo span { color: var(--terra); }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a { color: var(--muted); }
.nav a:hover { color: var(--terra); }

.menu-btn {
  display: none;
  border: 0;
  background: var(--terra);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
}

/* hero */
.hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42,34,24,0.15) 0%, rgba(42,34,24,0.75) 100%),
    url("/img/293190_150/34537-2560x1600.jpg") center/cover no-repeat;
}

.hero .wrap {
  position: relative;
  padding: 80px 20px 48px;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 14ch;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 36ch;
}

/* sections */
section { padding: 64px 0; }

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--teal);
  margin-bottom: 20px;
}

.lead { font-size: 1.12rem; color: var(--muted); margin-bottom: 24px; max-width: 62ch; }

.prose p { margin-bottom: 1em; }
.prose strong { color: var(--terra-dark); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  color: var(--teal);
  margin-bottom: 8px;
}

.card p { font-size: 0.95rem; color: var(--muted); }

/* gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.gallery a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--sand-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery figcaption,
.gallery .cap {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 6px 4px 0;
  line-height: 1.3;
}

.tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* contact */
.contact-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  max-width: 520px;
}

.contact-box a { font-weight: 600; }

/* footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,252,248,0.75);
  padding: 40px 0;
  font-size: 0.9rem;
}

.site-footer a { color: var(--gold); }
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.alt-bg { background: var(--white); }

@media (max-width: 768px) {
  .menu-btn { display: block; }
  .site-header nav { width: 100%; order: 3; }
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 16px 20px;
    border-bottom: 1px solid var(--sand-dark);
  }
  .nav.open { display: flex; }
  .two-col { grid-template-columns: 1fr; }
  .hero { min-height: 340px; }
}
