:root {
  --cream: #fff9f1;
  --white: #ffffff;
  --gold: #d7b46a;
  --deep-gold: #b88d3e;
  --sage: #6f8d6e;
  --forest: #35513f;
  --terracotta: #b4664a;
  --ink: #2c2a28;
  --muted: #6b645e;
  --shadow: 0 12px 30px rgba(53, 81, 63, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(215, 180, 106, 0.18) 0 18%, transparent 19%),
    radial-gradient(circle at 100% 15%, rgba(111, 141, 110, 0.18) 0 16%, transparent 17%),
    linear-gradient(180deg, #fffdf9 0%, var(--cream) 55%, #fffefb 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(255, 249, 241, 0.9);
  border-bottom: 1px solid rgba(184, 141, 62, 0.22);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: grid;
  gap: 0.1rem;
}

.brand h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  color: var(--forest);
}

.brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.main-nav a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(215, 180, 106, 0.25);
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid rgba(184, 141, 62, 0.45);
  border-radius: 999px;
  overflow: hidden;
}

.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 0.4rem 0.75rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
}

.lang-toggle button.active {
  background: var(--deep-gold);
  color: #fff;
}

.hero {
  min-height: 70vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(43, 60, 52, 0.65), rgba(180, 102, 74, 0.45)),
    url("https://images.unsplash.com/photo-1519491050282-cf00c82424b4?auto=format&fit=crop&w=1920&q=80") center/cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 84%, rgba(255, 255, 255, 0.22) 0 12%, transparent 13%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.18) 0 10%, transparent 11%);
  z-index: -1;
}

.hero-content {
  color: #fff;
  text-align: center;
  width: min(760px, 92%);
  animation: rise 0.9s ease-out;
}

.hero-content h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
}

.hero-content p {
  margin: 0.85rem 0 1.3rem;
  font-size: clamp(1.1rem, 2.1vw, 1.35rem);
}

.cta-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.cta-btn {
  background: var(--gold);
  color: #2f2313;
  box-shadow: 0 10px 28px rgba(19, 16, 8, 0.22);
}

.cta-btn:hover,
.cta-btn:focus-visible {
  transform: translateY(-2px);
  background: #e2c684;
}

.outline-btn {
  border: 1px solid var(--deep-gold);
  color: var(--deep-gold);
  background: rgba(255, 255, 255, 0.75);
}

.outline-btn:hover,
.outline-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(2.4rem, 6vw, 4.5rem) 0;
}

.section-title {
  margin: 0 0 1.3rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--forest);
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 70%;
  height: 2px;
  margin-top: 0.35rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.muted {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 141, 62, 0.2);
  padding: 1.05rem;
  animation: rise 0.7s ease-out;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--forest);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.embed-wrap iframe,
.embed-placeholder {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.embed-placeholder {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(
      45deg,
      #fdf6ea,
      #fdf6ea 12px,
      #f7ecd8 12px,
      #f7ecd8 24px
    );
  color: var(--muted);
  text-align: center;
  padding: 1.2rem;
  border: 1px dashed rgba(184, 141, 62, 0.5);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.badge {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(53, 81, 63, 0.28);
  background: rgba(111, 141, 110, 0.12);
  color: #304334;
  font-weight: 600;
}

.info-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list strong {
  color: var(--forest);
}

form {
  display: grid;
  gap: 0.75rem;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(111, 141, 110, 0.38);
  padding: 0.72rem;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check input {
  width: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery div {
  min-height: 100px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(215, 180, 106, 0.3), rgba(180, 102, 74, 0.18));
  border: 1px dashed rgba(53, 81, 63, 0.3);
}

.site-footer {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(184, 141, 62, 0.26);
  color: var(--muted);
  background: rgba(255, 251, 245, 0.9);
}

.reveal > * {
  opacity: 0;
  transform: translateY(14px);
  animation: fade-up 560ms ease forwards;
}

.reveal > *:nth-child(2) { animation-delay: 0.08s; }
.reveal > *:nth-child(3) { animation-delay: 0.16s; }
.reveal > *:nth-child(4) { animation-delay: 0.24s; }
.reveal > *:nth-child(5) { animation-delay: 0.32s; }

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
  }

  .main-nav a {
    padding: 0.4rem 0.6rem;
  }

  .card-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}
