/* Offerings page styles */
:root {
--ec-blue: #192536;
--ec-gray: #97a0a3;
--ec-ivory: #fef9f3;
}

body {
font-family: 'Manrope', sans-serif;
background-color: #0f1621;
color: var(--ec-ivory);
}

.offerings-backdrop {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
z-index: -10;
pointer-events: none;
opacity: 0.58;
background-image: linear-gradient(180deg, rgba(15, 22, 33, 0.16) 0%, rgba(15, 22, 33, 0.42) 100%), url("../img/pages/offerings/u5318486574_minimal_kintsugi-inspired_abstract_background_dee_efc4b602-37c0-45a7-8a98-fab59ef1ff45_0.png");
background-size: cover;
background-position: center;
mask-image: linear-gradient(to bottom, transparent, black 0%, black 80%, transparent);
-webkit-mask-image: linear-gradient(to bottom, transparent, black 0%, black 80%, transparent);
}

.ambient-glow {
position: absolute;
width: 100%;
height: 100vh;
background: radial-gradient(circle at 50% 0%, rgba(151, 160, 163, 0.08) 0%, rgba(15, 22, 33, 0.8) 75%);
top: 0;
pointer-events: none;
z-index: 0;
will-change: transform, opacity;
}

.grid-pattern {
background-size: 60px 60px;
background-image: linear-gradient(to right, rgba(151, 160, 163, 0.04) 1px, transparent 1px),
linear-gradient(to bottom, rgba(151, 160, 163, 0.04) 1px, transparent 1px);
mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
will-change: transform, opacity;
}

.offerings-hero {
background: linear-gradient(to bottom, rgba(25, 37, 54, 0.16) 0%, rgba(15, 22, 33, 0.34) 100%);
}

.offerings-closing {
background: linear-gradient(to bottom, rgba(20, 30, 44, 0.28) 0%, rgba(17, 26, 38, 0.45) 100%);
}

.offering-band {
width: 100%;
border-top: 1px solid rgba(254, 249, 243, 0.08);
}

.offering-band-a {
background: rgba(25, 37, 54, 0.35);
}

.offering-band-b {
background: rgba(15, 22, 33, 0.82);
}

.offering-band-inner {
max-width: 86rem;
margin: 0 auto;
padding: 4.4rem 2.4rem;
}

.offering-tag {
display: inline-flex;
align-items: center;
gap: 0.55rem;
margin-bottom: 0.95rem;
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: rgba(151, 160, 163, 0.9);
}

.offering-tag::before {
content: "";
width: 1.35rem;
height: 1px;
background: rgba(151, 160, 163, 0.7);
}

.offering-band h2 {
margin-bottom: 1.35rem;
}

.offering-description {
font-size: 1.02rem;
line-height: 1.72;
font-weight: 400;
color: #cbd5e1;
max-width: 58rem;
margin-bottom: 1.15rem;
}

.offering-list-wrap {
border-top: 1px solid rgba(254, 249, 243, 0.08);
padding-top: 1.1rem;
}

.offering-list-title {
color: #dbe3ee;
font-size: 0.76rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 0.95rem;
}

.offering-list {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.68rem 1.2rem;
}

.offering-list li {
position: relative;
padding-left: 1.05rem;
color: #aab3b7;
font-size: 0.94rem;
font-weight: 500;
line-height: 1.4;
}

.offering-list li::before {
content: "";
position: absolute;
left: 0;
top: 0.48rem;
width: 0.36rem;
height: 0.36rem;
border-radius: 999px;
background: rgba(254, 249, 243, 0.66);
}

.offerings-cta-link {
display: inline-block;
font-size: 1.05rem;
font-weight: 600;
color: #fef9f3;
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 0.32rem;
transition: color 0.2s ease, text-decoration-thickness 0.2s ease;
}

.offerings-cta-link:hover {
color: #ffffff;
text-decoration-thickness: 2px;
}

@media (max-width: 767px) {
.offerings-hero {
padding-top: 8.5rem;
padding-bottom: 4.8rem;
}

.offerings-hero h1 {
font-size: 2.35rem;
line-height: 1.13;
}

.offerings-hero p {
font-size: 1rem;
}

.offering-band-inner {
padding: 2.8rem 1.35rem;
}

.offering-band h2 {
font-size: 1.45rem;
line-height: 1.2;
margin-bottom: 1.05rem;
}

.offering-description {
font-size: 0.95rem;
line-height: 1.56;
margin-bottom: 0.95rem;
}

.offering-list {
grid-template-columns: 1fr;
}

.offerings-cta-link {
font-size: 1rem;
}
}

/* reveal animation */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
will-change: transform, opacity;
}

.reveal.active {
opacity: 1;
transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
