@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  
  --wine-50: #fdf2f4;
  --wine-100: #fce7eb;
  --wine-200: #f9d0d9;
  --wine-300: #f4a9bb;
  --wine-400: #ed7896;
  --wine-500: #e14d73;
  --wine-600: #cc2d58;
  --wine-700: #ab2248;
  --wine-800: #8f1f40;
  --wine-900: #722038;
  --wine-950: #450c1e;


  --gold-50: #fefdf7;
  --gold-100: #fdfaeb;
  --gold-200: #faf2c7;
  --gold-300: #f5e599;
  --gold-400: #eed462;
  --gold-500: #e4be35;
  --gold-600: #cca026;
  --gold-700: #a87a20;
  --gold-800: #8a6120;
  --gold-900: #72501e;
  --gold-950: #422b0e;


  --cream-100: #fdfcf3;
  --cream-200: #faf7e4;
  --cream-300: #f5efd0;
  --cream-400: #ede2b0;


  --charcoal-400: #888888;
  --charcoal-500: #6d6d6d;
  --charcoal-600: #5d5d5d;
  --charcoal-700: #4f4f4f;
  --charcoal-800: #454545;
  --charcoal-900: #1a1a1a;
  --charcoal-950: #0d0d0d;


  --wine-gradient: linear-gradient(135deg, #1a1a1a 0%, #450c1e 50%, #722038 100%);
  --gold-gradient: linear-gradient(135deg, #cca026 0%, #e4be35 50%, #f5e599 100%);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', serif;
  background-color: var(--charcoal-950);
  color: var(--cream-100);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: var(--gold-600);
  color: var(--charcoal-900);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  z-index: 200;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.anti-debug-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  color: var(--cream-100);
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 300;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

html.devtools-open .anti-debug-overlay {
  display: flex;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal-900);
}

::-webkit-scrollbar-thumb {
  background: var(--wine-900);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--wine-800);
}

::selection {
  background: rgba(114, 32, 56, 0.5);
  color: var(--cream-100);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider-gold {
  width: 6rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-600), transparent);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold-600);
  color: var(--charcoal-900);
  border: 1px solid var(--gold-500);
}

.btn-gold:hover {
  background: var(--gold-500);
  box-shadow: 0 10px 25px rgba(204, 160, 38, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--cream-100);
  border: 1px solid rgba(253, 252, 243, 0.3);
}

.btn-secondary:hover {
  background: rgba(253, 252, 243, 0.1);
  border-color: var(--gold-600);
}

.btn svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(69, 69, 69, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--gold-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold-500);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--cream-100);
  letter-spacing: 0.025em;
}

.logo-text-sub {
  font-size: 0.65rem;
  color: rgba(204, 160, 38, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(253, 252, 243, 0.8);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold-600);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-500);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-login {
  padding: 0.5rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(253, 252, 243, 0.7);
  border: 1px solid rgba(253, 252, 243, 0.2);
  transition: all 0.3s ease;
}

.btn-login:hover {
  color: var(--gold-500);
  border-color: rgba(204, 160, 38, 0.5);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--cream-100);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(69, 69, 69, 0.5);
  padding: 1rem 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 0;
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu {
    display: block;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(13, 13, 13, 0.8), 
    rgba(13, 13, 13, 0.6), 
    var(--charcoal-950)
  );
}

.hero-overlay-wine {
  position: absolute;
  inset: 0;
  background: rgba(114, 32, 56, 0.3);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem 0;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-500);
  border: 1px solid rgba(204, 160, 38, 0.3);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: var(--cream-100);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(253, 252, 243, 0.7);
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(253, 252, 243, 0.3);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 9999px;
  animation: scroll-bounce 1.5s infinite;
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--charcoal-950);
}

.section-darker {
  background: var(--charcoal-900);
}

.section-wine {
  background: var(--wine-gradient);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cream-100);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-600);
  margin-bottom: 1rem;
}

.card {
  background: rgba(69, 69, 69, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(79, 79, 79, 0.5);
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(143, 31, 64, 0.5);
  box-shadow: 0 25px 50px -12px rgba(114, 32, 56, 0.1);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(114, 32, 56, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold-500);
}

.card-title {
  font-size: 1.5rem;
  color: var(--cream-100);
  margin-bottom: 1rem;
}

.card-text {
  color: rgba(253, 252, 243, 0.6);
  line-height: 1.8;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.image-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    rgba(13, 13, 13, 0.9), 
    rgba(13, 13, 13, 0.5), 
    transparent
  );
}

.image-section-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.image-section-text {
  max-width: 32rem;
}

.testimonial {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.stars svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold-500);
  fill: var(--gold-500);
}

.testimonial-quote {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  color: var(--cream-100);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(204, 160, 38, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar span {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--gold-500);
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--cream-100);
}

.testimonial-role {
  font-size: 0.875rem;
  color: rgba(253, 252, 243, 0.6);
}

.footer {
  background: var(--charcoal-950);
  border-top: 1px solid rgba(69, 69, 69, 0.5);
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 24rem;
}

.footer-brand p {
  color: rgba(253, 252, 243, 0.6);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.footer-title {
  font-size: 1.125rem;
  color: var(--cream-100);
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(253, 252, 243, 0.6);
  transition: color 0.3s ease;
  margin-bottom: 1rem;
}

.footer-contact-item:hover {
  color: var(--gold-500);
}

.footer-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-link {
  display: block;
  color: rgba(253, 252, 243, 0.6);
  transition: color 0.3s ease;
  margin-bottom: 0.75rem;
}

.footer-link:hover {
  color: var(--gold-500);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--charcoal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253, 252, 243, 0.6);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold-500);
  border-color: var(--gold-600);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-warning {
  border-top: 1px solid rgba(69, 69, 69, 0.5);
  padding: 1rem 0;
  text-align: center;
}

.footer-warning p {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--charcoal-500);
}

.footer-bottom {
  border-top: 1px solid rgba(69, 69, 69, 0.5);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--charcoal-500);
}

.footer-bottom .minor {
  font-size: 0.75rem;
  color: var(--charcoal-600);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(253, 252, 243, 0.7);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--charcoal-800);
  border: 1px solid var(--charcoal-700);
  color: var(--cream-100);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold-600);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--charcoal-400);
}

.form-textarea {
  resize: none;
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: var(--charcoal-800);
  color: var(--cream-100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(204, 160, 38, 0.2);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  color: var(--gold-500);
}

.timeline-text {
  color: rgba(253, 252, 243, 0.7);
  margin-top: 0.5rem;
}

.timeline-dot {
  position: relative;
  z-index: 10;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--gold-600);
  border: 4px solid var(--charcoal-950);
  flex-shrink: 0;
}

.timeline-spacer {
  flex: 1;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 0.5rem;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 2rem;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }

  .timeline-dot {
    position: absolute;
    left: 0;
  }

  .timeline-spacer {
    display: none;
  }
}

.page-header {
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--charcoal-900), transparent, var(--charcoal-900));
}

.page-header-content {
  position: relative;
  z-index: 10;
}

.prose {
  color: rgba(253, 252, 243, 0.7);
  font-size: 1.125rem;
  line-height: 1.8;
}

.prose h2 {
  font-size: 1.5rem;
  color: var(--cream-100);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.prose p {
  margin-bottom: 1.5rem;
}

.prose strong {
  color: var(--cream-100);
}

.prose ul {
  margin-bottom: 1.5rem;
}

.prose ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-600);
}

.prose .lead {
  font-size: 1.25rem;
  color: var(--cream-200);
}

.prose .small {
  font-size: 0.875rem;
  color: var(--charcoal-400);
}

.login-page {
  min-height: 100vh;
  display: flex;
}

.login-image {
  display: none;
  width: 50%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .login-image {
    display: flex;
  }
}

.login-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.login-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    rgba(13, 13, 13, 0.9), 
    rgba(13, 13, 13, 0.7), 
    var(--charcoal-900)
  );
}

.login-image-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

.login-form-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal-900);
  padding: 2rem;
}

@media (min-width: 1024px) {
  .login-form-container {
    width: 50%;
  }
}

.login-form-wrapper {
  width: 100%;
  max-width: 28rem;
}

.login-card {
  background: var(--charcoal-800);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--charcoal-700);
}

.login-header {
  margin-bottom: 2rem;
}

.login-title {
  font-size: 1.875rem;
  color: var(--cream-100);
  margin-bottom: 0.5rem;
}

.login-subtitle {
  color: rgba(253, 252, 243, 0.6);
}

.login-error {
  padding: 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 0.5rem;
  color: #f87171;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.form-input-login {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--charcoal-900);
  border: 1px solid var(--charcoal-600);
  border-radius: 0.5rem;
  color: var(--cream-100);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-input-login:focus {
  outline: none;
  border-color: var(--gold-600);
  box-shadow: 0 0 0 2px rgba(204, 160, 38, 0.2);
}

.form-input-login::placeholder {
  color: var(--charcoal-400);
}

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--charcoal-400);
  cursor: pointer;
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: var(--cream-200);
}

.login-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(253, 252, 243, 0.6);
}

.login-footer a {
  color: var(--gold-500);
  transition: color 0.2s ease;
}

.login-footer a:hover {
  color: var(--gold-400);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(114, 32, 56, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold-500);
}

.contact-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--cream-100);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: rgba(253, 252, 243, 0.7);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
}

.show-mobile {
  display: block;
}

@media (min-width: 768px) {
  .show-mobile {
    display: none;
  }
}

.stats-box {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--wine-900);
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--wine-800);
}

.stats-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold-500);
}

.stats-label {
  font-size: 0.875rem;
  color: rgba(253, 252, 243, 0.7);
  margin-top: 0.25rem;
}

.image-container {
  position: relative;
}

.image-container img {
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.map-placeholder {
  height: 16rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--charcoal-800);
  margin-top: 3rem;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
