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

:root {
  /* Colors */
  --bg-warm: #F9F8F6;
  --bg-dark: #121212;
  --bg-darker: #0A0A0A;

  --text-dark: #1A1A1A;
  --text-light: #F9F8F6;
  --text-muted: #757575;
  --text-muted-light: #A0A0A0;

  --accent-gold: #C5A880;
  --accent-gold-hover: #D4B995;
  --accent-gold-dark: #9A7E5A;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing (Base 8px) - INCREASED FOR PREMIUM EDITORIAL FEEL */
  --space-xs: 0.5rem;
  /* 8px */
  --space-sm: 1.5rem;
  /* 24px */
  --space-md: 3rem;
  /* 48px */
  --space-lg: 6rem;
  /* 96px */
  --space-xl: 10rem;
  /* 160px */
  --space-2xl: 16rem;
  /* 256px */

  /* Section Padding - INCREASED */
  --section-py: clamp(6rem, 15vw, 12rem);
  --container-px: clamp(2rem, 6vw, 5rem);

  /* Transitions - SLOWER FOR ELEGANCE */
  --transition-fast: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-medium: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 1.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-warm);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  color: inherit;
}

.heading-1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -1.5px;
}

.heading-2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.75px;
}

.heading-3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.25px;
}

.heading-4 {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.text-body-lg {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  font-weight: 300;
}

.text-body {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

.text-body-sm {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
}

.text-italic {
  font-style: italic;
}

p {
  margin-bottom: 1rem;
}

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

ul,
ol {
  list-style: none;
}

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

/* Global Utilities */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--accent-gold);
}

.bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.bg-warm {
  background-color: var(--bg-warm);
  color: var(--text-dark);
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

/* Container */
.container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* Section Padding */
.section-py {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  border-radius: 100px;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-warm);
}

.btn-primary:hover {
  background-color: var(--text-dark);
  color: var(--bg-warm);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--bg-warm);
}

.btn-outline-light {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn-outline-light:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
}

/* Glow Effect - STRONGER VISIBILITY */
.btn-glow {
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.6);
}

.btn-glow:hover {
  box-shadow: 0 0 35px rgba(197, 168, 128, 0.9);
  transform: translateY(-2px);
}

/* Modern Link Hover */
.link-hover {
  position: relative;
  display: inline-block;
}

.link-hover::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  transform-origin: bottom right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-hover:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}