/* ============================================================
   SALON ZIG ZAG — MAIN STYLESHEET
   Fonts: The Seasons (Adobe/Typekit) · Montserrat (Google)
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */

:root {
  /* Colours */
  --color-dark: #181913;
  --color-brown: #816856;
  --color-olive: #888f62;
  --color-beige: #f0dec5;
  --color-white: #fffafa;
  --color-blush: #ebc7c9;

  /* Semantic roles */
  --color-text: var(--color-dark);
  --color-text-muted: var(--color-brown);
  --color-text-disabled: rgba(24, 25, 19, 0.35);
  --color-bg: var(--color-white);
  --color-bg-alt: var(--color-beige);
  --color-bg-footer: var(--color-blush);
  --color-border: var(--color-olive);
  --color-border-subtle: rgba(136, 143, 98, 0.25);

  /* Fonts */
  --font-heading: "the-seasons", "Georgia", serif;
  --font-body: "Montserrat", "Arial", sans-serif;

  /* Type scale — fluid via clamp(min, fluid, max) */
  --text-display: clamp(2rem, 2.5vw + 1rem, 3.5rem); /* 32px → 56px */
  --text-h1: clamp(1.75rem, 2vw + 0.75rem, 2.5rem); /* 28px → 40px */
  --text-h2: clamp(1.375rem, 1.5vw + 0.5rem, 2rem); /* 22px → 32px */
  --text-h3: clamp(1.125rem, 1vw + 0.5rem, 1.5rem); /* 18px → 24px */
  --text-h4: 1.25rem; /* 20px — fixed */
  --text-body: 1rem; /* 16px */
  --text-small: 0.875rem; /* 14px */
  --text-nav: 0.9375rem; /* 15px */
  --text-button: clamp(0.9375rem, 1vw + 0.3rem, 1.125rem);

  /* Spacing */
  --space-xs: 0.75rem; /* 12px */
  --space-sm: 1rem; /* 16px */
  --space-md: 1.5rem; /* 24px */
  --space-lg: 2rem; /* 32px */

  --space-section: clamp(3rem, 5vw + 1rem, 4rem); /* 48px → 64px */
  --page-margin: clamp(1.5rem, 5vw + 0.5rem, 5rem); /* 24px → 80px */

  /* Misc */
  --radius: 5px;
  --shadow-card: 0 0.25rem 1.25rem rgba(129, 104, 86, 0.1);
  --shadow-card-hover: 0 0.75rem 2rem rgba(129, 104, 86, 0.22);
  --shadow-button:
    0px 12px 40px -8px rgba(129, 104, 86, 0.4),
    inset 0px 3px 4px rgba(255, 250, 250, 0.35),
    inset 0px -1px 2px rgba(24, 25, 19, 0.35);

  --transition: 0.2s ease;
}

/* ============================================================
   2. RESET
   ============================================================ */

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

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

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

ul,
ol {
  list-style: none;
}

/* ============================================================
   3. BASE
   ============================================================ */

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.625;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: var(--text-h1);
}
h2 {
  font-size: var(--text-h2);
}
h3 {
  font-size: var(--text-h3);
}
h4 {
  font-size: var(--text-h4);
}

p {
  font-size: var(--text-body);
  line-height: 1.625;
}

small {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.57;
}

strong {
  font-weight: 500;
}

/* ============================================================
   4. LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--page-margin);
}

.site-main {
  min-height: 60vh;
}

section {
  padding-block: var(--space-section);
}

/* ============================================================
   5. TESTIMONIAL HEADING
   ============================================================ */

.testimonial-header-container {
  text-align: center;
  padding-bottom: var(--space-lg);
}
