/* ============================================================
   PARTY STAR RENTAL - Main Stylesheet v2.0
   Black #1A1A1A + Cream #F5F0E6 + Emerald #1F4D3A + Gold #B68A35
   Playfair Display (h1/h2/h3) + Montserrat (everything else)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Montserrat:wght@400;500;600;700&display=swap');

/* ============================================================ TOKENS ============================================================ */
:root {
  --black:         #1A1A1A;
  --black-soft:    #2C2C2C;
  --cream:         #F5F0E6;
  --cream-dark:    #EDE7D8;
  --white:         #FFFFFF;
  --emerald:       #B68A35;
  --emerald-dark:  #8A6420;
  --emerald-light: #D4A84B;
  --gold:          #B68A35;
  --gold-light:    #D4A84B;
  --gold-pale:     #F7F0DE;
  --text:          #1A1A1A;
  --text-mid:      #3D3D3D;
  --text-light:    #6B6B6B;
  --border:        #DDD8CE;
  --font-script:  'Great Vibes', cursive;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --radius:    6px;
  --radius-lg: 12px;
  --radius-xl: 18px;
  --shadow-sm: 0 1px 4px rgba(26,26,26,0.08);
  --shadow-md: 0 4px 18px rgba(26,26,26,0.11);
  --shadow-lg: 0 8px 36px rgba(26,26,26,0.16);
  --container: 1160px;
  --gutter:    clamp(20px, 4vw, 48px);
}

/* ============================================================ RESET & BASE ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-mid);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: var(--emerald); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

/* Headings: h1/h2/h3 = Playfair Display, h4+ = Montserrat */
h1, h2, h3 { font-family: var(--font-display); color: var(--black); line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; }
h4, h5, h6 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--black); }

p { margin-bottom: 1em; font-size: 18px; line-height: 1.75; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 4px; font-size: 18px; }
strong { font-weight: 700; color: var(--black); }
hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ============================================================ LAYOUT ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 80px 0; }
.section--white   { background: var(--white); }
.section--cream   { background: var(--cream); }
.section--black   { background: var(--black); color: rgba(245,240,230,0.72); }
.section--black > .container h2,
.section--black > .container h3 { color: var(--cream); }
.section--black > .container > p,
.section--black > .container > div > p { color: rgba(245,240,230,0.72); }
.section--black > .container strong { color: var(--white); }
/* Cards inside black sections keep their own white background and dark text */
.section--black .cat-card { background: var(--white); }
.section--black .cat-card .cat-card__name { color: var(--black); }
.section--black .cat-card .cat-card__desc { color: var(--text-mid); }
.section--black .cat-card p { color: var(--text-mid); }
.section--emerald { background: var(--emerald); }

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section__title { border-left: 3px solid var(--gold); padding-left: 18px; margin-bottom: 40px; }
.section__title--light { color: var(--cream); }
.section__title--center { border-left: none; padding-left: 0; text-align: center; }
.section__title--center::after { content: ''; display: block; width: 48px; height: 3px; background: var(--gold); margin: 14px auto 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ============================================================ NAVIGATION ============================================================ */
.site-header {
  background: var(--black);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0,0,0,0.40);
  width: 100%;
}

.site-header > .container {
  max-width: 100%;
  padding: 0 32px;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 0;
  width: 100%;
}

.header-inner .site-logo  { flex-shrink: 0; margin-right: 32px; }
.header-inner .primary-nav { flex: 1; justify-content: center; gap: 4px; }
.header-inner .nav-phone  { flex-shrink: 0; margin-left: 20px; margin-right: 12px; }
.header-inner .nav-cta    { flex-shrink: 0; }
.header-inner .menu-toggle { flex-shrink: 0; margin-left: 16px; }

.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }

.logo-mark {
  width: 40px; height: 40px;
  background: #1A6FD4;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}

.logo-mark img { width: 40px; height: 40px; object-fit: cover; border-radius: 50%; display: block; }
.logo-mark svg { width: 20px; height: 20px; fill: var(--black); }

.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--cream); line-height: 1.1;
  letter-spacing: 2px; text-transform: uppercase;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px; color: rgba(245,240,230,0.40); letter-spacing: 0.05em;
}

/* Nav - Montserrat SemiBold ALL CAPS */
.primary-nav { display: flex; align-items: center; gap: 2px; }

.primary-nav > a,
.primary-nav > div > a {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(245,240,230,0.70);
  padding: 8px 12px; border-radius: var(--radius);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}

.primary-nav > a:hover,
.primary-nav > div > a:hover,
.primary-nav .current-menu-item > a { color: var(--gold); background: rgba(255,255,255,0.05); }

.has-dropdown { position: relative; }

.has-dropdown > a::after {
  content: ''; display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(245,240,230,0.38);
  margin-left: 6px; vertical-align: middle; transition: transform 0.2s;
}

.has-dropdown:hover > a::after { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--black-soft);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  min-width: 220px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s; z-index: 100;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown a {
  display: block; padding: 11px 18px;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(245,240,230,0.62);
  border-bottom: 1px solid rgba(255,255,255,0.06); border-radius: 0;
}

.dropdown a:hover { background: rgba(182,138,53,0.12); color: var(--gold); }
.dropdown li:last-child a { border-bottom: none; }
.dropdown, .dropdown ul, .dropdown li { list-style: none; padding: 0; margin: 0; }

.nav-cta {
  background: var(--emerald); color: var(--black);
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 10px 20px; border-radius: var(--radius); white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--black); color: var(--cream); }

.nav-phone { font-family: var(--font-body); font-size: 13px; white-space: nowrap; }
.nav-phone a { color: rgba(245,240,230,0.48); }
.nav-phone a:hover { color: var(--gold); }

.menu-toggle {
  display: none; background: none;
  border: 1px solid rgba(245,240,230,0.22);
  border-radius: var(--radius); padding: 8px 10px; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); transition: transform 0.2s, opacity 0.2s; }

/* ============================================================ HERO ============================================================ */
.hero {
  position: relative; background: var(--black);
  min-height: 580px; display: flex; align-items: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.78) 55%, rgba(31,77,58,0.22) 100%);
  z-index: 1;
}
.hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; z-index: 0; border-radius: 0; }
.hero-content { position: relative; z-index: 2; padding: 100px 0; max-width: 740px; }

.hero-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.hero h1 { color: var(--cream); text-shadow: 0 2px 28px rgba(0,0,0,0.45); margin-bottom: 22px; }
.hero-sub {
  font-family: var(--font-body); font-size: clamp(1rem, 1.6vw, 1.25rem); font-weight: 400;
  color: rgba(245,240,230,0.68); margin-bottom: 36px; max-width: 580px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 26px; font-family: var(--font-body); font-size: 12px; color: rgba(245,240,230,0.34); letter-spacing: 0.04em; }

/* ============================================================ BUTTONS - Montserrat SemiBold ALL CAPS ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius); border: none; cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none; white-space: nowrap; line-height: 1;
}

/* Primary: Emerald bg, hover Gold */
.btn-primary { background: var(--emerald); color: var(--black); box-shadow: 0 2px 10px rgba(182,138,53,0.30); }
.btn-primary:hover { background: var(--black); color: var(--cream); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,26,26,0.30); }

/* Secondary: outline on dark bg */
.btn-secondary { background: transparent; color: var(--cream); border: 1.5px solid rgba(245,240,230,0.32); }
.btn-secondary:hover { background: rgba(245,240,230,0.08); color: var(--cream); border-color: rgba(245,240,230,0.58); }

/* Dark */
.btn-navy { background: var(--black); color: var(--cream); }
.btn-navy:hover { background: var(--gold-light); color: var(--black); transform: translateY(-1px); }

/* Outline on light bg */
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--cream); }

/* Gold */
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); color: var(--black); transform: translateY(-1px); }

.btn-sm { font-size: 11px; padding: 10px 20px; }
.btn-lg { font-size: 13px; padding: 18px 36px; }

/* ============================================================ CATEGORY GRID ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }

.cat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column;
}
.cat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.cat-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 0; background: var(--cream); }

.cat-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.card__tag {
  display: inline-block; font-family: var(--font-body);
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 10px;
}
.tag-event   { background: #FBF3E3; color: #7A5A1A; }
.tag-inflate { background: var(--gold-pale); color: #7A5A1A; }

.cat-card__name { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.cat-card__desc { font-family: var(--font-body); font-size: 15px; color: var(--text-mid); line-height: 1.65; flex: 1; margin-bottom: 18px; }
/* Prevent section--black p rule from making card text cream */
.cat-card__body { color: var(--text-mid); }
.cat-card__body p { color: var(--text-mid); }
.cat-card__body h3, .cat-card__body .cat-card__name { color: var(--black); }

/* ============================================================ STEPS ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 22px; text-align: center; box-shadow: var(--shadow-sm);
}
.step-card__num {
  width: 40px; height: 40px; background: var(--emerald); color: var(--white); border-radius: 50%;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step-card__label { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.step-card__text { font-family: var(--font-body); font-size: 15px; color: var(--text-mid); }

/* ============================================================ TRUST STRIP ============================================================ */
.trust-strip { background: var(--black); padding: 52px 0; border-top: 1px solid rgba(182,138,53,0.25); color: rgba(245,240,230,0.72); }
.trust-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.trust-item { text-align: center; }
.trust-item__num { font-family: var(--font-body); font-size: 2.2rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.trust-item__label { font-family: var(--font-body); font-size: 14px; color: rgba(245,240,230,0.48); line-height: 1.55; }

/* ============================================================ ACCORDION ============================================================ */
.areas-accordion { display: flex; flex-direction: column; gap: 6px; }
.area-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.area-trigger {
  width: 100%; background: none; border: none; text-align: left;
  padding: 16px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--black); transition: background 0.15s;
}
.area-trigger:hover { background: var(--cream); }
.area-trigger[aria-expanded="true"] { background: var(--black); color: var(--cream); border-left: 3px solid var(--gold); }
.area-trigger__icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.2s; }
.area-trigger[aria-expanded="true"] .area-trigger__icon { transform: rotate(180deg); filter: brightness(10); }
.area-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.area-panel[aria-hidden="false"] { max-height: 600px; }
.area-panel__inner { padding: 18px 20px; font-family: var(--font-body); font-size: 16px; color: var(--text-mid); line-height: 1.75; border-top: 1px solid var(--border); }
.area-panel__inner .toll-note { font-size: 13px; color: var(--text-light); margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--border); }

/* ============================================================ ABOUT BLOCK ============================================================ */
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-block__text h2 { margin-bottom: 20px; }
.about-block__text p  { margin-bottom: 16px; font-family: var(--font-body); }
.about-block__image   { border-radius: var(--radius-xl); overflow: hidden; }
.about-block__image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); }

/* ============================================================ CTA BAND ============================================================ */
.cta-band { background: var(--emerald); padding: 68px 0; text-align: center; }
.cta-band h2 { color: var(--black); margin-bottom: 12px; }
.cta-band p  { font-family: var(--font-body); color: rgba(26,26,26,0.70); margin-bottom: 30px; font-size: 1.1rem; }

/* ============================================================ PAGE HEADER ============================================================ */
.page-header { background: transparent; padding: 80px 0 72px; border-bottom: 2px solid var(--gold); min-height: 240px; }
.page-header__title { color: var(--cream); padding-left: 20px; border-left: 3px solid var(--gold); margin-bottom: 10px; }
.page-header__sub { font-family: var(--font-body); color: rgba(245,240,230,0.58); font-size: 16px; padding-left: 23px; margin-top: 4px; }

/* ============================================================ RENTAL CATEGORY PAGES ============================================================ */
.rental-cat-header { background: transparent; padding: 58px 0; }
.rental-cat-header__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.rental-cat-header h1 { color: var(--cream); margin-bottom: 14px; }
.rental-cat-header p  { font-family: var(--font-body); color: rgba(245,240,230,0.65); font-size: 1.05rem; }
.io-section { padding: 64px 0; background: var(--cream); }

/* ============================================================ INFLATABLE OFFICE OVERRIDES ============================================================ */
[id*="io_category_cart"],
[id*="io_cart"],
[id*="io_quoteform"],
[id*="io_contactform"] { font-family: var(--font-body) !important; }

[id*="io_category_cart"] > div,
[id*="io_category_cart"] > table { width: 100% !important; max-width: 100% !important; }

.io_items_div, [class*="io_items"], [class*="ioItemsDiv"] {
  display: flex !important; flex-wrap: wrap !important; gap: 24px !important; width: 100% !important;
}

.io_item_div, [class*="io_item_div"], [class*="ioItemDiv"] {
  flex: 1 1 calc(50% - 12px) !important; min-width: 260px !important; max-width: calc(50% - 12px) !important; box-sizing: border-box !important;
}

#io_cart_div, .io_cart_div {
  font-family: var(--font-body) !important; border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important; box-shadow: var(--shadow-md) !important; background: var(--white) !important;
}

[class*="io_item"] h3, [class*="io_item"] h2, [class*="io_item"] .itemName, [class*="io_item"] .item-name {
  font-family: var(--font-body) !important; font-weight: 600 !important; color: var(--black) !important;
}

[class*="io_item"] .price, [class*="io_item"] .itemPrice, .io-price {
  font-family: var(--font-body) !important; font-weight: 700 !important; color: var(--gold) !important; font-size: 1.1rem !important;
}

[id*="io"] input[type="text"], [id*="io"] input[type="email"], [id*="io"] input[type="tel"],
[id*="io"] input[type="date"], [id*="io"] select, [id*="io"] textarea {
  font-family: var(--font-body) !important; font-size: 16px !important; color: var(--black) !important;
  border: 1px solid var(--border) !important; border-radius: var(--radius) !important;
  padding: 12px 14px !important; background: var(--white) !important;
}

[id*="io"] input:focus, [id*="io"] select:focus, [id*="io"] textarea:focus {
  border-color: var(--emerald) !important; box-shadow: 0 0 0 3px rgba(182,138,53,0.25) !important; outline: none !important;
}

[id*="io"] label { font-family: var(--font-body) !important; font-size: 13px !important; font-weight: 600 !important; color: var(--black) !important; }

/* ============================================================ FAQ PAGE ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.faq-trigger {
  width: 100%; background: none; border: none; text-align: left; padding: 18px 22px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--black); transition: background 0.15s;
}
.faq-trigger:hover { background: var(--cream); }
.faq-trigger[aria-expanded="true"] { background: var(--gold-pale); border-bottom: 1px solid var(--border); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-panel[aria-hidden="false"] { max-height: 1000px; }
.faq-panel__inner { padding: 18px 22px; font-family: var(--font-body); font-size: 16px; color: var(--text-mid); line-height: 1.75; }

/* ============================================================ HOW WE WORK ============================================================ */
.process-steps { display: flex; flex-direction: column; }
.process-step { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.process-step__num {
  width: 48px; height: 48px; background: var(--emerald); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; flex-shrink: 0;
}
.process-step__title { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.process-step__text  { font-family: var(--font-body); font-size: 16px; color: var(--text-mid); line-height: 1.75; }

.policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.policy-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.policy-card h3 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--black); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.policy-card p, .policy-card li { font-family: var(--font-body); font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.policy-card ul { padding-left: 1.2rem; }
.policy-card li { margin-bottom: 6px; }

.holiday-table { width: 100%; border-collapse: collapse; font-family: var(--font-body); font-size: 15px; }
.holiday-table th { background: var(--black); color: var(--cream); padding: 12px 14px; text-align: left; font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.holiday-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); color: var(--text-mid); vertical-align: top; }
.holiday-table tr:nth-child(even) td { background: var(--cream); }

/* ============================================================ SERVICE AREAS ============================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.area-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.area-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--black); margin-bottom: 4px; }
.area-card__tagline { font-family: var(--font-body); font-size: 13px; font-style: italic; color: var(--gold); margin-bottom: 12px; }
.area-card p { font-family: var(--font-body); font-size: 15px; color: var(--text-mid); line-height: 1.65; }
.area-card--toll { border-left: 3px solid var(--gold); }
.toll-badge { display: inline-block; background: var(--gold-pale); color: #7A5A1A; font-family: var(--font-body); font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 4px; margin-top: 10px; }

/* ============================================================ CONTACT ============================================================ */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-detail__icon { width: 40px; height: 40px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail__icon svg { width: 18px; height: 18px; stroke: var(--emerald); fill: none; }

/* ============================================================ DEALS ============================================================ */
.coupon-block { background: var(--black); border-radius: var(--radius-xl); padding: 56px; text-align: center; border: 2px dashed var(--gold); }
.coupon-block h2 { color: var(--cream); margin-bottom: 12px; }
.coupon-block p  { font-family: var(--font-body); color: rgba(245,240,230,0.60); margin-bottom: 24px; }
.coupon-code { display: inline-block; background: var(--gold); color: var(--black); font-family: var(--font-body); font-size: 1.7rem; font-weight: 700; letter-spacing: 0.12em; padding: 16px 36px; border-radius: var(--radius); margin-bottom: 20px; }

/* ============================================================ ABOUT PAGE ============================================================ */
.about-hero {
  background: var(--black);
  padding: 96px 0 88px;
  border-bottom: 2px solid var(--gold);
}

.about-hero__inner {
  max-width: 780px;
}

.about-hero__inner .section__eyebrow { margin-bottom: 14px; }

.about-hero h1 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.1;
}

.about-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(245,240,230,0.68);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 620px;
}

.about-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Two-column story layout */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-story-text p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-story-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-xl);
}

/* Value cards with icon */
.value-card__icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1;
}

@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-story-img img {
    height: 300px;
  }
  .about-hero__actions .btn { width: auto; }
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; border-top: 3px solid var(--emerald); }
.value-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 10px; }
.value-card p  { font-family: var(--font-body); font-size: 15px; color: var(--text-mid); }

/* ============================================================ BALLOON PAGE ============================================================ */
.balloon-hero { background: var(--black); padding: 84px 0; text-align: center; }
.balloon-hero h1 { color: var(--cream); margin-bottom: 16px; }
.balloon-hero p  { font-family: var(--font-body); color: rgba(245,240,230,0.68); max-width: 540px; margin: 0 auto 28px; }

/* ============================================================ FOOTER ============================================================ */
.site-footer { background: var(--black); border-top: 2px solid var(--gold); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 52px; }
.footer-brand p { font-family: var(--font-body); font-size: 14px; color: rgba(245,240,230,0.42); margin-top: 14px; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(182,138,53,0.22); }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-family: var(--font-body); font-size: 14px; color: rgba(245,240,230,0.42); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { font-family: var(--font-body); font-size: 14px; color: rgba(245,240,230,0.42); margin-bottom: 10px; }
.footer-contact a { color: rgba(245,240,230,0.42); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); font-size: 12px; color: rgba(245,240,230,0.24); }
.footer-bottom a { color: rgba(245,240,230,0.24); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================ IO PRODUCT DETAIL ============================================================ */
.entry-content--product { max-width: 100%; }
.entry-content--product [class*="io-item-detail"],
.entry-content--product [class*="io_item"],
.entry-content--product [id*="io_item"],
.entry-content--product > div:first-child { width: 100% !important; max-width: 100% !important; }

/* ============================================================ RESPONSIVE ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-block { grid-template-columns: 1fr; gap: 36px; }
  .rental-cat-header__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .section { padding: 56px 0; }

  /* Header layout on mobile: logo left, toggle right */
  .site-header > .container { padding: 0 20px; }
  .header-inner { justify-content: space-between; }
  .header-inner .site-logo { margin-right: auto; }
  .header-inner .primary-nav { display: none; flex: none; }
  .header-inner .nav-phone { display: none !important; }
  .header-inner .nav-cta { display: none !important; }
  .menu-toggle { display: flex !important; margin-left: auto; }

  /* Open nav panel - drops down full width */
  .header-inner .primary-nav.is-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--black-soft);
    padding: 16px 0;
    border-top: 1px solid rgba(182,138,53,0.15);
    box-shadow: var(--shadow-lg);
    gap: 0;
    z-index: 999;
  }
  .header-inner .primary-nav.is-open > a,
  .header-inner .primary-nav.is-open > div > a { padding: 14px 20px; border-radius: 0; }
  .header-inner .primary-nav.is-open .dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border-top: none;
    border-radius: 0; background: rgba(0,0,0,0.18); display: none;
  }
  .header-inner .primary-nav.is-open .has-dropdown.is-open .dropdown { display: block; }
  .header-inner .primary-nav.is-open .dropdown a { padding-left: 36px; }

  /* Build Your Proposal inside open nav */
  .primary-nav.is-open .mobile-cta-wrap { display: block; padding: 12px 20px 4px; }
  .primary-nav.is-open .mobile-cta-wrap .nav-cta { display: inline-flex !important; width: 100%; justify-content: center; box-sizing: border-box; }
  .hero { min-height: 460px; }
  .hero-content { padding: 68px 0; }
  .grid-2, .grid-3, .steps-grid { grid-template-columns: 1fr; }
  .trust-items { grid-template-columns: 1fr; gap: 28px; }
  .policy-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn { width: auto; }
  .coupon-block { padding: 32px 20px; }
}

@media (max-width: 640px) {
  .io_item_div, [class*="io_item_div"], [class*="ioItemDiv"] { flex: 1 1 100% !important; max-width: 100% !important; }
}

@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .cat-grid { grid-template-columns: 1fr; }
}

/* ============================================================ ACCESSIBILITY ============================================================ */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.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; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }
.grecaptcha-badge { visibility: hidden; }
.search-submit { display: none; }

/* ============================================================
   FULL-WIDTH CONTENT IMAGES
   ============================================================ */

.img-full {
  width: 100%;
  display: block;
  border-radius: 0;
  max-height: 460px;
  object-fit: cover;
}

.img-full-wrap {
  background: var(--black);
  padding: 0;
  overflow: hidden;
}

.img-full-wrap img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* ============================================================
   CURSIVE / SCRIPT UTILITY
   ============================================================ */

.script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1;
  display: inline;
}

/* Scale the script word relative to its surrounding heading */
h1 .script  { font-size: 1.15em; }
h2 .script  { font-size: 1.18em; }
h3 .script  { font-size: 1.15em; }
.hero-eyebrow .script,
.section__eyebrow .script { font-size: 1.4em; letter-spacing: 0; }

/* ============================================================
   IO PRODUCT PAGE OVERRIDES (items 11-13)
   ============================================================ */

/* Hide "You might also be interested in" */
.io_also_interested,
[class*="also_interested"],
[class*="also-interested"],
.io-cross-sell,
[id*="also_interested"],
div:has(> h2:contains("You might also be interested")),
.ioRelatedProducts { display: none !important; }

/* Hide "Set Event Date" button */
.io_set_event_date,
.setEventDate,
[class*="setEventDate"],
[class*="set_event_date"],
input[value="Set Event Date"],
button:contains("Set Event Date") { display: none !important; }

/* View Product button — ensure text doesn't clip */
.io_view_product_btn,
.viewProductBtn,
[class*="viewProduct"],
input[value="View Product"],
a[class*="viewProduct"] {
  white-space: nowrap !important;
  overflow: visible !important;
  min-width: fit-content !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

/* ============================================================
   HERO HEADER — inner pages with background image
   ============================================================ */

.page-header {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.82);
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  opacity: 1;
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

/* ============================================================
   RENTAL CATEGORY HEADER — inner pages
   ============================================================ */

.rental-cat-header {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.rental-cat-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.82);
  z-index: 1;
}

.rental-cat-header > .container,
.rental-cat-header > div[style*="z-index:1"] {
  position: relative;
  z-index: 2;
}

.rental-cat-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  opacity: 0.16;
  z-index: 0;
}

.rental-cat-header .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   WHO WE ARE — square image
   ============================================================ */

.about-block__image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 20%;
}

/* ============================================================
   CTA / PROPOSAL SECTION
   ============================================================ */

.proposal-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.proposal-step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(182,138,53,0.30);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.proposal-step__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.proposal-step__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 10px;
  font-weight: 700;
}

.proposal-step__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(245,240,230,0.65);
  line-height: 1.7;
}

.proposal-step__note {
  font-size: 12px;
  color: rgba(245,240,230,0.42);
  margin-top: 10px;
  font-style: italic;
}

.proposal-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .proposal-steps { grid-template-columns: 1fr; }
  .proposal-cta { flex-direction: column; align-items: center; }
}

/* Proposal steps spacing */
.proposal-step__title { margin-bottom: 12px !important; }
.proposal-step p + p { margin-top: 12px; }
.proposal-step { padding: 32px 28px !important; }

/* Fix #7: centered CTA, space above */
.proposal-cta {
  margin-top: 48px !important;
  justify-content: center !important;
  gap: 0 !important;
}

/* Fix #15: stronger IO cross-sell hide */
.io_also_interested,
[class*="also_interested"],
[class*="also-interested"],
[id*="also_interested"],
.ioRelatedProducts,
[class*="ioRelated"],
[class*="io_related"],
div[class*="interested"],
section[class*="interested"] { display: none !important; visibility: hidden !important; height: 0 !important; overflow: hidden !important; margin: 0 !important; padding: 0 !important; }
