/*!
Theme Name: Tiger Skip Hire
Theme URI: https://unbranded.digital/
Author: Unbranded Digital
Author URI: https://unbranded.digital/
Description: Bespoke WordPress theme for Tiger Skip Hire of Mirfield, West Yorkshire. Built from approved Figma designs using ACF flexible content components.
Version: 1.0.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: tiger_theme
*/

:root {
  /* Brand colours (from Figma) */
  --color-primary: #ff5500;
  --color-primary-dark: #c33000;
  --color-display: #fc6101;      /* hero display headline orange */
  --color-dark: #121214;
  --color-dark-card: #1e1e21;
  --color-dark-border: #1e2939;
  --color-bg-cream: #faf9f6;
  --color-bg-light: #f8f9fb;
  --color-bg-lighter: #f9fafb;
  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;
  --color-text: #4a5565;
  --color-text-muted: #6a7282;
  --color-text-grey: #99a1af;
  --color-text-soft: #d1d5dc;
  --color-text-heading: #101828;
  --color-star: #fcc800;
  --color-placeholder: #757575;
  --color-green: #1a9a4a;

  /* Type. Hero display face is Nexa Rust Slab Black 3 (self-hosted, see
     @font-face below); Alfa Slab One remains as the loading fallback. */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Nexa Rust Slab', 'Alfa Slab One', 'Oswald', serif;

  /* Spacing scale (8px system) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;

  --wrapper-max: 76rem;          /* 1216px max content width */
  --radius: 4px;
  --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

/* Self-hosted display face (trial file — swap for the licensed version
   before launch). Only the Black 3 cut is used, on the hero headline. */
@font-face {
  font-family: 'Nexa Rust Slab';
  src: url('assets/fonts/nexa-rust-slab-black3.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.625;
  color: var(--color-text);
  background: #fff;
}

h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }

:where(ul[class], ol[class]) {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

a { color: inherit; }

button { font: inherit; }

strong { color: var(--color-dark); }
