:root {
  --green: #657958;
  --beige: #fcfaec;
  --ink: #21261f;
  --muted: #5f655c;
  --line: #d9d4c3;
  --card: #fffef7;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(28, 37, 24, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(101, 121, 88, 0.18), transparent 32%),
    radial-gradient(circle at 92% 0%, rgba(101, 121, 88, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdf2 0%, var(--beige) 75%, #f7f2dc 100%);
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(252, 250, 236, 0.92);
  border-bottom: 1px solid rgba(101, 121, 88, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), #7e8e72);
  color: #fff;
  display: grid;
  place-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.nav-links a {
  text-decoration: none;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.lang-link {
  text-decoration: none;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(101, 121, 88, 0.35);
  background: rgba(101, 121, 88, 0.1);
}

.nav-links a.active,
.nav-links a:hover {
  background: rgba(101, 121, 88, 0.12);
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(56, 71, 49, 0.28);
}

.btn-secondary {
  background: rgba(101, 121, 88, 0.13);
  color: var(--ink);
}

.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 3.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.kicker {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.lead {
  font-size: 1.08rem;
  color: #2f352c;
}

.page-logo-shell {
  display: none;
  width: fit-content;
  max-width: min(420px, 92%);
  padding: 0.65rem 0.95rem;
  margin: 0.2rem 0 1rem;
  border-radius: 16px;
  border: 1px solid rgba(101, 121, 88, 0.35);
  border-left: 6px solid var(--green);
  background: linear-gradient(165deg, #ffffff 0%, #f7f2df 100%);
  box-shadow: 0 14px 28px rgba(28, 37, 24, 0.14);
}

.page-logo {
  width: min(370px, 88vw);
  max-height: 86px;
  object-fit: contain;
  object-position: center;
  margin: 0;
}

.hero-media,
.image-placeholder {
  min-height: 330px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(145deg, rgba(101, 121, 88, 0.19), rgba(252, 250, 236, 0.9));
  border: 1px solid rgba(101, 121, 88, 0.2);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.image-placeholder {
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--muted);
}

.media-frame {
  min-height: 330px;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(101, 121, 88, 0.2);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #f3edd8;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.hero-logo {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: contain;
  padding: 0;
  background: transparent;
}

.hero-logo-frame {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 1rem;
}

.gallery.two-col {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(101, 121, 88, 0.22);
  box-shadow: var(--shadow);
  background: #f3edd8;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section {
  padding: 2.8rem 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(101, 121, 88, 0.3);
}

footer {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(101, 121, 88, 0.2);
  padding: 1.4rem 0;
  color: #3f463b;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

a[href*="instagram.com"],
a[href*="facebook.com"],
a[href*="wa.me/"] {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

a[href*="instagram.com"]::before,
a[href*="facebook.com"]::before,
a[href*="wa.me/"]::before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex: 0 0 auto;
}

a[href*="instagram.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23657958' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1'/%3E%3C/svg%3E");
}

a[href*="facebook.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23657958'%3E%3Cpath d='M14 8h3V4h-3c-3 0-5 2-5 5v3H6v4h3v4h4v-4h3l1-4h-4V9c0-.6.4-1 1-1z'/%3E%3C/svg%3E");
}

a[href*="wa.me/"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23657958' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9.5 8.5c.5-1 2-1 2.6-.3l.8.9c.5.5.5 1.3.1 1.9l-.4.6c.7 1.2 1.6 2.2 2.8 2.8l.6-.4c.6-.4 1.4-.3 1.9.1l.9.8c.7.6.7 2.1-.3 2.6-1 .5-2.6.7-5.1-.9-2.5-1.6-4.2-3.3-4.8-5.5-.3-1.1-.2-2 .1-2.6z'/%3E%3C/svg%3E");
}

.content-page {
  padding: 3rem 0 2rem;
}

.content-page .intro {
  max-width: 760px;
}

.cta-band {
  margin-top: 1.8rem;
  padding: 1.4rem;
  background: rgba(101, 121, 88, 0.1);
  border: 1px solid rgba(101, 121, 88, 0.22);
  border-radius: var(--radius);
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.map-consent {
  margin-bottom: 0.9rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(101, 121, 88, 0.24);
  background: rgba(101, 121, 88, 0.08);
}

.map-consent p {
  margin: 0 0 0.75rem;
}

.map-consent p:last-child {
  margin-bottom: 0;
}

.map-embed-shell {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(101, 121, 88, 0.22);
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .split,
  .gallery,
  .gallery.two-col {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .image-placeholder,
  .media-frame,
  .hero-photo,
  .hero-logo {
    min-height: 240px;
  }

  .brand-text {
    font-size: 1.15rem;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
  }
}

.logo-mark-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  border: 0;
  background: transparent;
  image-rendering: -webkit-optimize-contrast;
}
