@charset "UTF-8";
/* CSS Document */
/* =============================================
   SCROLL REVEAL UTILITY
   ============================================= */
.pr-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease var(--pr-d, 0s), transform 0.6s ease var(--pr-d, 0s);
}
.pr-reveal.pr-pop {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
    transition: opacity 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) var(--pr-d, 0s),
                transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) var(--pr-d, 0s);
}
.pr-reveal.pr-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* =============================================
   PAGE HERO
   ============================================= */
.pr-hero {
    background: #000;
    background-image:
        repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px),
        repeating-linear-gradient( 45deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px);
    padding: 80px 40px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pr-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 48px;
    background: #f2f2f2;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.pr-hero-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000;
    background: #fff200;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 22px;
}
.pr-hero h1 {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}
.pr-hero h1 span { color: #fff200; }
.pr-hero p {
    font-size: 16px;
    color: #888;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   SECTION DIVIDER (matches site style)
   ============================================= */
.pr-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto 28px;
    padding: 0 40px;
}
.pr-divider-line {
    flex: 1;
    height: 1px;
    background: #ddd;
}
.pr-divider-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}

/* =============================================
   MAIN PRICING CARDS
   ============================================= */
.pr-main-section {
    padding: 70px 40px 60px;
    background: #f2f2f2;
}
.pr-main-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 12px;
}

/* Card */
.pr-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.pr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(0,0,0,0.15);
}

/* Card top — black with image */
.pr-card-top {
    background: #000;
    position: relative;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.pr-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.7s ease;
}
.pr-card-img.pr-img-loaded {
    opacity: 0.55;
}
/* Carbon pattern overlay on image */
.pr-card-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(0,0,0,0.18) 3px, rgba(0,0,0,0.18) 4px),
        repeating-linear-gradient( 45deg, transparent, transparent 3px, rgba(0,0,0,0.18) 3px, rgba(0,0,0,0.18) 4px);
    z-index: 1;
}
.pr-card-label {
    position: relative;
    z-index: 2;
    padding: 14px 18px;
    width: 100%;
}
.pr-card-label h3 {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}
.pr-card-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #000;
    background: #fff200;
    padding: 3px 8px;
    border-radius: 2px;
}

/* Card bottom — yellow with price */
.pr-card-bottom {
    background: #fff200;
    padding: 20px 18px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pr-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.pr-price-from {
    font-size: 11px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.pr-price-num {
    font-size: 38px;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.04em;
    line-height: 1;
}
.pr-price-num sup {
    font-size: 18px;
    font-weight: 700;
    vertical-align: super;
    letter-spacing: 0;
}
.pr-price-note {
    font-size: 10.5px;
    color: #555;
    line-height: 1.5;
    font-style: italic;
}
.pr-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000;
    padding-bottom: 2px;
    width: fit-content;
    margin-top: auto;
    transition: gap 0.2s ease, opacity 0.2s;
}
.pr-card-cta:hover { gap: 10px; opacity: 0.7; }

/* Sqft note under grid */
.pr-sqft-note {
    text-align: center;
    font-size: 12px;
    color: #888;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    font-style: italic;
}

/* =============================================
   ADD-ON SERVICES
   ============================================= */
.pr-addons-section {
    padding: 0px 40px 60px;
    background: #f2f2f2;
}
.pr-addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.pr-addon-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 26px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.pr-addon-card:hover {
    transform: translateY(-3px);
    border-color: #fff200;
}
.pr-addon-icon {
    width: 46px;
    height: 46px;
    background: #1a1a1a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pr-addon-icon svg { width: 26px; height: 26px; }
.pr-addon-name {
    font-size: 13.5px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.pr-addon-price {
    font-size: 22px;
    font-weight: 900;
    color: #fff200;
    letter-spacing: -0.03em;
    line-height: 1;
}
.pr-addon-rate {
    font-size: 10px;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* =============================================
   DISCOUNTS STRIP
   ============================================= */
.pr-discounts-section {
    background: #000;
    background-image:
        repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px),
        repeating-linear-gradient( 45deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px);
    padding: 56px 40px;
}
.pr-discounts-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.pr-discount-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 18px 24px;
    min-width: 240px;
    transition: border-color 0.2s;
}
.pr-discount-pill:hover { border-color: #fff200; }
.pr-disc-pct {
    font-size: 34px;
    font-weight: 900;
    color: #fff200;
    letter-spacing: -0.04em;
    line-height: 1;
    flex-shrink: 0;
}
.pr-disc-label {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
}
.pr-disc-sub {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}
.pr-trust-strip {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 28px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 24px;
    border-top: 1px solid #1e1e1e;
}
.pr-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #888;
}

/* =============================================
   SQUARE FOOTAGE TABLE
   ============================================= */
.pr-sqft-section {
    padding: 70px 40px 60px;
    background: #f2f2f2;
}
.pr-sqft-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}
.pr-sqft-intro h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: #000;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.pr-sqft-intro p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.pr-sqft-table-wrap {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
table.pr-sqft-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 14px;
}
.pr-sqft-table thead tr {
    background: #000;
}
.pr-sqft-table thead th {
    padding: 14px 20px;
    text-align: left;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff200;
}
.pr-sqft-table thead th:not(:first-child) {
    text-align: center;
}
.pr-sqft-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}
.pr-sqft-table tbody tr:last-child { border-bottom: none; }
.pr-sqft-table tbody tr:hover { background: #fafafa; }
/* Highlight starting row */
.pr-sqft-table tbody tr.pr-row-base {
    background: #fffde7;
}
.pr-sqft-table tbody tr.pr-row-base:hover { background: #fffacc; }
.pr-sqft-table tbody td {
    padding: 14px 20px;
    color: #222;
    font-weight: 500;
}
.pr-sqft-table tbody td:not(:first-child) {
    text-align: center;
    font-weight: 700;
    color: #000;
}
.pr-sqft-table tbody td.pr-td-sqft {
    font-weight: 600;
    color: #444;
}
/* Yellow accent on base price cells */
.pr-sqft-table tbody tr.pr-row-base td:not(:first-child) {
    color: #000;
    position: relative;
}
.pr-sqft-table tbody tr.pr-row-base td:not(:first-child)::after {
    content: ' ✦';
    font-size: 8px;
    color: #bba000;
    vertical-align: super;
}
.pr-sqft-table tfoot td {
    padding: 12px 20px;
    font-size: 11px;
    color: #999;
    font-style: italic;
    background: #fafafa;
    border-top: 1px solid #eee;
}

/* =============================================
   BOTTOM CTA
   ============================================= */
.pr-cta-section {
    background: #fff200;
    padding: 70px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pr-cta-section::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 48px;
    background: #f2f2f2;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
.pr-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.pr-cta-inner h2 {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 900;
    color: #000;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    line-height: 1.15;
}
.pr-cta-inner p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 32px;
}
.pr-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff200;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 16px 32px;
    border-radius: 2px;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, gap 0.2s ease;
}
.pr-cta-btn:hover { background: #1a1a1a; gap: 14px; }
.pr-cta-fine {
    font-size: 12px;
    color: #555;
    margin-top: 16px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .pr-main-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
    .pr-main-section, .pr-addons-section, .pr-sqft-section { padding-left: 20px; padding-right: 20px; }
    .pr-hero { padding: 60px 20px 60px; }
    .pr-main-grid { grid-template-columns: 1fr; }
    .pr-addons-grid { grid-template-columns: 1fr; }
    .pr-divider { padding: 0 20px; }
    .pr-sqft-table { font-size: 12px; }
    .pr-sqft-table thead th,
    .pr-sqft-table tbody td { padding: 10px 12px; }
    .pr-discounts-section { padding: 44px 20px; }
    .pr-discount-pill { min-width: 0; width: 100%; }
    .pr-cta-section { padding: 80px 20px 60px; }
}

/*********returning customer */
.book-return-wrap {
    width: 38px;
    height: 38px;
    overflow: visible;
}