:root {
    --ink: #ede7dd;
    --ink-soft: #d4cbbf;
    --muted: #8f98a3;
    --paper: #0f1114;
    --paper-2: #181b21;
    --cream: #f5f0e8;
    --line: rgba(237, 231, 221, 0.10);
    --copper: #c9a96e;
    --copper-deep: #a88b4a;
    --forest: #0a0c0f;
    --forest-soft: #14161b;
    --whatsapp: #1f8f4e;
    --shadow: 0 20px 56px rgba(0, 0, 0, 0.32);
    --radius: 18px;
    --max: 1120px;
    --sans: "Instrument Sans", system-ui, sans-serif;
    --serif: "Instrument Serif", Georgia, serif;
    --script: "Caveat", "Instrument Serif", cursive;
    --accordion-ms: 420ms;
    --accordion-ease: ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
}

img,
iframe {
    max-width: 100%;
    border: 0;
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -48px;
    z-index: 100;
    padding: 8px 12px;
    background: var(--copper);
    color: #fff;
    border-radius: 8px;
}

.skip-link:focus {
    top: 12px;
}

.container {
    width: min(var(--max), calc(100% - 32px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(15, 17, 20, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--copper);
    color: var(--forest);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--muted);
}

.site-header .brand-tagline {
    color: rgba(237, 231, 221, 0.48);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 22px;
    margin-inline: auto;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    padding: 16px;
    background: rgba(10, 12, 15, 0.96);
    border-bottom: 1px solid var(--line);
}

.site-nav.is-open {
    display: block;
}

.site-nav ul {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: grid;
    gap: 4px;
}

.site-nav a {
    display: block;
    padding: 10px 8px;
    text-decoration: none;
    color: var(--ink-soft);
    font-weight: 550;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
    color: var(--copper);
}

.site-nav .nav-login {
    color: var(--muted);
    font-weight: 550;
}

.site-nav .nav-login:hover {
    color: var(--copper-deep);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background: var(--copper);
    color: #fff;
}

.btn-primary:hover {
    background: var(--copper-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.28);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.65);
}

.btn-block {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 86vh;
    display: grid;
    align-items: end;
    color: #fff;
    overflow: hidden;
}

/* === Hero slideshow (do not merge with service-card / FAQ styles) === */
.hero-slideshow,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.15s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    z-index: 2;
    background:
        radial-gradient(ellipse 70% 55% at 50% 42%, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.18) 55%, transparent 75%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.55) 85%);
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 28px;
    align-items: center;
    justify-items: center;
    text-align: center;
    padding: 100px 0 72px;
}

.hero-copy {
    max-width: 42rem;
    justify-self: center;
    text-align: center;
}

.hero-text {
    transition: opacity 0.28s ease;
}

.hero-text.is-fading {
    opacity: 0;
}

.hero-controls {
    display: flex;
    gap: 10px;
    justify-self: center;
    justify-content: center;
}

.hero-nav {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 253, 248, 0.55);
    border-radius: 999px;
    background: rgba(247, 242, 234, 0.16);
    color: var(--cream);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-nav:hover,
.hero-nav:focus-visible {
    background: rgba(247, 242, 234, 0.28);
    border-color: var(--copper);
    outline: none;
    transform: translateY(-2px);
}

.hero-nav:active {
    transform: translateY(0) scale(0.96);
}

.hero-nav:focus-visible {
    box-shadow: 0 0 0 3px rgba(196, 92, 38, 0.45);
}

.hero-nav span {
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    display: block;
}

.hero-nav-prev span {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.hero-nav-next span {
    transform: rotate(45deg);
    margin-right: 3px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--copper);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero h1,
.section-head h2,
.about-copy h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.12;
}

.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.3rem, 7vw, 4.4rem);
}

.lede,
.section-head p {
    color: inherit;
}

.lede {
    margin: 0 0 28px;
    font-size: 1.08rem;
    color: rgba(237, 231, 221, 0.78);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
    justify-content: center;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
    justify-content: center;
}

.section {
    padding: 72px 0;
}

.section-muted {
    background: var(--paper-2);
    border-block: 1px solid var(--line);
}

.section-head {
    max-width: 38rem;
    margin-bottom: 48px;
}

.section-head h2 {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.section-head p,
.why-card p,
.service-body p,
.info-block p,
.about-copy p {
    color: var(--muted);
}

.service-grid,
.why-grid {
    display: grid;
    gap: 18px;
}

.why-grid {
    gap: 22px;
}

.service-card,
.why-card,
.review-card,
.quote-form,
.stat-panel,
.discount-banner {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--cream);
    color: #1c1917;
    border-color: rgba(201, 169, 110, 0.12);
    transition: transform 420ms ease, box-shadow 420ms ease;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.service-body h3,
.info-block h3 {
    margin: 8px 0 8px;
    font-size: 1.15rem;
}

.service-body h3 {
    margin: 8px 0 0;
}

.service-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    font-weight: 650;
    text-align: left;
    cursor: pointer;
}

.service-toggle:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 4px;
    border-radius: 6px;
}

.service-toggle-icon {
    flex-shrink: 0;
    color: var(--copper);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
}

.service-toggle-icon::after {
    content: "+";
}

.service-toggle[aria-expanded="true"] .service-toggle-icon::after {
    content: "−";
}

.service-details {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows var(--accordion-ms) var(--accordion-ease),
        opacity var(--accordion-ms) var(--accordion-ease);
}

.service-details.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
}

.accordion-panel-inner,
.faq-answer-inner {
    min-height: 0;
    overflow: hidden;
}

.badge {
    align-self: flex-start;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(201, 169, 110, 0.10);
    color: var(--copper-deep);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-price {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(28, 25, 23, 0.08);
}

.service-price span {
    display: block;
    font-size: 0.7rem;
    color: #6b645c;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.service-price strong {
    color: var(--copper-deep);
    font-size: 1.08rem;
}

.discount-banner {
    display: grid;
    gap: 16px;
    margin-top: 32px;
    padding: 28px;
    background: var(--cream);
    color: #1c1917;
    border-color: rgba(201, 169, 110, 0.18);
}

.discount-banner h3 {
    margin: 0 0 8px;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
}

.stat-panel {
    padding: 24px;
}

/* Why-us commitment cards */
.why-head {
    max-width: 40rem;
    margin-inline: auto;
    margin-bottom: 44px;
    text-align: center;
}

.why-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--copper);
}

.why-eyebrow::before,
.why-eyebrow::after {
    content: "";
    display: block;
    width: min(72px, 18vw);
    height: 1px;
    background: rgba(201, 169, 110, 0.30);
}

.why-eyebrow span {
    flex-shrink: 0;
}

.why-card {
    --why-accent: var(--copper);
    --why-icon-bg: rgba(201, 169, 110, 0.12);
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px 22px 18px;
    background: var(--cream);
    color: #1c1917;
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    transition:
        transform 360ms ease,
        box-shadow 360ms ease,
        opacity 560ms var(--accordion-ease);
}

.why-card--blue {
    --why-accent: var(--copper);
    --why-icon-bg: rgba(201, 169, 110, 0.12);
}

.why-card--green {
    --why-accent: #d4a84e;
    --why-icon-bg: rgba(201, 169, 110, 0.10);
}

.why-card--purple {
    --why-accent: #b89656;
    --why-icon-bg: rgba(201, 169, 110, 0.08);
}

.why-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.why-card-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--why-icon-bg);
    color: #1c1917;
}

.why-card-icon svg {
    width: 24px;
    height: 24px;
}

.why-card-heading {
    min-width: 0;
    padding-top: 2px;
}

.why-card h3 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.25;
    color: #1c1917;
}

.why-card-accent {
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--why-accent);
}

.why-card > p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #6b645c;
}

.why-card-visual {
    margin-top: auto;
    border-radius: 14px;
    overflow: hidden;
    background: var(--paper);
}

.why-card-visual img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 520ms ease;
}

.about {
    display: grid;
    gap: 22px;
    margin-top: 40px;
}

.stat-panel {
    background: linear-gradient(145deg, #14171c, #0a0c0f);
    color: var(--ink);
    text-align: center;
    display: grid;
    place-content: center;
    min-height: 220px;
    border: 1px solid rgba(201, 169, 110, 0.15);
}

.stat-number {
    font-family: var(--serif);
    font-size: clamp(3.4rem, 8vw, 5rem);
    line-height: 1;
}

.stat-label {
    margin-top: 8px;
    letter-spacing: 0.04em;
}

.check-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.check-list li {
    padding-left: 22px;
    position: relative;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--copper);
}

.reviews {
    padding-bottom: 40px;
}

.marquee-wrap {
    overflow: hidden;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 42s linear infinite;
}

.marquee-group {
    display: flex;
    gap: 16px;
    padding-right: 16px;
}

.review-card {
    width: min(320px, 78vw);
    padding: 20px;
    color: #1c1917;
    border-color: rgba(201, 169, 110, 0.12);
}

.review-card p {
    margin: 0 0 16px;
}

.review-card footer {
    color: #6b645c;
    font-size: 0.9rem;
}

.coverage {
    display: grid;
    gap: 22px;
}

.info-block + .info-block {
    margin-top: 22px;
}

.info-block h3 {
    margin: 0 0 6px;
}

.map-wrap {
    overflow: hidden;
    border-radius: var(--radius);
    min-height: 280px;
    border: 1px solid var(--line);
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 320px;
}

.contact {
    position: relative;
    color: var(--ink);
    background-color: var(--paper);
    background-image:
        radial-gradient(ellipse 60% 45% at 50% 0%, rgba(201, 169, 110, 0.07), transparent 55%),
        linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 50%, var(--forest) 100%);
    border-block: 1px solid var(--line);
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--copper), rgba(201, 169, 110, 0.35), var(--copper));
    opacity: 0.85;
}

.contact-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
}

.contact-layout {
    display: grid;
    gap: 18px;
    align-items: stretch;
}

.contact-visual {
    min-width: 0;
    order: -1;
}

.contact-visual-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    height: 100%;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: var(--forest);
    color: #fff;
}

.contact-visual-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.contact-visual-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 24, 22, 0.28) 0%, transparent 34%),
        linear-gradient(90deg, rgba(20, 24, 22, 0.42) 0%, transparent 55%),
        linear-gradient(0deg, rgba(16, 18, 17, 0.82) 0%, rgba(16, 18, 17, 0.22) 38%, transparent 58%);
    pointer-events: none;
}

.contact-visual-brand,
.contact-visual-help,
.contact-trust {
    position: relative;
    z-index: 1;
}

.contact-visual-brand {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 22px 20px 0;
}

.contact-brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--copper);
    background: rgba(255, 253, 248, 0.94);
    border-radius: 10px;
}

.contact-brand-copy {
    display: grid;
    gap: 2px;
    padding-top: 2px;
}

.contact-brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.contact-brand-tagline {
    font-size: 0.82rem;
    line-height: 1.3;
    color: rgba(255, 253, 248, 0.9);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.contact-visual-help {
    margin: auto 0 0;
    padding: 0 22px 18px;
    max-width: 12ch;
    font-family: var(--script);
    font-size: clamp(2.35rem, 5vw, 3.05rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.contact-visual-help::after {
    content: "";
    display: block;
    width: 4.6em;
    height: 0.22em;
    margin-top: 0.12em;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--copper) 0%, rgba(201, 169, 110, 0.60) 70%, transparent 100%);
    transform: rotate(-2deg);
}

.contact-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 14px 12px 16px;
    list-style: none;
    background: rgba(14, 16, 15, 0.55);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-trust li {
    display: grid;
    justify-items: center;
    gap: 6px;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.25;
    color: rgba(255, 253, 248, 0.94);
}

.contact-trust-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #fff;
}

.feedback-block {
    scroll-margin-top: 88px;
    padding: 26px 24px 24px;
    background: var(--cream);
    color: #1c1917;
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.feedback-head {
    margin: 0 0 16px;
    max-width: 40rem;
}

.feedback-head h2 {
    margin: 0 0 6px;
    font-family: var(--serif);
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 400;
    line-height: 1.2;
}

.feedback-head p {
    margin: 0;
    color: #6b645c;
}

.feedback-form.quote-form {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.contact-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-strip li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 8px;
    padding: 8px 12px;
    background: rgba(245, 240, 232, 0.08);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.88rem;
    line-height: 1.35;
}

.contact-strip-label {
    color: var(--forest-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-strip a {
    color: var(--copper-deep);
    font-weight: 600;
    text-decoration: none;
}

.contact-strip a:hover,
.contact-strip a:focus-visible {
    text-decoration: underline;
    outline: none;
}

.contact-strip-sep {
    color: var(--muted);
    font-weight: 400;
}

.contact-form {
    width: 100%;
    min-width: 0;
    padding: 28px 24px 24px;
    color: #1c1917;
    background: var(--cream);
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.contact-form-head {
    margin: 0 0 16px;
}

.contact-form-rule {
    display: block;
    width: 42px;
    height: 4px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: var(--copper);
}

.contact-form-head h2 {
    margin: 0 0 8px;
    font-size: clamp(1.28rem, 2.6vw, 1.55rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--forest);
}

.contact-form-head p {
    margin: 0;
    color: #6b645c;
    font-size: 0.95rem;
    line-height: 1.45;
}

.contact-form-head strong {
    color: #1c1917;
    font-weight: 700;
}

.btn-wa-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
    min-height: 54px;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 700;
}

.btn-wa-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.btn-wa-label {
    flex: 1;
    text-align: center;
}

.btn-wa-arrow {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    opacity: 0.95;
}

.info-block a,
.site-footer a {
    color: inherit;
}

.quote-form {
    padding: 22px;
    color: var(--ink);
}

.field,
.field-row {
    display: grid;
    gap: 8px;
}

.field + .field,
.field-row + .field,
.field + .field-row,
.field-row + .field-row {
    margin-top: 12px;
}

.field label {
    font-size: 0.86rem;
    font-weight: 650;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.field textarea {
    min-height: 96px;
    resize: vertical;
}

.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;
}

/* Google Material outlined floating labels */
.field.floating {
    --float-ease: cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    gap: 0;
}

.field.floating > input,
.field.floating > textarea,
.field.floating > select,
.field.floating > .custom-select-trigger {
    width: 100%;
    min-height: 54px;
    padding: 16px 14px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    outline: none;
    transition:
        border-color 200ms var(--float-ease),
        box-shadow 200ms var(--float-ease);
}

.field.floating > textarea {
    min-height: 120px;
    padding-top: 18px;
    resize: vertical;
}

.field.floating > .float-label {
    position: absolute;
    left: 11px;
    top: 50%;
    z-index: 2;
    margin: 0;
    padding: 0 5px;
    max-width: calc(100% - 36px);
    overflow: hidden;
    color: var(--muted);
    background: transparent;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-overflow: ellipsis;
    pointer-events: none;
    transform: translateY(-50%) scale(1);
    transform-origin: left center;
    transition:
        top 200ms var(--float-ease),
        transform 200ms var(--float-ease),
        color 200ms var(--float-ease),
        background-color 160ms ease,
        font-weight 200ms var(--float-ease);
}

.field.floating > textarea + .float-label {
    top: 20px;
    transform: translateY(0) scale(1);
}

/* Floated: label sits on the top border with a white notch */
.field.floating > input:not(:placeholder-shown) + .float-label,
.field.floating > textarea:not(:placeholder-shown) + .float-label,
.field.floating.has-value > .float-label,
.field.floating:focus-within > .float-label,
.field.floating.is-open > .float-label {
    top: 0;
    transform: translateY(-50%) scale(0.78);
    background: var(--cream);
    color: var(--muted);
    font-weight: 500;
}

.field.floating.has-value:focus-within > .float-label,
.field.floating:focus-within > .float-label,
.field.floating.is-open > .float-label {
    color: var(--copper);
}

.field.floating > input,
.field.floating > textarea,
.field.floating > select,
.field.floating > .custom-select-trigger {
    border: 2px solid var(--line);
}

.field.floating:focus-within > input,
.field.floating:focus-within > textarea,
.field.floating:focus-within > select,
.field.floating:focus-within > .custom-select-trigger,
.field.floating.is-open > .custom-select-trigger {
    border-color: var(--copper);
    box-shadow: 0 0 0 1px rgba(196, 92, 38, 0.16);
}

.field.with-icon > .field-leading-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    color: var(--muted);
    transform: translateY(-50%);
    pointer-events: none;
}

.field.with-icon-top > .field-leading-icon {
    top: 18px;
    transform: none;
}

.field.with-icon > input,
.field.with-icon > textarea,
.field.with-icon > select,
.field.with-icon > .custom-select-trigger {
    padding-left: 44px;
}

.field.with-icon > .float-label {
    left: 42px;
}

.field.with-icon > input:not(:placeholder-shown) + .float-label,
.field.with-icon > textarea:not(:placeholder-shown) + .float-label,
.field.with-icon.has-value > .float-label,
.field.with-icon:focus-within > .float-label,
.field.with-icon.is-open > .float-label {
    left: 12px;
}

.field.with-icon > .custom-select-trigger .custom-select-value {
    padding-right: 30px;
}

.custom-select {
    z-index: 2;
}

.custom-select.is-open {
    z-index: 12;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
    cursor: pointer;
    appearance: none;
}

.custom-select-trigger::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--copper);
    border-bottom: 2px solid var(--copper);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 200ms var(--float-ease, cubic-bezier(0.4, 0, 0.2, 1));
    pointer-events: none;
}

.custom-select.is-open .custom-select-trigger::after {
    transform: translateY(-20%) rotate(225deg);
}

.custom-select-value {
    display: block;
    width: 100%;
    padding-right: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-list {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 20;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: var(--cream);
    border: 1.5px solid rgba(201, 169, 110, 0.18);
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-height: 240px;
    overflow: auto;
}

.custom-select-list[hidden] {
    display: none;
}

.custom-select-option {
    display: block;
    width: 100%;
    padding: 11px 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #1c1917;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.custom-select-option:hover,
.custom-select-option.is-active,
.custom-select-option:focus-visible {
    background: rgba(201, 169, 110, 0.10);
    color: var(--copper-deep);
    outline: none;
}

.custom-select-option[aria-selected="true"] {
    font-weight: 650;
    color: var(--copper-deep);
}

@media (prefers-reduced-motion: reduce) {
    .field.floating > .float-label,
    .field.floating > input,
    .field.floating > textarea,
    .field.floating > .custom-select-trigger,
    .custom-select-trigger::after {
        transition: none;
    }
}

.faq-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 42% 36% at 8% 12%, rgba(201, 169, 110, 0.08), transparent 70%),
        var(--paper);
}

.faq-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.faq-decor-blob {
    left: -8%;
    bottom: -18%;
    width: min(52vw, 420px);
    height: min(42vw, 320px);
    border-radius: 58% 42% 48% 52% / 48% 55% 45% 52%;
    background: linear-gradient(145deg, rgba(201, 169, 110, 0.18), rgba(168, 139, 74, 0.06));
    filter: blur(2px);
    opacity: 0.85;
}

.faq-decor-leaf {
    top: 18px;
    right: max(12px, 4vw);
    width: min(18vw, 110px);
    opacity: 0.88;
}

.faq-decor-leaf svg {
    display: block;
    width: 100%;
    height: auto;
}

.faq-wrap {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.faq-head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px 32px;
    margin-bottom: 36px;
}

.faq-head {
    max-width: 36rem;
}

.faq-head h2 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 12px;
    font-family: var(--sans);
    font-size: clamp(1.85rem, 4.2vw, 2.55rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--ink);
}

.faq-spark {
    display: inline-flex;
    flex-shrink: 0;
    margin-top: 0.28em;
    color: var(--copper);
}

.faq-accent {
    color: var(--copper);
}

.faq-head p {
    margin: 0;
    max-width: 34ch;
    color: var(--muted);
    font-size: 0.98rem;
}

.faq-help {
    margin: 4px 8px 0 0;
    flex-shrink: 0;
    font-family: var(--script);
    font-size: clamp(1.55rem, 3vw, 1.95rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    transform: rotate(-4deg);
}

.faq-help::after {
    content: "";
    display: block;
    width: 4.8em;
    height: 0.18em;
    margin: 0.08em auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--copper) 0%, rgba(201, 169, 110, 0.50) 75%, transparent 100%);
    transform: rotate(-3deg);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    background: var(--cream);
    color: #1c1917;
    border: none;
    border-radius: 999px;
    padding: 0;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    transition: border-radius 180ms ease;
}

.faq-list details[open],
.faq-list details.is-collapsing {
    border-radius: 28px;
}

.faq-list summary {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    list-style: none;
    padding: 14px 14px 14px 16px;
    font-weight: 700;
    color: #1c1917;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.15);
    color: var(--copper-deep);
}

.faq-q {
    flex: 1;
    min-width: 0;
    padding-right: 4px;
    font-size: clamp(0.92rem, 2.4vw, 1.02rem);
    line-height: 1.35;
}

.faq-toggle {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--copper);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
}

.faq-toggle::before {
    content: "+";
}

.faq-list details[open] > summary .faq-toggle::before {
    content: "−";
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows var(--accordion-ms) var(--accordion-ease),
        opacity var(--accordion-ms) var(--accordion-ease);
}

.faq-list details[open] .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-list details.is-collapsing .faq-answer {
    grid-template-rows: 0fr;
    opacity: 0;
}

.faq-list details p {
    margin: 0;
    padding: 0 52px 18px 70px;
    color: #6b645c;
    font-size: 0.95rem;
    line-height: 1.55;
}

@media (max-width: 640px) {
    .faq-head-row {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 28px;
    }

    .faq-help {
        align-self: flex-end;
        margin: 0 4px 4px 0;
        font-size: 1.45rem;
    }

    .faq-decor-leaf {
        width: 72px;
        top: 8px;
        right: 4px;
        opacity: 0.7;
    }

    .faq-decor-blob {
        width: 260px;
        height: 200px;
        left: -18%;
        bottom: -22%;
    }

    .faq-list details,
    .faq-list details[open],
    .faq-list details.is-collapsing {
        border-radius: 22px;
    }

    .faq-list summary {
        gap: 12px;
        padding: 12px 12px 12px 12px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
    }

    .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 1.15rem;
    }

    .faq-list details p {
        padding: 0 18px 16px 60px;
    }
}

.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(31, 143, 78, 0.28);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 28px rgba(31, 143, 78, 0.36);
}

.whatsapp-icon {
    display: block;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.site-footer {
    background: var(--forest);
    color: #efe7db;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    gap: 22px;
}

.site-footer h3 {
    margin: 0 0 8px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--copper);
}

.site-footer p {
    margin: 0 0 6px;
}

.copyright {
    width: min(var(--max), calc(100% - 32px));
    margin: 28px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #c9bfb3;
    font-size: 0.88rem;
}

@media (min-width: 720px) {
    .service-grid,
    .field-row,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .discount-banner {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .about {
        grid-template-columns: 0.7fr 1.3fr;
        align-items: center;
    }
}

@media (min-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (min-width: 960px) {
    .nav-toggle {
        display: none;
    }

    .site-nav {
        display: flex;
        position: static;
        align-items: center;
        gap: 18px;
        padding: 0;
        background: transparent;
        border: 0;
    }

    .site-nav ul {
        display: flex;
        gap: 8px;
        margin: 0;
    }

    .site-nav a {
        padding: 8px 10px;
    }

    .site-nav .nav-login {
        margin-inline-start: 4px;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .coverage {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .contact-inner {
        gap: 24px;
    }

    .contact-layout {
        grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.12fr);
        gap: 22px;
        align-items: stretch;
    }

    .contact-visual {
        order: 0;
    }

    .contact-visual-card {
        min-height: 100%;
    }

    .contact-form.quote-form {
        padding: 28px 26px 24px;
    }

    .feedback-block {
        padding: 26px 26px 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .marquee,
    .whatsapp-float {
        animation: none !important;
    }

    .nav-toggle span {
        transition: none;
    }

    /* Hero slideshow: instant swaps under reduced motion (buttons still work) */
    .hero-slide,
    .hero-text,
    .hero-nav {
        transition: none;
    }

    .faq-answer,
    .service-details,
    .service-card,
    .why-card,
    .why-card-visual img,
    .reveal,
    .whatsapp-float {
        transition: none;
        animation: none !important;
    }

    .service-card,
    .service-card:hover,
    .why-card,
    .why-card:hover,
    .why-card:hover .why-card-visual img,
    .contact-visual:hover .contact-visual-photo,
    .whatsapp-float:hover,
    .whatsapp-float:focus-visible,
    .hero-nav:hover,
    .hero-nav:focus-visible,
    .hero-nav:active {
        transform: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes hero-soft-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wa-soft-pulse {
    0%,
    100% {
        box-shadow: 0 10px 24px rgba(31, 143, 78, 0.28);
    }

    50% {
        box-shadow: 0 12px 30px rgba(31, 143, 78, 0.42);
    }
}

/* Shared scroll-reveal: fade + slight rise (gated by .has-motion from motion.js) */
@media (prefers-reduced-motion: no-preference) {
    .has-motion .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition:
            opacity 560ms var(--accordion-ease),
            transform 560ms var(--accordion-ease),
            box-shadow 360ms ease;
        transition-delay: var(--reveal-delay, 0ms);
    }

    .has-motion .reveal.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    .has-motion .section-head.reveal.in-view,
    .has-motion .why-head.reveal.in-view {
        transition-duration: 640ms;
    }

    .has-motion .service-card.reveal.in-view:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 56px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(201, 169, 110, 0.10);
        transition-delay: 0ms;
    }

    .has-motion .why-card.reveal.in-view:hover {
        transform: translateY(-8px);
        box-shadow: 0 22px 48px rgba(28, 25, 23, 0.12);
        transition-delay: 0ms;
    }

    .has-motion .why-card.reveal.in-view:hover .why-card-visual img {
        transform: scale(1.04);
    }

    .why-grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
    .why-grid .reveal:nth-child(2) { --reveal-delay: 100ms; }
    .why-grid .reveal:nth-child(3) { --reveal-delay: 200ms; }

    .service-grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
    .service-grid .reveal:nth-child(2) { --reveal-delay: 70ms; }
    .service-grid .reveal:nth-child(3) { --reveal-delay: 140ms; }
    .service-grid .reveal:nth-child(4) { --reveal-delay: 210ms; }
    .service-grid .reveal:nth-child(5) { --reveal-delay: 280ms; }
    .service-grid .reveal:nth-child(6) { --reveal-delay: 350ms; }

    .faq-list .reveal:nth-child(1) { --reveal-delay: 0ms; }
    .faq-list .reveal:nth-child(2) { --reveal-delay: 45ms; }
    .faq-list .reveal:nth-child(3) { --reveal-delay: 90ms; }
    .faq-list .reveal:nth-child(4) { --reveal-delay: 135ms; }
    .faq-list .reveal:nth-child(5) { --reveal-delay: 180ms; }
    .faq-list .reveal:nth-child(6) { --reveal-delay: 225ms; }
    .faq-list .reveal:nth-child(7) { --reveal-delay: 270ms; }
    .faq-list .reveal:nth-child(8) { --reveal-delay: 315ms; }

    .coverage-info .reveal:nth-child(1) { --reveal-delay: 0ms; }
    .coverage-info .reveal:nth-child(2) { --reveal-delay: 80ms; }
    .coverage-info .reveal:nth-child(3) { --reveal-delay: 160ms; }

    .contact-strip .reveal:nth-child(1) { --reveal-delay: 0ms; }
    .contact-strip .reveal:nth-child(2) { --reveal-delay: 70ms; }
    .contact-strip .reveal:nth-child(3) { --reveal-delay: 140ms; }

    .hero-actions,
    .hero-meta,
    .hero-controls {
        animation: hero-soft-in 700ms var(--accordion-ease) both;
    }

    .hero-meta {
        animation-delay: 120ms;
    }

    .hero-controls {
        animation-delay: 220ms;
    }

    .whatsapp-float {
        animation: wa-soft-pulse 2.8s ease-in-out infinite;
    }

    .contact-visual-photo {
        transition: transform 700ms var(--accordion-ease);
    }

    .contact-visual:hover .contact-visual-photo {
        transform: scale(1.03);
    }

    .has-motion .marquee-wrap.reveal {
        transform: translateY(12px);
    }

    .has-motion .stat-panel.reveal.in-view {
        transition-duration: 700ms;
    }
}

.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin: 10px 0 0;
    min-height: 1.25em;
    color: var(--copper);
    font-size: 0.92rem;
    font-weight: 600;
}

.feedback-form select {
    width: 100%;
    appearance: none;
    background: #fff;
}

.quote-form {
    position: relative;
}
