:root {
  --bg: #f4eedf;
  --bg-2: #ede3cf;
  --card: rgba(255, 250, 242, 0.76);
  --card-solid: #fbf7ee;
  --gold: #c9a646;
  --gold-soft: #dcc58b;
  --text: #5d4a39;
  --text-soft: #9c8669;
  --border: rgba(201, 166, 70, 0.26);
  --shadow: 0 14px 36px rgba(128, 108, 61, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #f6f1e6 0%, #efe6d6 100%);
  font-family: "Inter", sans-serif;
  color: var(--text);
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(214, 188, 126, 0.16), transparent 22%),
    radial-gradient(circle at 80% 40%, rgba(230, 214, 176, 0.18), transparent 18%),
    radial-gradient(circle at 50% 75%, rgba(212, 185, 125, 0.10), transparent 24%);
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 10px 16px 42px;
}

.lang-switch {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  width: fit-content;
  margin: 0 0 16px auto;
  padding: 2px;
  border: 1px solid rgba(201, 166, 70, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(255, 249, 239, 0.76);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(148, 125, 71, 0.05);
}

.lang-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--text-soft);
  padding: 7px 14px;
  font-size: 10px;
  letter-spacing: 0.16em;
  cursor: pointer;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: all 0.25s ease;
}

.lang-btn.active {
  background: linear-gradient(180deg, rgba(251,246,234,0.95), rgba(241,230,207,0.95));
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(201, 166, 70, 0.14);
}

.hero {
  text-align: center;
  margin-top: 4px;
  margin-bottom: 12px;
}

.brand-logo {
  width: min(100%, 255px);
  display: block;
  margin: 0 auto;
  
  filter: 
    brightness(0) 
    saturate(100%) 
    invert(69%) 
    sepia(52%) 
    saturate(414%) 
    hue-rotate(5deg) 
    brightness(95%) 
    contrast(92%)
    drop-shadow(0 4px 12px rgba(201, 166, 70, 0.35));
}

.brand-subtitle {
  margin: 4px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.38em;
  color: rgba(201, 166, 70, 0.72);
}

.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 18px 0 26px;
}

.hero-glow {
  position: absolute;
  width: 88%;
  height: 88%;
  top: 8%;
  left: 6%;
  background: radial-gradient(circle, rgba(213, 186, 122, 0.18), transparent 65%);
  filter: blur(22px);
  z-index: 0;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4.4;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
  box-shadow:
    0 16px 40px rgba(111, 84, 44, 0.14),
    inset 0 0 0 1px rgba(255,255,255,0.18);
}

.card {
  margin: 0 0 18px;
  background: linear-gradient(180deg, rgba(255,251,245,0.84), rgba(250,245,235,0.82));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 166, 70, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(201, 166, 70, 0.12);
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.34em;
  color: rgba(201, 166, 70, 0.86);
}

.card-dot {
  font-size: 10px;
  opacity: 0.9;
}

.card-body {
  padding: 14px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(201, 166, 70, 0.22);
  border-radius: var(--radius-lg);
  padding: 14px 15px;
  margin-bottom: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  box-shadow: 0 6px 18px rgba(163, 134, 78, 0.05);
}

.action-btn:last-child {
  margin-bottom: 0;
}

.action-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 250, 242, 1);
  box-shadow: 0 10px 22px rgba(157, 131, 77, 0.10);
}

.icon {
  flex: 0 0 auto;
  width: 18px;
  text-align: center;
  font-size: 14px;
  color: rgba(201, 166, 70, 0.86);
}

.btn-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.btn-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: 0.26em;
  color: rgba(201, 166, 70, 0.92);
}

.btn-value {
  font-size: 14px;
  line-height: 1.25;
  color: var(--text);
  white-space: normal;
  word-break: break-word;
}

.arrow {
  margin-left: auto;
  color: rgba(201, 166, 70, 0.55);
  font-size: 18px;
  line-height: 1;
}

.footer {
  text-align: center;
  padding: 20px 0 8px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: rgba(201, 166, 70, 0.65);
}

@media (max-width: 380px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-photo {
    max-width: 290px;
  }

  .btn-value {
    font-size: 13px;
  }
}