:root {
  /*
  ==========================================================
  = Variables
  ==========================================================
  */

  /* Color Palette - Orasul VIP */
  --color-bg: #f7f4ef; /* warm cream background */
  --color-bg-soft: #fbf8f3;
  --color-surface: #ffffff;
  --color-surface-alt: #f1ece3;

  --color-text: #1c1a19;
  --color-text-soft: #5f564d;
  --color-text-muted: #8a8177;

  --color-primary: #c9a15a; /* subtle warm gold */
  --color-primary-soft: rgba(201, 161, 90, 0.12);
  --color-primary-hover: #b68d46;

  --color-success: #3a8f6b;
  --color-warning: #c78b3b;
  --color-danger: #b54848;

  --gray-50: #f9f7f4;
  --gray-100: #f0ece6;
  --gray-200: #e2dbd0;
  --gray-300: #cdc1b1;
  --gray-400: #b3a492;
  --gray-500: #8f8373;
  --gray-600: #6c6257;
  --gray-700: #4c443d;
  --gray-800: #322d28;
  --gray-900: #1c1815;

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", "Playfair Display", "Times New Roman",
    serif;

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-md: 1.0625rem; /* 17px */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.375rem;  /* 22px */
  --font-size-2xl: 1.75rem;  /* 28px */
  --font-size-3xl: 2.25rem;  /* 36px */
  --font-size-4xl: 3rem;     /* 48px */

  --line-height-tight: 1.2;
  --line-height-snug: 1.35;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  /* Spacing scale (0–96px) */
  --space-0: 0;
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-7: 1.75rem;  /* 28px */
  --space-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */

  /* Radius */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  /* Shadows - subtle and elegant */
  --shadow-soft:
    0 8px 30px rgba(15, 13, 11, 0.08),
    0 2px 8px rgba(15, 13, 11, 0.04);
  --shadow-subtle: 0 10px 40px rgba(18, 14, 10, 0.06);
  --shadow-elevated: 0 18px 60px rgba(14, 10, 6, 0.12);

  /* Transitions */
  --transition-fast: 120ms ease-out;
  --transition-normal: 200ms ease-out;
  --transition-slow: 320ms ease-out;
}

/*
==========================================================
= Reset / Normalize
==========================================================
*/

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote,
dl, dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  padding: 0;
  background: none;
}

textarea {
  resize: vertical;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
}

/*
==========================================================
= Base Styles
==========================================================
*/

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background: radial-gradient(circle at top left, #fffaf3 0, #f7f4ef 40%, #f0ebe5 100%);
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-soft);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: var(--line-height-tight);
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

h1 {
  font-size: clamp(2.4rem, 5vw, var(--font-size-4xl));
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, var(--font-size-3xl));
}

h3 {
  font-size: clamp(1.5rem, 2.8vw, var(--font-size-2xl));
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

a {
  color: var(--color-text);
  text-decoration: none;
  text-underline-offset: 0.2em;
  transition: color var(--transition-normal),
    opacity var(--transition-fast),
    text-decoration-color var(--transition-fast);
}

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

a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

small {
  font-size: 0.875em;
  color: var(--color-text-muted);
}

hr {
  border: 0;
  border-top: 1px solid var(--gray-200);
  margin: var(--space-8) 0;
}

/*
==========================================================
= Accessibility & Motion
==========================================================
*/

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/*
==========================================================
= Layout Utilities
==========================================================
*/

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  max-width: 1120px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.section--compact {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

.section__intro {
  max-width: 640px;
  margin-bottom: var(--space-8);
}

.section__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.section__title {
  margin-bottom: var(--space-3);
}

.section__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
}

/* Flex utilities */

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

/* Grid utilities */

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.grid-3 {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Alignment utilities */

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

.text-right {
  text-align: right;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

/***************************************************
Screen reader only
***************************************************/

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*
==========================================================
= Components
==========================================================
*/

/* Buttons */

.btn {
  --btn-bg: transparent;

  --btn-border: 1px solid rgba(0, 0, 0, 0.08);
  --btn-bg-hover: rgba(0, 0, 0, 0.02);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  border: var(--btn-border);
  background-color: var(--btn-bg);
  color: var(--btn-color);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color var(--transition-normal),
    color var(--transition-normal),
    box-shadow var(--transition-normal),
    transform var(--transition-fast);
}

.btn--primary {
  --btn-bg: linear-gradient(135deg, #c9a15a, #e2c58b);

  --btn-border: 1px solid rgba(140, 104, 47, 0.28);
  --btn-bg-hover: linear-gradient(135deg, #b68d46, #d6b679);
  box-shadow: 0 12px 30px rgba(34, 22, 8, 0.28);
}

.btn--ghost {
  --btn-bg: rgba(255, 255, 255, 0.1);
  --btn-color: #ffffff;
  --btn-border: 1px solid rgba(255, 255, 255, 0.35);
  --btn-bg-hover: rgba(255, 255, 255, 0.2);
}

.btn--subtle {
  --btn-bg: transparent;
  --btn-color: var(--color-text);
  --btn-border: 1px solid rgba(201, 161, 90, 0.35);
  --btn-bg-hover: rgba(201, 161, 90, 0.08);
}

.btn:hover {
  background: var(--btn-bg-hover);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.btn:focus-visible {
  outline: 2px solid rgba(201, 161, 90, 0.7);
  outline-offset: 3px;
}

/* Inputs & Forms */

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-4);
}

.form-label {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

.input,
.textarea,
select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(111, 93, 73, 0.3);
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
  transition:
    border-color var(--transition-normal),
    box-shadow var(--transition-normal),
    background-color var(--transition-fast);
}

.input::placeholder,
.textarea::placeholder {
  color: var(--color-text-muted);
}

.input:focus,
.textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(201, 161, 90, 0.95);
  box-shadow: 0 0 0 1px rgba(201, 161, 90, 0.75), 0 14px 30px rgba(34, 22, 8, 0.18);
  background-color: #ffffff;
}

.input--error,
.textarea--error {
  border-color: rgba(181, 72, 72, 0.8);
}

.input--error:focus,
.textarea--error:focus {
  box-shadow: 0 0 0 1px rgba(181, 72, 72, 0.7);
}

.form-help {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.form-error {
  font-size: var(--font-size-xs);
  color: var(--color-danger);
}

/* Cards */

.card {
  background-color: var(--color-surface);
  border-radius: 18px;
  border: 1px solid rgba(140, 119, 95, 0.14);
  box-shadow: var(--shadow-soft);
  padding: var(--space-6);
}

.card--soft {
  background: linear-gradient(145deg, #fdfaf5, #f4ede4);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.card__header {
  margin-bottom: var(--space-4);
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}

.card__meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.card__body {
  color: var(--color-text-soft);
}

.card__footer {
  margin-top: var(--space-4);
}

/* Hero & overlay helpers (for slider) */

.hero {
  position: relative;
  width: 100%;
  min-height: min(100vh, 820px);
  color: #ffffff;
  display: flex;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 900ms ease-out;
}

.hero__slide--active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(10, 6, 2, 0.82) 0%, rgba(11, 7, 3, 0.78) 36%, rgba(11, 7, 3, 0.5) 62%, rgba(18, 11, 5, 0.15) 100%),
    radial-gradient(circle at top left, rgba(220, 192, 133, 0.6), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.hero__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  color: #fff;
  margin-bottom: var(--space-4);
}

.hero__subtitle {
  max-width: 38rem;
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: var(--space-6);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Header layout helpers for centered logo with split nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(247, 244, 239, 0.96), rgba(247, 244, 239, 0.96));
  border-bottom: 1px solid rgba(156, 138, 116, 0.18);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  position: relative;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-header__nav-group {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.site-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__link {
  position: relative;
  padding-block: 0.25rem;
  color: var(--color-text-soft);
}

.site-header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #c9a15a, #e2c58b);
  transition: width var(--transition-normal);
}

.site-header__link:hover {
  color: var(--color-text);
}

.site-header__link:hover::after,
.site-header__link--active::after {
  width: 100%;
}

.site-header__link--active {
  color: var(--color-text);
}

/* Gallery helpers */

.media-grid {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.media-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-color: #000;
}

.media-grid__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 400ms ease-out;
}

.media-grid__item:hover .media-grid__image {
  transform: scale(1.07);
  opacity: 0.94;
}

.media-grid__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(6, 4, 2, 0.82), transparent);
  color: #fff;
}

.media-grid__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
}

.media-grid__meta {
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Pills / badges for experiences & events */

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 161, 90, 0.4);
  background: rgba(201, 161, 90, 0.06);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.pill--soft {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.18);
  color: #fdf7ee;
}

/* Status badges */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.badge--success {
  background: rgba(58, 143, 107, 0.1);
  color: #2a6f52;
}

.badge--warning {
  background: rgba(199, 139, 59, 0.1);
  color: #8e611f;
}

.badge--info {
  background: rgba(105, 128, 163, 0.12);
  color: #4a5a72;
}

/* Map container */

.map-embed {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(140, 119, 95, 0.16);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/*
==========================================================
= Helper Classes (color / background)
==========================================================
*/

.bg-surface {
  background-color: var(--color-surface);
}

.bg-soft {
  background-color: var(--color-bg-soft);
}

.bg-cream {
  background: radial-gradient(circle at top, #fffaf4 0, #f7f1e8 60%, #efe3d3 100%);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-soft {
  color: var(--color-text-soft);
}

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

/*
==========================================================
= Footer
==========================================================
*/

.site-footer {
  padding-top: var(--space-10);
  padding-bottom: var(--space-8);
  background: linear-gradient(to top, #15100c, #221910);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer__bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.56);
}
