/* ===========================================================
   AZURA OUED LAOU — DESIGN TOKENS
   Alpine luxury: deep valley navy, brass, glacier grey, snow.
   Signature motif: the "ridge line" — a thin contour stroke
   that marks every section boundary, echoing a mountain skyline.
   =========================================================== */

:root {
  /* Palette */
  --mv-navy:        #142B3D;  /* deep valley night — primary dark */
  --mv-navy-deep:   #0C1B26;  /* footer / near-black */
  --mv-snow:        #F7F5F1;  /* warm white — primary light */
  --mv-brass:       #A9834B;  /* signature accent — used sparingly */
  --mv-brass-soft:  #C9AA76;  /* hover / tint of brass */
  --mv-logo-sun:    #FCC000;  /* sun yellow from the Azura logo — primary CTA */
  --mv-logo-sun-dk: #E0A800;  /* hover / deeper tint of the sun yellow */
  --mv-logo-wave:   #00C0F0;  /* wave blue from the Azura logo */
  --mv-glacier:     #7C93A3;  /* cool grey-blue — secondary text on dark */
  --mv-charcoal:    #23262B;  /* body text on light */
  --mv-line:        rgba(20,43,61,0.12);   /* hairline on light */
  --mv-line-dark:   rgba(247,245,241,0.14); /* hairline on dark */

  /* Type */
  --mv-font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --mv-font-body:    'Karla', 'Helvetica Neue', Arial, sans-serif;

  --mv-size-hero:    clamp(3rem, 7vw, 6.5rem);
  --mv-size-h1:      clamp(2.25rem, 4.2vw, 3.75rem);
  --mv-size-h2:      clamp(1.75rem, 2.8vw, 2.5rem);
  --mv-size-h3:      1.375rem;
  --mv-size-eyebrow: 0.75rem;
  --mv-size-body:    1rem;
  --mv-size-small:   0.875rem;

  --mv-tracking-eyebrow: 0.22em;
  --mv-tracking-wide:    0.06em;

  /* Layout */
  --mv-max-width:  1440px;
  --mv-gutter:     clamp(1.25rem, 4vw, 4rem);
  --mv-section-y:  clamp(4rem, 9vw, 8rem);

  /* Motion */
  --mv-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mv-dur:  0.6s;
}

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

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--mv-font-body);
  font-size: var(--mv-size-body);
  color: var(--mv-charcoal);
  background: var(--mv-snow);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--mv-font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }

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

.mv-container {
  max-width: var(--mv-max-width);
  margin: 0 auto;
  padding-left: var(--mv-gutter);
  padding-right: var(--mv-gutter);
}

.mv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--mv-size-eyebrow);
  letter-spacing: var(--mv-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--mv-brass);
  font-weight: 600;
}

.mv-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--mv-brass);
}

/* Oversized centered italic display — used on the page-title band */
.mv-display-xl {
  font-family: var(--mv-font-display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.75rem, 8vw, 6rem);
  line-height: 1.08;
  color: var(--mv-navy);
  text-align: center;
}
.mv-display-xl em { font-style: normal; }

/* Ridge-line divider — the signature element.
   A thin polyline suggesting a mountain contour, used at section seams. */
.mv-ridge {
  width: 100%;
  height: 28px;
  display: block;
}
.mv-ridge path {
  fill: none;
  stroke: var(--mv-line);
  stroke-width: 1;
}
.mv-ridge.mv-ridge--dark path { stroke: var(--mv-line-dark); }

.mv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  padding: 0.95em 2em;
  font-family: var(--mv-font-body);
  font-size: var(--mv-size-small);
  letter-spacing: var(--mv-tracking-wide);
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: background var(--mv-dur) var(--mv-ease), color var(--mv-dur) var(--mv-ease);
}
.mv-btn--brass {
  color: var(--mv-navy);
  background: var(--mv-logo-sun);
  border-color: var(--mv-logo-sun);
}
.mv-btn--brass:hover { background: var(--mv-logo-sun-dk); border-color: var(--mv-logo-sun-dk); }
.mv-btn--ghost-light { color: var(--mv-snow); }
.mv-btn--ghost-light:hover { background: var(--mv-snow); color: var(--mv-navy); }
.mv-btn--ghost-dark { color: var(--mv-navy); }
.mv-btn--ghost-dark:hover { background: var(--mv-navy); color: var(--mv-snow); }

.mv-section { padding: var(--mv-section-y) 0; }
.mv-section--navy { background: var(--mv-navy); color: var(--mv-snow); }
.mv-section--snow { background: var(--mv-snow); color: var(--mv-charcoal); }

.mv-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

.mv-skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--mv-brass); color: var(--mv-navy);
  padding: 1em 1.5em; z-index: 999;
}
.mv-skip-link:focus { left: var(--mv-gutter); top: var(--mv-gutter); }

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