:root {
  --color-light: #F6F1E8;
  --color-form: #f1e9da;
  --color-dark: #2D241F;
  --color-primary: #B08A52;

  --color-submit-btn-hover: #4B3B2B;
  --color-submit-btn: #614d38;
  --color-accent-from-logo: #b08a52;

  --color-img-input: #eadec8;

  --font-size-h1:        1.5625rem;
  --font-size-h2:        1.5rem;
  --font-size-h3:        1.2rem;
  --font-size-base:      0.9375rem;
  --font-size-p:         0.680rem;
  --font-size-contact:   1.1rem;
  --font-size-small:     .7rem;
  --font-size-label:     1.2rem;
}

/* GLOBAL STYLES */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
html, body {
  height: 100%;
}
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  font-size: var(--font-size-base);
  line-height: 1.4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
  background: var(--color-light);
  color: var(--color-dark);
}
a {
  color: var(--color-dark);
}
h1 {
  font-size: var(--font-size-h1);
}
h2 {
  font-size: var(--font-size-h2);
}
h3 {
  font-size: var(--font-size-h3);
}
P {
  margin: 0;
  font-size: var(--font-size-p);
  line-height: 1.7;
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}
.bg-light {
  background: var(--color-light);
  color: var(--color-dark);
}
.bg-dark {
  background: var(--color-dark);
  color: var(--color-light);
}
.list-reset{
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.btn-style {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.btn-style:hover {
  background: var(--color-accent-from-logo);
}

/* HEADER + NAV*/
header {
  position: sticky;
  top: 0;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: #251D19;
  color: var(--color-light);
}
.brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand h1 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-list {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.header-tools {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-btn.cta {
  background: #f1e9da; 
  color: #3B2A1E;
  border: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.nav-btn.cta:hover {
  background: #e3d3b5;
}
.mobile-menu {
  display: block; 
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #1a1310;
  border-top: 2px solid rgba(176, 138, 82, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}
.burger-icon {
  display: none;
}

@media (max-width: 1100px) {
  .header-right {
    display: none;
  }

  /* BURGER ICON */
  .burger-icon {
    display: block;
    padding: 8px;
    border: none;
    background-color: transparent;
    z-index: 0;
    cursor: pointer;
  }
  .bar {
    display: block;
    background: #f6f1e8;
    width: 26px;
    height: 3px;
    border-radius: 4px;
    margin: 5px auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .burger-icon.expanded .bar.top {
    transform: translateY(8px) rotate(45deg);
  }
  .burger-icon.expanded .bar.middle {
    opacity: 0;
    transform: scaleX(0);
  }
  .burger-icon.expanded .bar.bottom {
    transform: translateY(-8px) rotate(-45deg);
  }
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 8px 0 16px;
  }
  .nav-btn-burger {
    display: block;
    color: #f6f1e8;
    background-color: transparent;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.06em;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s ease, background 0.2s ease;
  }
  .nav-btn-burger:hover {
    color: var(--color-primary);
    background: rgba(176, 138, 82, 0.07);
  }
  .nav-btn-burger.cta {
  margin: 16px 24px 8px;
  padding: 12px 24px;
  background: #f1e9da;
  color: #3B2A1E;
  font-weight: 600;
  border-radius: 999px;
  border-bottom: none;
  text-align: center;
  transition: background 0.2s ease;
  }
  .nav-btn-burger.cta:hover {
    background: #e3d3b5;
  }

  /* LANGUAGE MENU */
  .mobile-lang-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  }
  .lang-opt {
    font-size: 16px;
    letter-spacing: 0.12em;
    color: rgba(246,241,232,0.35);
    cursor: pointer;
    transition: color 0.2s ease;
  }
  .lang-opt.active {
    color: #f6f1e8;
    font-weight: 500;
  }
  .lang-divider {
    color: rgba(246,241,232,0.2);
    font-size: 13px;
  }
}

/* SHARED STYLES HEADER BUTTONS */
.nav-btn, .language-btn {
    display: inline-flex;    
    align-items: center;
    justify-content: center;
    padding: 0 18px;         
    height: 40px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.08rem;
    border-radius: 999px;
    text-decoration: none;   
    box-sizing: border-box;
    vertical-align: middle;
    box-shadow:
        0 0 11px 1px rgba(53,49,49,0.8),
        0 2px 6px rgba(156,118,60,0.1);
}

/* LANGUAGE DROPDOWN */
.language-selector {
  position: relative;
}
.language-btn {
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 0.8rem;
  cursor: pointer;
  padding: 8px;
  min-width: 125px;
  background: transparent;
  color: inherit;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.35s ease;
}
.language-btn:hover {
  background: var(--color-accent-from-logo);
}
.language-btn.color-hover {
  background: var(--color-accent-from-logo);
}
.language-menu {
  display: none;
  position: absolute;
  top: 80%;
  margin: 0.5rem 0 0;
  min-width: 150px;
  background-color: var(--color-form);
  color: var(--color-submit-btn);
  border-radius: 8px;
  /* z-index: 2; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.language-menu.show {
  display: block;
  border: none;
}
.language-menu li {
  padding: 0.75rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.language-menu li:hover {
  background: var(--color-accent-from-logo);
  color: var(--color-light);
  border-radius: 8px;
}

/* FOOTER */
footer {  
  padding: 1.5rem 1rem;
  text-align: center;
  background: #251D19;
  color: var(--color-light);
}
.footer-content {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer-content h2 {
  margin: 0;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-content h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: .5rem auto 0;
  background: #D8B38A;
}
.contact-link {
  display: flex;
  justify-content: center;
  align-items: center;;
  color: inherit;
  text-decoration: none;
  font-size: var(--font-size-contact);
  font-weight: 500;
  transition: transform .2s ease,
              color .2s ease;
}
.contact-link:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}
.social-links {
  margin-top: 0.5rem;
}
.social-links a {
  padding: .5rem .9rem;
  border-radius: 40px;
  text-decoration: none;
  color: inherit;
  background: var(--color-submit-btn);
}
.social-links a:hover {
  background-color: var(--color-submit-btn-hover);
}
.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.copyright span:first-child {
  color: rgba(246, 241, 232, 0.8);
}
.footer-divider {
  color: rgba(246, 241, 232, 0.3);
  font-size: 0.75rem;
}
.footer-policy-link {
  color: rgba(246, 241, 232, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer-policy-link:hover {
  color: var(--color-primary);
}