/**
 * Layout utilities used by 2026 PHP markup (ported from Tailwind classes in CRO).
 * Load after tokens.css. Keep minimal — prefer component classes in interior-spaces.css.
 */

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.hidden { display: none !important; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0,
.shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-y-6 > * {
  margin-top: 0;
  margin-bottom: 0;
}
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-2 > * {
  margin-top: 0;
  margin-bottom: 0;
}
.space-y-2 > * + * { margin-top: 0.5rem; }
.list-none {
  list-style: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
}
.m-0 { margin: 0 !important; }
.p-0 { padding: 0 !important; }
.min-w-0 { min-width: 0; }
.rounded-full { border-radius: 9999px; }
.whitespace-nowrap { white-space: nowrap; }
.self-center { align-self: center; }
.font-medium { font-weight: 500; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.border-2 { border-width: 2px; border-style: solid; }
.border-accent { border-color: var(--color-accent); }
.w-full { width: 100%; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.h-full { height: 100%; }
.object-center { object-position: center; }
.pt-8 { padding-top: 2rem; }
.p-3 { padding: 0.75rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.w-4 { width: 1rem; }
.h-px { height: 1px; }
.h-1 { height: 0.25rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-8 { width: 2rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.p-8 { padding: 2rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.pb-1\.5 { padding-bottom: 0.375rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.aspect-video { aspect-ratio: 16 / 9; }
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-divider { border-color: var(--color-divider); }
.bg-white { background-color: #ffffff; }
.bg-base { background-color: var(--color-base); }
.bg-base-2 { background-color: var(--color-base-2); }
.bg-accent { background-color: var(--color-accent); }
.bg-blue-grey { background-color: var(--color-blue-grey); }
.bg-commercial { background-color: var(--color-commercial); }
.text-white { color: #ffffff; }
.text-white\/80 { color: rgb(255 255 255 / 0.8); }
.text-white\/85 { color: rgb(255 255 255 / 0.85); }
.text-body { color: var(--color-body); }
.text-accent { color: var(--color-accent); }
.text-theme-blue { color: var(--color-theme-blue); }
.text-commercial { color: var(--color-commercial); }
.text-gold { color: var(--color-gold); }
.text-contrast-2 { color: var(--color-contrast-2); }
.text-contrast-3 { color: var(--color-contrast-3); }
.shadow-tile { box-shadow: var(--shadow-tile); }
.scroll-mt-24 { scroll-margin-top: 6rem; }
.hover\:bg-accent:hover { background-color: var(--color-accent); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-commercial:hover { color: var(--color-commercial); }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }

@media (min-width: 40rem) {
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 48rem) {
  .md\:block { display: block !important; }
  .md\:hidden { display: none !important; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:items-end { align-items: flex-end; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:text-left { text-align: left; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:self-auto { align-self: auto; }
  .md\:w-auto { width: auto; }
  .md\:p-5 { padding: 1.25rem; }
  .md\:p-6 { padding: 1.5rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
  .md\:pb-4 { padding-bottom: 1rem; }
  .md\:py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .md\:mb-8 { margin-bottom: 2rem; }
  .md\:mb-10 { margin-bottom: 2.5rem; }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:gap-3 { gap: 0.75rem; }
  .md\:max-w-2xl { max-width: 42rem; }
}

@media (min-width: 64rem) {
  .lg\:grid { display: grid !important; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:mt-12 { margin-top: 3rem; }
  .lg\:mb-10 { margin-bottom: 2.5rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:w-1\/2 { width: 50%; }
  .lg\:w-2\/5 { width: 40%; }
  .lg\:w-3\/5 { width: 60%; }
  .lg\:w-full { width: 100%; }
}

/* Button fallbacks where @apply was stripped from interior-spaces.css */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background-color: var(--color-theme-blue);
  border: none;
  border-radius: var(--radius-brand);
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--color-accent);
  color: #ffffff;
}

.btn-enquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background-color: var(--color-theme-blue);
  border: none;
  border-radius: var(--radius-brand);
}

.btn-enquiry:hover {
  background-color: var(--color-commercial);
  color: #ffffff;
}

.btn-commercial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  background-color: var(--color-commercial);
  border: none;
  border-radius: var(--radius-brand);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background-color: var(--color-gold);
  border: none;
  border-radius: var(--radius-brand);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-gold:hover {
  background-color: var(--color-accent);
  color: #ffffff;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-theme-blue);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background-color: #ffffff;
  border: 2px solid var(--color-theme-blue);
  border-radius: var(--radius-brand);
}

.btn-nav:hover {
  background-color: var(--color-theme-blue);
  color: #ffffff;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: var(--radius-brand);
}

.btn-hero-secondary:hover {
  background-color: #ffffff;
  color: var(--color-theme-blue);
}

.body-copy {
  font-size: 1.3125rem;
  line-height: 1.625;
  color: var(--color-body);
}

.body-copy p {
  margin-top: 0;
  margin-bottom: 0;
}

.body-copy p + p {
  margin-top: 1rem;
}

.section-band {
  background-color: var(--color-base-2);
}

.section-band-alt {
  background-color: var(--color-base);
}
