/*
Theme Name: PMT Asia Blueprint
Theme URI: https://pmtasia.esupportdev2.xyz
Author: PMT Asia
Description: Custom blueprint-line theme for PMT Asia — hotel & resort engineering supplies. Navy and brass, hairline grid structure, precision typography.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: pmt-asia-blueprint
*/

:root {
  --bg: #FFFFFF;
  --surface: #F3F6FB;
  --ink: #0F1B33;
  --accent: #0248A6;
  --accent-bright: #0084D6;
  --line: #E1E8F5;
  --steel: #57678A;

  --gradient: linear-gradient(100deg, var(--accent) 0%, var(--accent-bright) 100%);

  --font-heading: 'PMT Heading', 'Space Grotesk', Arial, sans-serif;
  --font-body: 'PMT Body', 'IBM Plex Sans', Arial, sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;

  --radius-sm: 8px;
  --radius-md: 14px;

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote, figure) {
  margin: 0;
  padding: 0;
  font: inherit;
  border: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 4.2vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 2.6vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { max-width: 62ch; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: opacity 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { opacity: 0.9; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hairline { border: 0; border-top: 1px solid var(--line); }
