@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-bg-light: var(--color-bg);

  /* Arthemis Rose Gold & Pearl Palette */
  --color-bg: #fdf8f5; 
  --color-surface: #ffffff;
  --color-primary: #d4a39a; /* Dusty Rose Gold / Rosa Empolvado */
  --color-primary-rgb: 212, 163, 154;
  --color-primary-dark: #b8857c; 
  --color-text-main: #5c433b; /* Borgoña cálido para los textos principales */
  --color-text-muted: #9c847d;
  --color-border: #e8d0ca;
  --color-accent: #f5e6df; /* Champagne cálido */

  /* Typography Avant-Garde */
  --font-heading: 'Playfair Display', serif;
  --font-greek: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;

  /* Shadows for depth (Soft warm shadows) */
  --shadow-sm: 0 4px 12px rgba(130, 90, 80, 0.05);
  --shadow-md: 0 10px 30px rgba(130, 90, 80, 0.08);
  --shadow-lg: 0 30px 60px rgba(130, 90, 80, 0.12);

  /* Glassmorphism (Warm Frosted Glass) */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(212, 163, 154, 0.3);
  --glass-blur: blur(20px);

  /* Layout */
  --container-width: 1200px;
  
  /* Animations */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  background-image: 
    radial-gradient(circle at 20% 0%, rgba(245, 230, 223, 0.8), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(212, 163, 154, 0.15), transparent 50%),
    radial-gradient(circle at 10% 100%, rgba(245, 230, 223, 0.6), transparent 50%);
  background-attachment: fixed;
  background-position: center;
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  padding-bottom: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-text-main);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary);
}

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

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 3rem 0;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  border-radius: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 150%;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(-1px) scale(1.0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(212, 163, 154, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(212, 163, 154, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  box-shadow: 0 4px 14px rgba(212, 163, 154, 0.05);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(212, 163, 154, 0.3);
}

.contact-toggle {
  display: none !important;
}

/* Greek Fret (Greca) Pattern */
.greca-border {
  height: 8px;
  background-color: var(--color-primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='10' viewBox='0 0 100 10'%3E%3Cpath d='M0 0v10h10V8h-8V0H0zm20 0v10h10V8h-8V0h-2zm20 0v10h10V8h-8V0h-2zm20 0v10h10V8h-8V0h-2zm20 0v10h10V8h-8V0h-2z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='10' viewBox='0 0 100 10'%3E%3Cpath d='M0 0v10h10V8h-8V0H0zm20 0v10h10V8h-8V0h-2zm20 0v10h10V8h-8V0h-2zm20 0v10h10V8h-8V0h-2zm20 0v10h10V8h-8V0h-2z' fill='%23000'/%3E%3C/svg%3E");
  mask-size: 40px 8px;
  -webkit-mask-size: 40px 8px;
  width: 100%;
  margin: 1.5rem 0;
  opacity: 0.15;
}

.marble-bg {
  background-color: #ffffff;
  background-image: 
    radial-gradient(at 0% 0%, hsla(45,20%,95%,1) 0, transparent 50%), 
    radial-gradient(at 50% 0%, hsla(0,0%,100%,1) 0, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(45,20%,95%,1) 0, transparent 50%);
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: var(--color-primary);
}

/* Forms */
.input-group {
  margin-bottom: 1rem;
  width: 100%;
}

.input-field {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background-color: var(--color-surface);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-main);
  transition: all var(--transition-fast);
  outline: none;
}

.input-field::placeholder {
  color: #a9a296;
}

.input-field:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

/* Scroll reveal */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

::selection {
  background: rgba(212, 163, 154, 0.35);
  color: var(--color-primary-dark);
}

.luxury-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.luxury-divider::before,
.luxury-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.luxury-divider-icon {
  color: var(--color-primary);
  font-size: 1.1rem;
  opacity: 0.8;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header .section-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-header .section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

.decorative-column {
  position: fixed;
  top: -5%;
  bottom: -5%;
  width: 15vw;
  max-width: 200px;
  background-image: url('/images/greek-column.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
}

.column-left {
  left: 0;
  border-right: 1px solid rgba(212, 163, 154, 0.1);
}

.column-right {
  right: 0;
  transform: scaleX(-1);
  border-right: 1px solid rgba(212, 163, 154, 0.1);
}

@media (max-width: 1024px) {
  .decorative-column {
    display: none;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  .section-header .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
  .section {
    padding: 2rem 0;
  }
  .section-header .section-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
  .section-header .section-subtitle {
    font-size: 1rem;
  }
  .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
  .glass-panel {
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 1rem;
  }
  .section {
    padding: 1.5rem 0;
  }
  .section-header {
    margin-bottom: 1.5rem;
  }
  .section-header .section-title {
    font-size: 1.7rem;
    letter-spacing: -0.5px;
  }
  .section-header .section-subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  .btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.82rem;
  }
  .glass-panel {
    border-radius: 14px;
    padding: 1.2rem;
  }
}
