/* ==========================================================================
   GLOBAL DESIGN TOKENS & RESET — CAMARÕES LUXURY EXPERIENCE
   Derived from the Aman & Amanyara Living Design System
   ========================================================================== */

/* Google Fonts Fallback & Serifs */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@200;300;400;500;600&family=Source+Code+Pro:wght@300;400;500&display=swap');

/* Local Font Declarations (Direct relative paths to assets) */
@font-face {
  font-family: "Lyon Display Web";
  src: url("aman.com_resorts_amanyara/assets/5e0ec6c33c35d3fd_LyonDisplay-Light-Web.woff2") format("woff2"),
       url("aman.com_resorts_amanyara/assets/25cd9d3a22e97ac0_LyonDisplay-Light-Web.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lyon Text Web";
  src: url("aman.com_resorts_amanyara/assets/587f42286fe875da_LyonText-Regular-Web.woff2") format("woff2"),
       url("aman.com_resorts_amanyara/assets/b516bade7f038315_LyonText-Regular-Web.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "WhitneySSm";
  src: url("aman.com_resorts_amanyara/assets/8c3dd7588a0c5365_WhitneySSm_normal_normal_300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "WhitneySSm";
  src: url("aman.com_resorts_amanyara/assets/23cdab3ab567f9c8_WhitneySSm_normal_normal_400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Color Palette */
  --color-primary: #f3eee7;              /* Aman Alabaster Warmth */
  --color-sand-light: #fdfaf6;           /* Pearl Sand */
  --color-sand-grey: #e6e2db;            /* Pale Sand Grey */
  --color-white: #ffffff;
  --color-charcoal: #313131;
  --color-black: #000000;
  --color-gold: #bfa665;                 /* Warm Gastronomic Gold Accent */
  --color-copper: #bf721e;               /* Warm Camarões Accent */
  --color-brown: #6a4b35;                /* Refined Editorial Brown */

  /* Typography */
  --font-display: "Lyon Display Web", "Cormorant Garamond", Georgia, serif;
  --font-text: "Lyon Text Web", "Cormorant Garamond", Georgia, serif;
  --font-sans: "WhitneySSm", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Source Code Pro", Consolas, monospace;

  /* Easing & Transitions */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 500ms var(--ease-luxury);
  --transition-fast: 250ms var(--ease-luxury);
}

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

html {
  font-size: 14px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-primary);
  color: var(--color-charcoal);
}

body {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  overflow-x: clip;
  position: relative;
  min-height: 100vh;
}

/* Media Elements Defaults */
video, img, picture {
  display: block;
  max-width: 100%;
}
