:root {
    --cream: #f8f3ef;
    --cream-2: #fffaf7;
    --paper: #fffdfb;
    --rose: #9d6664;
    --rose-dark: #6d4142;
    --rose-deep: #4a2d2f;
    --rose-soft: #d8b9b2;
    --blush: #ead9d3;
    --charcoal: #2d2928;
    --muted: #746b68;
    --line: rgba(109, 65, 66, .18);
    --success: #3f725c;
    --danger: #9f3f46;
    --shadow-sm: 0 10px 28px rgba(64, 38, 38, .08);
    --shadow: 0 22px 70px rgba(64, 38, 38, .14);
    --radius: 24px;
    --radius-sm: 14px;
    --container: 1240px;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--charcoal);
    background: var(--cream-2);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.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; }
.skip-link { position: fixed; left: 18px; top: -100px; z-index: 9999; background: #fff; color: #000; padding: 12px 18px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 18px; }

h1, h2, h3, h4 { color: var(--rose-deep); font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0 0 .75em; letter-spacing: -.02em; }
h1 { font-size: clamp(3rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2.25rem, 4vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); }
p { margin: 0 0 1.35em; }
ul, ol { margin: 0 0 1.5em; }
.eyebrow { display: inline-block; margin-bottom: 15px; color: var(--rose); font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.centered { text-align: center; }
.muted, .small-note { color: var(--muted); }
.small-note { font-size: .92rem; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; font-size: .92rem; font-weight: 800; letter-spacing: .02em; transition: .22s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--rose), var(--rose-dark)); box-shadow: 0 10px 25px rgba(109, 65, 66, .22); }
.button--primary:hover { box-shadow: 0 14px 30px rgba(109, 65, 66, .3); }
.button--secondary { color: var(--rose-dark); background: rgba(255,255,255,.72); border-color: var(--line); }
.button--light { color: var(--rose-deep); background: #fff; }
.button--outline-light { color: #fff; border-color: rgba(255,255,255,.55); background: transparent; }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--rose-dark); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.announcement { background: var(--rose-deep); color: #fff; font-size: .86rem; }
.announcement__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.announcement a { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,250,247,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.header-grid { min-height: 96px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 275px; }
.brand img { width: 118px; height: 66px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { color: var(--rose-deep); font-family: var(--serif); font-size: 1.22rem; font-weight: 500; line-height: 1.1; }
.brand-copy small { color: var(--muted); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: 23px; font-size: .93rem; font-weight: 700; }
.primary-nav > a, .nav-group__toggle { position: relative; padding: 34px 0; color: #463d3b; background: transparent; border: 0; }
.primary-nav > a::after, .nav-group__toggle::after { content: ''; position: absolute; left: 0; bottom: 24px; width: 0; height: 2px; background: var(--rose); transition: width .2s ease; }
.primary-nav > a:hover::after, .nav-group__toggle:hover::after { width: 100%; }
.nav-group { position: relative; }
.nav-dropdown { position: absolute; top: calc(100% - 12px); left: -25px; width: 280px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.nav-dropdown a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--charcoal); }
.nav-dropdown a:hover { background: var(--cream); color: var(--rose-dark); }
.nav-group:hover .nav-dropdown, .nav-group.is-open .nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; flex-direction: column; line-height: 1.2; text-align: right; }
.header-phone small { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.header-phone strong { color: var(--rose-deep); font-size: .98rem; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--rose-deep); }

.flash { padding: 12px 0; font-weight: 700; }
.flash--success { color: #fff; background: var(--success); }
.flash--error { color: #fff; background: var(--danger); }

.hero { position: relative; overflow: hidden; padding: 85px 0 88px; background:
    radial-gradient(circle at 15% 10%, rgba(234,217,211,.8), transparent 38%),
    radial-gradient(circle at 90% 80%, rgba(216,185,178,.45), transparent 34%),
    linear-gradient(135deg, #fffaf7 0%, #f6ece7 100%); }
.hero::after { content: ''; position: absolute; inset: auto -100px -160px auto; width: 520px; height: 520px; border: 1px solid rgba(157,102,100,.16); border-radius: 50%; box-shadow: 0 0 0 60px rgba(157,102,100,.04), 0 0 0 120px rgba(157,102,100,.025); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 74px; align-items: center; }
.hero h1 { max-width: 800px; }
.hero-lead { max-width: 700px; color: #5f5754; font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 38px; }
.hero-trust { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.hero-trust div { padding-right: 18px; border-right: 1px solid var(--line); }
.hero-trust div:last-child { border-right: 0; }
.hero-trust strong, .hero-trust span { display: block; }
.hero-trust strong { color: var(--rose-deep); font-size: .94rem; }
.hero-trust span { color: var(--muted); font-size: .77rem; }
.hero-visual { position: relative; min-height: 610px; }
.hero-photo { position: absolute; inset: 10px 25px 38px 38px; overflow: hidden; border-radius: 230px 230px 45px 45px; border: 10px solid rgba(255,255,255,.74); box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 35%; }
.hero-card { position: absolute; z-index: 3; padding: 16px 20px; border: 1px solid rgba(255,255,255,.7); border-radius: 16px; background: rgba(255,255,255,.91); box-shadow: var(--shadow-sm); backdrop-filter: blur(16px); }
.hero-card span, .hero-card strong { display: block; }
.hero-card span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.hero-card strong { color: var(--rose-deep); font-family: var(--serif); font-size: 1.22rem; font-weight: 500; }
.hero-card--top { top: 15px; left: 0; }
.hero-card--bottom { right: 0; bottom: 12px; }
.hero-card--bottom a { color: var(--rose-dark); font-size: 1.25rem; font-weight: 900; }

.trust-strip { position: relative; z-index: 5; margin-top: -20px; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.trust-strip__grid > div { display: flex; gap: 15px; padding: 23px 28px; border-right: 1px solid var(--line); }
.trust-strip__grid > div:last-child { border-right: 0; }
.trust-icon { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: #fff; background: var(--rose); font-weight: 900; }
.trust-strip strong, .trust-strip small { display: block; }
.trust-strip strong { color: var(--rose-deep); font-size: .95rem; }
.trust-strip small { color: var(--muted); font-size: .78rem; line-height: 1.4; }

.section { padding: 105px 0; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading.centered { margin-inline: auto; }
.section-heading p { color: var(--muted); font-size: 1.06rem; }
.section-action { margin-top: 35px; }
.services-section { background: var(--cream-2); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-grid--all { grid-template-columns: repeat(3,1fr); }
.service-card { position: relative; overflow: hidden; min-height: 330px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 14px 35px rgba(64,38,38,.06); transition: .25s ease; }
.service-card::after { content: ''; position: absolute; right: -65px; bottom: -65px; width: 160px; height: 160px; border: 1px solid rgba(157,102,100,.17); border-radius: 50%; box-shadow: 0 0 0 35px rgba(157,102,100,.04); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-symbol { display: grid; width: 54px; height: 54px; margin-bottom: 28px; place-items: center; border-radius: 16px; color: #fff; background: linear-gradient(135deg, var(--rose), var(--rose-dark)); font-family: var(--serif); font-size: 1.35rem; }
.service-kicker { color: var(--rose); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-card p { color: var(--muted); }

.split-section { background: #fff; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.split-image { position: relative; }
.split-image::before { content: ''; position: absolute; inset: 30px -28px -28px 30px; border-radius: 38px; background: var(--blush); }
.split-image img { position: relative; z-index: 2; width: 100%; min-height: 570px; object-fit: cover; border-radius: 38px; box-shadow: var(--shadow); }
.split-copy p { color: var(--muted); font-size: 1.06rem; }
.feature-list { display: grid; gap: 16px; margin: 30px 0 28px; }
.feature-list div { padding: 18px 20px; border-left: 3px solid var(--rose-soft); background: var(--cream); }
.feature-list strong, .feature-list span { display: block; }
.feature-list strong { color: var(--rose-deep); }
.feature-list span { color: var(--muted); font-size: .9rem; }

.banner-section { padding: 70px 0; background: var(--cream); }
.banner-carousel { position: relative; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); background: #fff; aspect-ratio: 6 / 1; }
.banner-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .65s ease; }
.banner-slide.is-active { opacity: 1; visibility: visible; }
.banner-slide img { width: 100%; height: 100%; object-fit: cover; }
.banner-dots { position: absolute; right: 18px; bottom: 12px; z-index: 5; display: flex; gap: 8px; }
.banner-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.55); box-shadow: 0 0 0 1px rgba(80,50,50,.25); }
.banner-dots button.is-active { width: 26px; border-radius: 10px; background: #fff; }

.provider-section { background: linear-gradient(135deg, #fff 0%, var(--cream) 100%); }
.provider-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.provider-copy p { color: var(--muted); font-size: 1.02rem; }
.provider-copy h2 small { display: block; margin-top: 12px; color: var(--rose); font-family: var(--sans); font-size: .85rem; font-weight: 800; letter-spacing: .11em; }
.provider-panel { position: relative; overflow: hidden; padding: 56px; border-radius: 38px; color: #fff; background: linear-gradient(145deg, var(--rose-dark), var(--rose-deep)); box-shadow: var(--shadow); }
.provider-panel::after { content: ''; position: absolute; right: -110px; bottom: -110px; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.04), 0 0 0 100px rgba(255,255,255,.025); }
.provider-panel img { width: 270px; margin-bottom: 34px; filter: brightness(0) invert(1); opacity: .95; }
.provider-panel blockquote { position: relative; z-index: 2; margin: 0 0 20px; font-family: var(--serif); font-size: 2rem; line-height: 1.25; }
.provider-panel p { position: relative; z-index: 2; color: rgba(255,255,255,.78); }

.pricing-preview { background: var(--cream); }
.price-preview-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.price-preview-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.price-preview-card small { color: var(--rose); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.price-preview-card p { color: var(--muted); font-size: .9rem; }
.price-row { display: flex; align-items: baseline; gap: 12px; margin: 18px 0; }
.price-row strong { color: var(--rose-dark); font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.price-row span { color: var(--muted); font-size: .82rem; }

.testimonials-section { background: #fff; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testimonial-card { margin: 0; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--cream-2); }
.stars { color: #b07b66; letter-spacing: .15em; }
.testimonial-card blockquote { margin: 20px 0; color: var(--rose-deep); font-family: var(--serif); font-size: 1.45rem; line-height: 1.45; }
.testimonial-card figcaption { color: var(--muted); font-size: .85rem; font-weight: 700; }

.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; border: 0; color: var(--rose-deep); background: transparent; text-align: left; font-weight: 800; }
.accordion-item button span:last-child { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: transform .2s ease; }
.accordion-item button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.accordion-panel { display: none; padding: 0 55px 22px 0; color: var(--muted); }
.accordion-item.is-open .accordion-panel { display: block; }

.newsletter { padding: 60px 0; background: #fff; border-top: 1px solid var(--line); }
.newsletter-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: center; }
.newsletter h2 { font-size: clamp(2rem,3vw,3rem); }
.newsletter p { color: var(--muted); }
.newsletter-form { display: flex; gap: 10px; padding: 8px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream-2); }
.newsletter-form input { flex: 1; min-width: 0; padding: 10px 18px; border: 0; outline: 0; background: transparent; }

.page-hero { position: relative; overflow: hidden; padding: 105px 0; color: #fff; background: linear-gradient(135deg, var(--rose-dark), var(--rose-deep)); }
.page-hero::after { content: ''; position: absolute; inset: -50% -10% auto auto; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.02); }
.page-hero__content { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1, .page-hero .eyebrow { color: #fff; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.82); font-size: 1.15rem; }
.page-hero--pricing { background: linear-gradient(rgba(73,44,46,.84),rgba(73,44,46,.88)), url('../images/st-george-red-rock.jpg') center/cover; }
.page-hero--contact { background: linear-gradient(135deg, #8f5d5c, #4a2d2f); }
.page-hero--content { background: linear-gradient(135deg, rgba(73,44,46,.93), rgba(109,65,66,.86)), var(--page-image, url('../images/soft-texture.png')) center/cover; }

.service-hero { padding: 90px 0; background: linear-gradient(135deg, #fffaf7, #f4e8e3); }
.service-hero__grid { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; }
.service-hero__copy p { color: var(--muted); font-size: 1.15rem; }
.service-hero__visual img { width: 100%; height: 540px; object-fit: cover; border-radius: 220px 40px 40px 220px; box-shadow: var(--shadow); }
.breadcrumb { display: inline-block; margin-bottom: 24px; color: var(--muted); font-size: .85rem; }
.breadcrumb span { color: var(--rose-dark); font-weight: 800; }
.article-section { background: #fff; }
.article-grid { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 80px; align-items: start; }
.rich-content { max-width: 780px; }
.rich-content h2 { margin-top: 1.5em; }
.rich-content h3 { margin-top: 1.4em; }
.rich-content p, .rich-content li { color: #5d5552; }
.rich-content ul, .rich-content ol { padding-left: 1.25em; }
.rich-content blockquote { margin: 30px 0; padding: 25px 30px; border-left: 4px solid var(--rose); background: var(--cream); color: var(--rose-deep); font-family: var(--serif); font-size: 1.4rem; }
.service-sidebar { position: sticky; top: 130px; display: grid; gap: 18px; }
.sidebar-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--cream-2); box-shadow: var(--shadow-sm); }
.sidebar-card h2 { font-size: 1.8rem; }
.sidebar-card p { color: var(--muted); font-size: .9rem; }
.sidebar-note { padding: 22px; border-radius: 18px; color: #5f4a45; background: #f4e3dc; }
.sidebar-note p { margin-bottom: 0; font-size: .86rem; }
.sidebar-logo { width: 240px; margin-bottom: 18px; }
.service-lists { background: var(--cream); }
.two-card-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.info-card { padding: 44px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.info-card--warm { background: #f7ebe6; }
.check-list { display: grid; gap: 13px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: #5d5552; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--rose); font-weight: 900; }

.pricing-page { background: var(--cream-2); }
.payment-note { padding: 24px 28px; margin-bottom: 55px; border-left: 4px solid var(--rose); border-radius: 0 16px 16px 0; background: #fff; box-shadow: var(--shadow-sm); }
.price-category { display: grid; grid-template-columns: 300px 1fr; gap: 55px; padding: 55px 0; border-top: 1px solid var(--line); }
.price-category:first-of-type { border-top: 0; }
.price-category__heading { position: sticky; top: 130px; align-self: start; }
.price-category__heading h2 { font-size: 2.6rem; }
.price-category__heading p { color: var(--muted); }
.price-list { display: grid; gap: 16px; }
.price-item { display: grid; grid-template-columns: 1fr auto; gap: 30px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.price-item h3 { margin-bottom: 10px; font-family: var(--sans); font-size: 1.15rem; font-weight: 800; }
.price-item p { margin-bottom: 8px; color: var(--muted); font-size: .92rem; }
.price-item small { color: #8d7771; }
.price-item__meta { min-width: 105px; text-align: right; }
.price-item__meta strong, .price-item__meta span { display: block; }
.price-item__meta strong { color: var(--rose-dark); font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.price-item__meta span { color: var(--muted); font-size: .8rem; }

.contact-section { background: var(--cream-2); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 55px; align-items: start; }
.contact-details { display: grid; gap: 14px; }
.contact-card { padding: 22px 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-card small, .contact-card strong, .contact-card a { display: block; }
.contact-card small { color: var(--rose); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong, .contact-card a { color: var(--rose-deep); font-size: 1.05rem; font-weight: 800; }
.hours-panel { padding: 30px; border-radius: 24px; color: #fff; background: linear-gradient(135deg, var(--rose-dark), var(--rose-deep)); }
.hours-panel h2 { color: #fff; font-size: 2rem; }
.hours-panel p { color: rgba(255,255,255,.8); }
.contact-form { padding: 42px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.contact-form h2 { font-size: 2.7rem; }
.privacy-alert { padding: 17px 19px; margin-bottom: 24px; border-radius: 14px; color: #6d4642; background: #f6e5df; font-size: .88rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 16px; color: var(--rose-deep); font-size: .84rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; color: var(--charcoal); background: var(--cream-2); outline: 0; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(157,102,100,.1); }
.checkbox-label { display: flex !important; gap: 10px; align-items: flex-start; }
.checkbox-label input { width: auto; margin-top: 4px; }

.portal-hero { padding: 105px 0; background: linear-gradient(135deg, #fffaf7, #f3e4df); }
.portal-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 75px; align-items: center; }
.portal-grid > div:first-child p { color: var(--muted); font-size: 1.1rem; }
.portal-card { padding: 45px; border-radius: 30px; color: #fff; background: linear-gradient(145deg, var(--rose-dark), var(--rose-deep)); box-shadow: var(--shadow); }
.portal-card h2 { color: #fff; }
.portal-card .check-list li { color: rgba(255,255,255,.86); }
.portal-card .check-list li::before { color: #fff; }
.portal-lock { display: grid; width: 58px; height: 58px; margin-bottom: 28px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; }

.final-cta { padding: 70px 0; color: #fff; background: linear-gradient(135deg, var(--rose), var(--rose-deep)); }
.final-cta__grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.final-cta h2, .final-cta .eyebrow { color: #fff; }
.final-cta h2 { margin-bottom: 10px; font-size: clamp(2.2rem,4vw,3.6rem); }
.final-cta p { margin: 0; color: rgba(255,255,255,.8); }
.final-cta__actions { display: flex; gap: 12px; }
.site-footer { padding: 70px 0 26px; background: #241b1c; color: rgba(255,255,255,.76); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr .8fr; gap: 45px; }
.footer-grid h3 { color: #fff; font-family: var(--sans); font-size: .92rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid a:hover { color: #fff; }
.footer-brand img { width: 240px; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer-links { padding: 0; list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 30px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.mobile-actions { display: none; }
.not-found { min-height: 60vh; display: grid; place-items: center; padding: 100px 0; text-align: center; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
    .header-grid { grid-template-columns: auto auto 1fr; }
    .menu-toggle { display: block; order: 3; justify-self: end; }
    .primary-nav { position: fixed; left: 20px; right: 20px; top: 112px; display: none; max-height: calc(100vh - 135px); overflow: auto; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
    .primary-nav.is-open { display: block; }
    .primary-nav > a, .nav-group__toggle { display: block; width: 100%; padding: 13px 12px; text-align: left; }
    .primary-nav > a::after, .nav-group__toggle::after { display: none; }
    .nav-dropdown { position: static; display: none; width: auto; padding: 0 0 8px 15px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .nav-group.is-open .nav-dropdown { display: block; }
    .header-actions { justify-self: end; }
    .header-phone { display: none; }
    .hero-grid { gap: 40px; }
    .hero-visual { min-height: 540px; }
    .price-preview-grid { grid-template-columns: repeat(2,1fr); }
    .service-grid, .service-grid--all { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
    body { font-size: 16px; padding-bottom: 58px; }
    .announcement__inner { justify-content: center; text-align: center; }
    .announcement__inner a { display: none; }
    .header-grid { min-height: 80px; grid-template-columns: 1fr auto; gap: 12px; }
    .brand { min-width: 0; }
    .brand img { width: 96px; height: 52px; }
    .brand-copy strong { font-size: 1rem; }
    .brand-copy small { display: none; }
    .menu-toggle { order: initial; }
    .header-actions { display: none; }
    .primary-nav { top: 93px; }
    .hero { padding: 58px 0 70px; }
    .hero-grid, .split-grid, .provider-grid, .newsletter-grid, .faq-grid, .service-hero__grid, .article-grid, .portal-grid, .contact-grid, .final-cta__grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 460px; }
    .hero-photo { inset: 10px 30px 35px; border-radius: 180px 180px 35px 35px; }
    .hero-trust { grid-template-columns: 1fr; gap: 9px; }
    .hero-trust div { padding: 8px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .hero-trust div:last-child { border-bottom: 0; }
    .trust-strip { margin-top: 0; }
    .trust-strip__grid { grid-template-columns: 1fr; }
    .trust-strip__grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-strip__grid > div:last-child { border-bottom: 0; }
    .section { padding: 75px 0; }
    .service-grid, .service-grid--all, .testimonial-grid, .two-card-grid { grid-template-columns: 1fr; }
    .split-image img { min-height: 430px; }
    .provider-grid { gap: 35px; }
    .provider-panel { padding: 38px; }
    .price-category { grid-template-columns: 1fr; gap: 20px; }
    .price-category__heading, .service-sidebar { position: static; }
    .service-hero__visual img { height: 400px; border-radius: 150px 30px 30px 150px; }
    .article-grid { gap: 35px; }
    .contact-grid { gap: 28px; }
    .final-cta__actions { flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; }
    .mobile-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: 2000; display: grid; grid-template-columns: repeat(3,1fr); min-height: 58px; border-top: 1px solid var(--line); background: #fff; box-shadow: 0 -8px 24px rgba(65,38,38,.1); }
    .mobile-actions a { display: grid; place-items: center; border-right: 1px solid var(--line); color: var(--rose-dark); font-weight: 900; }
    .mobile-actions a:last-child { border-right: 0; color: #fff; background: var(--rose-dark); }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
    h2 { font-size: clamp(2rem, 10vw, 3.1rem); }
    .brand-copy { display: none; }
    .hero-actions, .final-cta__actions { display: grid; }
    .hero-actions .button, .final-cta__actions .button { width: 100%; }
    .hero-visual { min-height: 395px; }
    .hero-photo { inset: 5px 8px 28px; }
    .hero-card--top { left: 8px; }
    .hero-card--bottom { right: 8px; }
    .hero-card { padding: 12px 15px; }
    .hero-card--bottom a { font-size: 1rem; }
    .service-card { min-height: 0; padding: 28px; }
    .banner-carousel { border-radius: 14px; }
    .price-preview-grid { grid-template-columns: 1fr; }
    .provider-panel { padding: 30px; }
    .provider-panel blockquote { font-size: 1.6rem; }
    .newsletter-form { display: grid; border-radius: 18px; }
    .form-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 27px; }
    .price-item { grid-template-columns: 1fr; }
    .price-item__meta { text-align: left; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Complete editable administration integration */
.button--admin { min-height: 42px; padding-inline: 14px; border-color: rgba(109,65,66,.28); color: var(--rose-dark); background: #fff; white-space: nowrap; }
.button--admin:hover { border-color: var(--rose); background: #fbf3f0; }
.article-grid--single { grid-template-columns: minmax(0,1fr); }
.article-grid--single .rich-content { max-width: 920px; margin-inline: auto; }
.source-contact { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 36px; border-top: 1px solid var(--line); }
.source-contact p { margin: 0; font-weight: 800; }
@media (max-width: 1180px) { .button--admin { display: none; } }
@media (max-width: 620px) { .source-contact { align-items: stretch; flex-direction: column; } }

/* Header fit for the public administration button */
@media (min-width: 1121px) {
    .header-grid { gap: 18px; }
    .brand { min-width: 218px; }
    .primary-nav { gap: 15px; font-size: .88rem; }
    .header-actions { gap: 8px; }
    .header-actions .button { min-height: 44px; padding: 10px 14px; font-size: .8rem; }
}
@media (min-width: 1121px) and (max-width: 1280px) { .header-phone { display: none; } }
