/* ============================================================
   IRON HILL BRAND FONTS
   ============================================================ */
@font-face {
  font-family: 'IronHillMasonOT';
  src: url('../fonts/IronHillMasonOT.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MrEavesXLModOT';
  src: url('../fonts/MrEavesXLModOT-Reg.woff2') format('woff2'),
       url('../fonts/MrEavesXLModOT-Reg.woff')  format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MrEavesXLModOT';
  src: url('../fonts/MrEavesXLModOT-Ita.woff2') format('woff2'),
       url('../fonts/MrEavesXLModOT-Ita.woff')  format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'MrEavesXLModNarOT';
  src: url('../fonts/MrEavesXLModNarOT-Reg.woff2') format('woff2'),
       url('../fonts/MrEavesXLModNarOT-Reg.woff')  format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* =============================================================
   Iron Hill Brewery — main.css
   CSS custom properties make brand updates a single-line change.
   ============================================================= */

/* ── Variables ─────────────────────────────────────────── */
:root {
    /* Brand colors — update these when client sends assets */
    --color-primary:       #1a1a1a;
    --color-secondary:     #2c2c2c;
    --color-accent:        #c8973a;   /* amber/gold — brewery default */
    --color-accent-dark:   #a87828;
    --color-bg:            #ffffff;
    --color-text:          #1a1a1a;
    --color-text-muted:    #666666;
    --color-border:        #e5e5e5;
    --color-white:         #ffffff;

    /* Typography */
    --font-display:        'Playfair Display', Georgia, serif;
    --font-body:           'Source Sans 3', Arial, sans-serif;
    --font-size-base:      18px;
    --line-height-base:    1.65;

    /* Spacing */
    --space-xs:   0.5rem;
    --space-sm:   1rem;
    --space-md:   2rem;
    --space-lg:   4rem;
    --space-xl:   6rem;

    /* Layout */
    --container-max:       1280px;
    --container-pad:       clamp(1.25rem, 4vw, 2.5rem);

    /* Header */
    --header-height:       80px;
    --header-bg:           var(--color-primary);
    --header-text:         var(--color-white);

    /* Footer */
    --footer-bg:           var(--color-primary);
    --footer-text:         rgba(255,255,255,0.8);

    /* Transitions */
    --transition-fast:     150ms ease;
    --transition-base:     250ms ease;

    /* Radius */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   16px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--font-size-base); scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: var(--line-height-base);
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-accent-dark); }
ul, ol { list-style: none; }

/* ── Utility ────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65em 1.5em;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    white-space: nowrap;
}
.btn--primary {
    background: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}
.btn--primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: var(--color-white);
}
.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}
.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--header-bg);
    color: var(--header-text);
    height: var(--header-height);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.site-header__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
}
.site-header__logo {
    flex-shrink: 0;
}
.site-header__logo a {
    display: flex;
    align-items: center;
}
.site-header__logo img {
    max-height: 52px;
    width: auto;
}
.site-header__logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.02em;
}
.site-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.site-header__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.site-header__menu a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}
.site-header__menu a:hover,
.site-header__menu .current-menu-item > a {
    color: var(--color-accent);
    background: rgba(255,255,255,0.07);
}
.site-header__actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.site-header__phone {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}
.site-header__phone:hover { color: var(--color-accent); }

/* Mobile Toggle */
.site-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}
.site-header__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
}
.site-footer__main {
    padding: var(--space-xl) 0 var(--space-lg);
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
}
.site-footer__brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
}
.site-footer__tagline {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 28ch;
    line-height: 1.5;
}
.site-footer__social {
    display: flex;
    gap: 1rem;
    margin-top: var(--space-md);
    flex-wrap: wrap;
}
.site-footer__social a {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}
.site-footer__social a:hover { color: var(--color-accent); }
.site-footer__col-heading {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
}
.site-footer__menu {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.site-footer__menu a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}
.site-footer__menu a:hover { color: var(--color-white); }
.site-footer__legal-content {
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.7;
}
.site-footer__bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
}
.site-footer__copyright {
    font-size: 0.82rem;
    opacity: 0.5;
    text-align: center;
}

/* ── Main Content ───────────────────────────────────────── */
.site-main { min-height: 50vh; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --header-height: 64px; }

    .site-header__nav,
    .site-header__actions { display: none; }

    .site-header__toggle { display: flex; }

    /* Nav open state */
    .site-header.nav-open .site-header__nav {
        display: flex;
        position: fixed;
        inset: var(--header-height) 0 0 0;
        background: var(--header-bg);
        padding: 2rem var(--container-pad);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-y: auto;
        z-index: 899;
    }
    .site-header.nav-open .site-header__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
    .site-header.nav-open .site-header__menu a {
        font-size: 1.2rem;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        border-radius: 0;
    }
    .site-footer__grid { grid-template-columns: 1fr; }
}
/* ============================================================
   IRON HILL BREWERY — Opening Soon Page
   Scope: all rules prefixed .ih-os-wrap to avoid theme bleed
   Usage: paste into WP Customizer → Additional CSS
          OR enqueue via functions.php / child theme
   ============================================================ */

/* ── Reset (scoped) ── */
.ih-os-wrap *,
.ih-os-wrap *::before,
.ih-os-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }
.ih-os-wrap img { display: block; max-width: 100%; height: auto; }
.ih-os-wrap a { color: inherit; text-decoration: none; }

/* ── Shared utility ── */
.ih-display {
  font-family: 'IronHillMasonOT', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   HERO — full-bleed green
══════════════════════════════════════ */
.ih-os-wrap .hero-fullbleed {
  position: relative;
  min-height: 100vh;
  background: #9eb076;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 48px 0 64px;
}

/* Background bird watermark */
.ih-os-wrap .hero-fb-bird-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}
.ih-os-wrap .hero-fb-bird-img {
  width: 80%;
  max-width: 860px;
  height: auto;
  opacity: 0.18;
  filter: invert(1);
  mix-blend-mode: screen;
}

/* Diagonal light ray */
.ih-os-wrap .hero-fb-ray {
  position: absolute;
  top: -10%; left: -5%;
  width: 50%; height: 130%;
  background: linear-gradient(115deg, rgba(178,83,61,0.12) 0%, transparent 55%);
  pointer-events: none;
}

/* Center column */
.ih-os-wrap .hero-fb-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 40px;
  max-width: 900px;
  width: 100%;
}

/* Logo block */
.ih-os-wrap .hero-fb-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 52px;
}
.ih-os-wrap .hero-fb-logo {
  height: 80px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
}
.ih-os-wrap .hero-fb-tagline-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ih-os-wrap .hero-fb-rule {
  width: 40px; height: 1px;
  background: rgba(178,83,61,0.8);
}
.ih-os-wrap .hero-fb-tagline-text {
  font-family: 'MrEavesXLModOT', Arial, sans-serif;
  font-style: italic;
  font-size: 15px;
  color: #231f20;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Award / Opening Soon block */
.ih-os-wrap .hero-fb-award-block {
  position: relative;
  border: 1.5px solid rgba(178,83,61,0.70);
  box-shadow: 0 0 22px rgba(178,83,61,0.18), inset 0 0 16px rgba(178,83,61,0.07);
  padding: 52px 64px 44px;
  margin-bottom: 52px;
  max-width: 680px;
  width: 100%;
}
/* Corner marks — TL and BR via pseudo, TR and BL via .award-corner spans */
.ih-os-wrap .hero-fb-award-block::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 28px; height: 28px;
  border-color: #b2533d;
  border-style: solid;
  border-width: 3px 0 0 3px;
}
.ih-os-wrap .hero-fb-award-block::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 28px; height: 28px;
  border-color: #b2533d;
  border-style: solid;
  border-width: 0 3px 3px 0;
}
.ih-os-wrap .award-corner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: #b2533d;
  border-style: solid;
}
.ih-os-wrap .award-tr { top: -2px; right: -2px; border-width: 3px 3px 0 0; }
.ih-os-wrap .award-bl { bottom: -2px; left: -2px; border-width: 0 0 3px 3px; }

/* Divider — rule + diamond */
.ih-os-wrap .hero-fb-award-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.ih-os-wrap .hero-fb-award-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: #b2533d;
}
.ih-os-wrap .hero-fb-award-diamond {
  width: 7px; height: 7px;
  background: #b2533d;
  transform: rotate(45deg);
  opacity: 0.8;
}

/* Opening headline + body copy */
.ih-os-wrap .opening-headline {
  font-family: 'IronHillMasonOT', Arial, sans-serif;
  font-size: clamp(46px, 6vw, 76px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #231f20;
  line-height: 1.0;
  margin-bottom: 20px;
  font-weight: 700;
}
.ih-os-wrap .opening-body {
  font-family: 'MrEavesXLModOT', Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.75;
  color: #231f20;
  font-style: italic;
  max-width: 540px;
  margin: 0 auto 14px;
  text-align: center;
}
.ih-os-wrap .opening-sub {
  font-family: 'MrEavesXLModNarOT', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #231f20;
  text-align: center;
}

/* Location pills */
.ih-os-wrap .hero-fb-locations {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ih-os-wrap .hero-fb-locations-label {
  font-family: 'IronHillMasonOT', Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  font-weight: 700;
}
.ih-os-wrap .hero-fb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  align-items: center;
}
.ih-os-wrap .hero-fb-pill {
  font-family: 'MrEavesXLModNarOT', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #231f20;
  padding: 0 16px;
}
.ih-os-wrap .hero-fb-pill + .hero-fb-pill {
  border-left: 1px solid rgba(0,0,0,0.25);
}

/* ══════════════════════════════════════
   CINEMATIC BAND
══════════════════════════════════════ */
.ih-os-wrap .cinema-band {
  position: relative;
  width: 100%;
  height: 58vh;
  min-height: 420px;
  max-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ih-os-wrap .cinema-band-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.ih-os-wrap .cinema-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23,18,19,0.52);
}
.ih-os-wrap .cinema-band-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.ih-os-wrap .cinema-year {
  font-family: 'IronHillMasonOT', Arial, sans-serif;
  font-size: clamp(62px, 8vw, 110px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.0;
}
.ih-os-wrap .cinema-diamond-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0;
}
.ih-os-wrap .cinema-rule {
  width: 60px; height: 1px;
  background: rgba(193,139,61,0.7);
}
.ih-os-wrap .cinema-diamond {
  width: 8px; height: 8px;
  background: #c18b3d;
  transform: rotate(45deg);
}
.ih-os-wrap .cinema-sub {
  font-family: 'MrEavesXLModOT', Arial, sans-serif;
  font-style: italic;
  font-size: clamp(17px, 1.9vw, 22px);
  color: rgba(255,255,255,0.65);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   3-UP PHOTO GRID
══════════════════════════════════════ */
.ih-os-wrap .two-up {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  background: #231f20;
}
.ih-os-wrap .two-up-item {
  position: relative;
  overflow: hidden;
  height: 50vh;
  min-height: 340px;
  max-height: 520px;
  background: #231f20;
}
.ih-os-wrap .two-up-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.ih-os-wrap .two-up-item:hover .two-up-img { transform: scale(1.04); }
.ih-os-wrap .two-up-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 13px 24px;
  background: rgba(23,18,19,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(193,139,61,0.25);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.ih-os-wrap .two-up-label {
  font-family: 'IronHillMasonOT', Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  color: #c18b3d;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 700;
}
.ih-os-wrap .two-up-text {
  font-family: 'MrEavesXLModOT', Arial, sans-serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}

/* ══════════════════════════════════════
   CRAFT COPY BAND
══════════════════════════════════════ */
.ih-os-wrap .craft-band {
  background: #F5F4EC;
  padding: 52px 40px;
  text-align: center;
  border-top: 3px solid #231f20;
}
.ih-os-wrap .craft-band-headline {
  font-family: 'IronHillMasonOT', Arial, sans-serif;
  font-size: clamp(20px, 2.3vw, 27px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #231f20;
  line-height: 1.5;
  font-weight: 700;
}
.ih-os-wrap .craft-band-sub {
  font-family: 'MrEavesXLModNarOT', Arial, sans-serif;
  font-size: clamp(16px, 1.7vw, 20px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c18b3d;
  margin-top: 14px;
}

/* ══════════════════════════════════════
   PRESS SECTION
══════════════════════════════════════ */
.ih-os-wrap .press-section {
  background: #ffffff;
  padding: 64px 40px;
  border-top: 1px solid rgba(35,31,32,0.1);
}
.ih-os-wrap .press-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ih-os-wrap .press-rule-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.ih-os-wrap .press-rule { width: 36px; height: 1px; background: #b2533d; }
.ih-os-wrap .press-eyebrow {
  font-family: 'IronHillMasonOT', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b2533d;
  font-weight: 700;
}
.ih-os-wrap .press-body {
  font-family: 'MrEavesXLModOT', Arial, sans-serif;
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.5;
}
.ih-os-wrap .press-name {
  font-family: 'IronHillMasonOT', Arial, sans-serif;
  font-size: clamp(24px, 2.8vw, 32px);
  letter-spacing: 0.04em;
  color: #231f20;
  font-weight: 700;
}
.ih-os-wrap .press-contacts {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.ih-os-wrap .press-link {
  font-family: 'MrEavesXLModOT', Arial, sans-serif;
  font-size: 14px;
  color: #b2533d;
  border-bottom: 1px solid rgba(178,83,61,0.35);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.ih-os-wrap .press-link:hover { color: #904230; border-color: #b2533d; }
.ih-os-wrap .press-sep { color: #c7c6c6; font-size: 14px; }

/* ══════════════════════════════════════
   JOBS SECTION
══════════════════════════════════════ */
.ih-os-wrap .jobs-section {
  background: #231f20;
  padding: 80px 40px;
  text-align: center;
}
.ih-os-wrap .jobs-inner {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.ih-os-wrap .jobs-eyebrow {
  font-family: 'IronHillMasonOT', Arial, sans-serif;
  font-size: 32px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b2533d;
  font-weight: 700;
}
.ih-os-wrap .jobs-headline {
  font-family: 'IronHillMasonOT', Arial, sans-serif;
  font-size: clamp(33px, 4.5vw, 50px);
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.15;
  font-weight: 700;
}
.ih-os-wrap .jobs-body {
  font-family: 'MrEavesXLModOT', Arial, sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.58);
  max-width: 400px;
  line-height: 1.65;
}
.ih-os-wrap .jobs-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 15px 40px;
  background: #b2533d;
  color: #ffffff;
  font-family: 'IronHillMasonOT', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.15s ease;
}
.ih-os-wrap .jobs-btn:hover { background: #904230; transform: translateY(-2px); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.ih-os-wrap .os-footer {
  background: #1c1c1c;
  border-top: 1px solid rgba(178,83,61,0.15);
  padding: 48px 0;
  text-align: center;
}
.ih-os-wrap .os-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ih-os-wrap .os-footer-logo {
  display: block;
  margin: 0 auto 8px;
  width: 220px;
  height: auto;
}
.ih-os-wrap .os-footer-copy {
  font-family: 'IronHillMasonOT', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
}
.ih-os-wrap .os-footer-tag {
  font-family: 'MrEavesXLModOT', Arial, sans-serif;
  font-style: italic;
  font-size: 16px;
  color: #b2533d;
}
.ih-os-wrap .os-footer-legal {
  font-family: 'MrEavesXLModOT', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.28);
  margin-top: 14px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .ih-os-wrap .hero-fb-award-block { padding: 36px 28px 32px; }
  .ih-os-wrap .hero-fb-logo { height: 52px; }
  .ih-os-wrap .hero-fb-inner { padding: 60px 24px; }
  .ih-os-wrap .hero-fb-logo-wrap { margin-bottom: 36px; }
  .ih-os-wrap .two-up { grid-template-columns: 1fr; }
  .ih-os-wrap .two-up-item { height: 55vw; min-height: 260px; max-height: none; }
  .ih-os-wrap .cinema-year { font-size: clamp(48px, 11vw, 76px); }
  .ih-os-wrap .opening-body br { display: none; }
  .ih-os-wrap .press-section { padding: 48px 24px; }
  .ih-os-wrap .jobs-section { padding: 56px 24px; }
  .ih-os-wrap .press-sep { display: none; }
  .ih-os-wrap .press-contacts { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .ih-os-wrap * { transition-duration: 0.01ms !important; }
}

/* Footer logo — invert to white on dark background */
.ih-os-wrap .os-footer-logo { filter: brightness(0) invert(1); }
