/* ==========================================================================
   Etoiledesreves — Feuille de style principale
   ========================================================================== */

:root {
    --bg: #fef2e4;
    --bg-soft: #fff9f1;
    --primary: #805a3b;
    --primary-dark: #5c3f27;
    --primary-light: #a37b55;
    --accent: #c60000;
    --accent-2: #fd974f;
    --ink: #2f2118;
    --muted: #6c5643;
    --line: rgba(128, 90, 59, .18);
    --white: #ffffff;

    --radius-s: 10px;
    --radius: 18px;
    --radius-l: 28px;

    --shadow-s: 0 4px 14px rgba(92, 63, 39, .08);
    --shadow: 0 14px 40px rgba(92, 63, 39, .12);
    --shadow-l: 0 28px 70px rgba(92, 63, 39, .18);

    --ease: cubic-bezier(.22, .61, .36, 1);
    --header-h: 88px;

    --font-title: "Georgia", "Times New Roman", serif;
    --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 20px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    overflow-x: hidden;
}

body.is-locked {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color .3s var(--ease), opacity .3s var(--ease);
}

a:hover {
    color: var(--accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--accent-2);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-title);
    color: var(--primary-dark);
    line-height: 1.18;
    margin: 0 0 .6em;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5.2vw, 3.65rem);
    letter-spacing: -.5px;
}

h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.6rem);
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
}

h4 {
    font-size: 1.08rem;
}

p {
    margin: 0 0 1.1em;
}

ul,
ol {
    padding-left: 1.25rem;
}

/* ---------- Layout helpers ---------- */

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 900px;
}

.section {
    padding: clamp(56px, 8vw, 118px) 0;
    position: relative;
}

.section--soft {
    background: var(--bg-soft);
}

.section--dark {
    background:
        radial-gradient(1100px 520px at 12% 0%, rgba(253, 151, 79, .22), transparent 62%),
        linear-gradient(160deg, #3c281a 0%, #241710 100%);
    color: #f6e7d6;
}

.section--dark h2,
.section--dark h3 {
    color: #fff4e6;
}

.section-head {
    max-width: 760px;
    margin: 0 auto clamp(34px, 5vw, 62px);
    text-align: center;
}

.section-head--left {
    margin-left: 0;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.section--dark .eyebrow {
    color: var(--accent-2);
}

.lead {
    font-size: 1.1rem;
    color: var(--muted);
}

.section--dark .lead,
.section--dark p {
    color: #e7d3bd;
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-body);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease),
        background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex: none;
}

.btn--primary {
    background: linear-gradient(120deg, var(--accent) 0%, #8f0000 100%);
    color: #fff;
    box-shadow: 0 12px 30px rgba(198, 0, 0, .3);
}

.btn--primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(198, 0, 0, .42);
}

.btn--gold {
    background: linear-gradient(120deg, var(--accent-2) 0%, #e97a24 100%);
    color: #3a2314;
    box-shadow: 0 12px 30px rgba(253, 151, 79, .34);
}

.btn--gold:hover {
    color: #2f1c0f;
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(253, 151, 79, .46);
}

.btn--ghost {
    border-color: var(--primary);
    color: var(--primary-dark);
    background: transparent;
}

.btn--ghost:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.section--dark .btn--ghost {
    border-color: rgba(255, 244, 230, .55);
    color: #fff4e6;
}

.section--dark .btn--ghost:hover {
    background: #fff4e6;
    color: var(--primary-dark);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

/* ---------- Header ---------- */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(254, 242, 228, .82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .35s var(--ease), background .35s var(--ease);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-s);
    background: rgba(254, 242, 228, .95);
}

.header-top {
    display: none;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: #f7e6d3;
    font-size: .82rem;
}

.header-top .container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    justify-content: flex-end;
    padding-top: 7px;
    padding-bottom: 7px;
}

.header-top a,
.header-top span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f7e6d3;
}

.header-top a:hover {
    color: var(--accent-2);
}

.header-top svg {
    width: 15px;
    height: 15px;
    flex: none;
    stroke: var(--accent-2);
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: var(--header-h);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: none;
}

.brand img {
    width: 46px;
    height: 46px;
}

.brand-name {
    font-family: var(--font-title);
    font-size: 1.32rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: .4px;
    line-height: 1.1;
}

.brand-tag {
    display: block;
    font-family: var(--font-body);
    font-size: .62rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    display: block;
    padding: 10px 15px;
    border-radius: 999px;
    font-size: .93rem;
    font-weight: 600;
    color: var(--primary-dark);
    position: relative;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width .3s var(--ease);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
    width: 26px;
}

.nav-list a[aria-current="page"] {
    color: var(--accent);
}

.header-cta {
    padding: 12px 24px;
    font-size: .82rem;
}

.burger {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    padding: 0;
    position: relative;
}

.burger span {
    position: absolute;
    left: 13px;
    width: 22px;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .25s var(--ease), top .3s var(--ease);
}

.burger span:nth-child(1) {
    top: 17px;
}

.burger span:nth-child(2) {
    top: 23px;
}

.burger span:nth-child(3) {
    top: 29px;
}

.burger[aria-expanded="true"] span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    padding: calc(var(--header-h) + clamp(48px, 8vw, 96px)) 0 clamp(56px, 8vw, 104px);
    background:
        radial-gradient(900px 460px at 88% 6%, rgba(253, 151, 79, .3), transparent 60%),
        radial-gradient(700px 420px at 4% 92%, rgba(198, 0, 0, .12), transparent 62%),
        var(--bg);
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px 0;
    height: 90px;
    background: linear-gradient(180deg, transparent, rgba(255, 249, 241, .9));
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(30px, 5vw, 68px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 22px;
}

.hero p.lead {
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    max-width: 58ch;
}

.hero-media {
    position: relative;
}

.hero-media img {
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-l);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
    background: #e9d8c4;
}

.hero-badge {
    position: absolute;
    left: -18px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: var(--shadow);
    max-width: 260px;
}

.hero-badge svg {
    width: 32px;
    height: 32px;
    flex: none;
    stroke: var(--accent);
}

.hero-badge strong {
    display: block;
    font-family: var(--font-title);
    color: var(--primary-dark);
}

.hero-badge span {
    font-size: .84rem;
    color: var(--muted);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

.hero-tags li {
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .66);
    border: 1px solid var(--line);
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Offline badge */
.offline-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(198, 0, 0, .12), rgba(253, 151, 79, .2));
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.offline-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    flex: none;
}

/* Page hero (inner pages) */
.page-hero {
    padding: calc(var(--header-h) + clamp(40px, 6vw, 78px)) 0 clamp(44px, 6vw, 82px);
    background:
        radial-gradient(760px 420px at 80% 0%, rgba(253, 151, 79, .28), transparent 62%),
        linear-gradient(150deg, #fef2e4 0%, #fff9f1 100%);
    border-bottom: 1px solid var(--line);
}

.page-hero .container {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.page-hero--center .container {
    grid-template-columns: 1fr;
    max-width: 880px;
    text-align: center;
    justify-items: center;
}

.page-hero img {
    border-radius: var(--radius-l);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    background: #e9d8c4;
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0 0 18px;
    font-size: .84rem;
    color: var(--muted);
}

.breadcrumb li + li::before {
    content: "/";
    margin-right: 8px;
    color: var(--accent-2);
}

/* ---------- Grids & cards ---------- */

.grid {
    display: grid;
    gap: clamp(20px, 2.6vw, 30px);
}

.grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: clamp(24px, 3vw, 36px);
    box-shadow: var(--shadow-s);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s var(--ease);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-l);
    border-color: rgba(253, 151, 79, .5);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    margin-bottom: .45em;
}

.card p:last-child {
    margin-bottom: 0;
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(140deg, rgba(198, 0, 0, .1), rgba(253, 151, 79, .24));
    margin-bottom: 20px;
}

.icon-badge svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent);
}

.card--dark {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 244, 230, .18);
    color: #ecd9c4;
    box-shadow: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.card--dark .icon-badge {
    background: rgba(253, 151, 79, .18);
}

.card--dark .icon-badge svg {
    stroke: var(--accent-2);
}

/* Media + text split */
.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 4.5vw, 66px);
    align-items: center;
}

.split--reverse .split-media {
    order: 2;
}

.split-media img {
    border-radius: var(--radius-l);
    box-shadow: var(--shadow);
    aspect-ratio: 5 / 4;
    object-fit: cover;
    width: 100%;
    background: #e9d8c4;
}

.split-media--stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.split-media--stack img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}

.split-media--stack img:not(:first-child) {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
}

/* Check list */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4em;
    display: grid;
    gap: 12px;
}

.check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.check-list svg {
    width: 22px;
    height: 22px;
    flex: none;
    margin-top: 3px;
    stroke: var(--accent);
}

.section--dark .check-list svg {
    stroke: var(--accent-2);
}

/* ---------- Stats ---------- */

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 30px);
}

.stat {
    text-align: center;
    padding: clamp(24px, 3vw, 38px) 18px;
    border-radius: var(--radius-l);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 244, 230, .18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .4s var(--ease), background .4s var(--ease);
}

.stat:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .14);
}

.stat-num {
    display: block;
    font-family: var(--font-title);
    font-size: clamp(2.1rem, 4.6vw, 3.2rem);
    font-weight: 700;
    color: var(--accent-2);
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: 12px;
    font-size: .9rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #e7d3bd;
}

/* ---------- Packages ---------- */

.price-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: clamp(26px, 3vw, 38px);
    box-shadow: var(--shadow-s);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-l);
}

.price-card--featured {
    background: linear-gradient(165deg, #402b1c 0%, #26170f 100%);
    color: #ecd9c4;
    border-color: rgba(253, 151, 79, .4);
}

.price-card--featured h3 {
    color: #fff4e6;
}

.price-card--featured .price-value {
    color: var(--accent-2);
}

.price-card--featured .check-list svg {
    stroke: var(--accent-2);
}

.ribbon {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.price-value {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    display: block;
    margin: 8px 0 4px;
}

.price-meta {
    font-size: .85rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.price-card--featured .price-meta {
    color: #d8c1a8;
}

.price-card .btn {
    margin-top: auto;
    width: 100%;
}

.divider-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: clamp(34px, 5vw, 62px) 0;
}

.divider-deco::before,
.divider-deco::after {
    content: "";
    height: 1px;
    flex: 1;
    max-width: 220px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.divider-deco svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent-2);
}

/* ---------- Table ---------- */

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-l);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-s);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

caption {
    caption-side: bottom;
    padding: 14px 18px;
    font-size: .84rem;
    color: var(--muted);
    text-align: left;
}

th,
td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: .95rem;
}

thead th {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: #fdf2e6;
    font-family: var(--font-title);
    letter-spacing: .04em;
}

tbody tr:nth-child(even) {
    background: rgba(253, 151, 79, .07);
}

tbody tr:hover {
    background: rgba(253, 151, 79, .16);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* ---------- Timeline ---------- */

.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 26px;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent);
}

.timeline li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    align-items: start;
    position: relative;
}

.timeline-step {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(140deg, var(--accent), #8f0000);
    box-shadow: 0 8px 20px rgba(198, 0, 0, .28);
    position: relative;
    z-index: 1;
}

.timeline-body {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 26px;
    box-shadow: var(--shadow-s);
    transition: transform .35s var(--ease);
}

.timeline li:hover .timeline-body {
    transform: translateX(6px);
}

.timeline-body h3 {
    margin-bottom: .35em;
    color: var(--ink);
}

.timeline-body p {
    margin: 0;
    color: var(--muted);
}

/* ---------- Testimonials ---------- */

.quote-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: clamp(24px, 3vw, 34px);
    box-shadow: var(--shadow-s);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.quote-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.quote-mark svg {
    width: 34px;
    height: 34px;
    fill: rgba(253, 151, 79, .55);
}

.quote-card blockquote {
    margin: 0;
    font-size: 1rem;
    color: var(--muted);
    font-style: italic;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, var(--primary), var(--primary-light));
    color: #fff;
    font-family: var(--font-title);
    font-weight: 700;
    flex: none;
}

.quote-author strong {
    display: block;
    color: var(--primary-dark);
    font-family: var(--font-title);
}

.quote-author span {
    font-size: .84rem;
    color: var(--muted);
}

.stars {
    display: flex;
    gap: 3px;
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-2);
}

/* ---------- Info boxes ---------- */

.info-box {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding: clamp(24px, 3.4vw, 40px);
    border-radius: var(--radius-l);
    background: rgba(255, 255, 255, .68);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    border-left: 6px solid var(--accent);
    box-shadow: var(--shadow-s);
}

.info-box--alert {
    background: linear-gradient(120deg, rgba(198, 0, 0, .08), rgba(253, 151, 79, .14));
    border-left-color: var(--accent);
}

.info-box--gold {
    border-left-color: var(--accent-2);
}

.info-box-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: var(--white);
    box-shadow: var(--shadow-s);
}

.info-box-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--accent);
}

.info-box h3 {
    margin-bottom: .4em;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.pull-quote {
    margin: 0;
    padding: clamp(28px, 4vw, 46px);
    border-radius: var(--radius-l);
    background: linear-gradient(140deg, rgba(128, 90, 59, .1), rgba(253, 151, 79, .16));
    border: 1px dashed rgba(128, 90, 59, .35);
    font-family: var(--font-title);
    font-size: clamp(1.15rem, 2.3vw, 1.6rem);
    color: var(--primary-dark);
    text-align: center;
    line-height: 1.5;
}

.pull-quote footer {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: .88rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ---------- CTA ---------- */

.cta {
    position: relative;
    padding: clamp(44px, 6vw, 82px);
    border-radius: var(--radius-l);
    background:
        radial-gradient(700px 340px at 88% 12%, rgba(253, 151, 79, .3), transparent 62%),
        linear-gradient(150deg, #452e1e 0%, #23160e 100%);
    color: #f6e7d6;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-l);
}

.cta h2 {
    color: #fff4e6;
}

.cta p {
    color: #e7d3bd;
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-row {
    justify-content: center;
}

/* ---------- FAQ ---------- */

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-s);
    overflow: hidden;
}

.faq-item[open] {
    border-color: rgba(253, 151, 79, .55);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 60px 20px 24px;
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    position: relative;
}

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

.faq-item summary::after {
    content: "";
    position: absolute;
    right: 26px;
    top: 50%;
    width: 11px;
    height: 11px;
    margin-top: -7px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    transition: transform .3s var(--ease);
}

.faq-item[open] summary::after {
    transform: rotate(-135deg);
    margin-top: -3px;
}

.faq-answer {
    padding: 0 24px 22px;
    color: var(--muted);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ---------- Contact ---------- */

.contact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(28px, 4vw, 54px);
    align-items: start;
}

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

.contact-list li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-s);
    transition: transform .35s var(--ease);
}

.contact-list li:hover {
    transform: translateX(5px);
}

.contact-ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, rgba(198, 0, 0, .1), rgba(253, 151, 79, .22));
}

.contact-ico svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.contact-list strong {
    display: block;
    font-size: .76rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
}

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

.msg-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line);
    font-weight: 700;
    font-size: .9rem;
    box-shadow: var(--shadow-s);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.msg-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.msg-link svg {
    width: 22px;
    height: 22px;
    flex: none;
    fill: var(--primary-dark);
}

/* Form */
.form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: clamp(26px, 3.4vw, 44px);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.field input,
.field textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-s);
    background: var(--bg-soft);
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
    width: 100%;
}

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

.field input:focus,
.field textarea:focus {
    border-color: var(--accent-2);
    box-shadow: 0 0 0 4px rgba(253, 151, 79, .18);
    outline: none;
}

.field.has-error input,
.field.has-error textarea {
    border-color: var(--accent);
    background: rgba(198, 0, 0, .04);
}

.error-msg {
    font-size: .82rem;
    color: var(--accent);
    font-weight: 600;
    min-height: 0;
    display: none;
}

.field.has-error .error-msg {
    display: block;
}

.form-note {
    font-size: .84rem;
    color: var(--muted);
    margin: 18px 0 0;
}

.map-frame {
    border-radius: var(--radius-l);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    line-height: 0;
    background: #e9d8c4;
}

.map-frame iframe {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
}

/* ---------- Modal ---------- */

.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(35, 22, 14, .68);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s var(--ease);
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    width: 100%;
    max-width: 480px;
    background: var(--bg-soft);
    border-radius: var(--radius-l);
    padding: clamp(30px, 4vw, 46px);
    text-align: center;
    box-shadow: var(--shadow-l);
    transform: translateY(22px) scale(.96);
    transition: transform .4s var(--ease);
    position: relative;
}

.modal.is-open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, rgba(198, 0, 0, .12), rgba(253, 151, 79, .26));
}

.modal-icon svg {
    width: 38px;
    height: 38px;
    stroke: var(--accent);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--primary-dark);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: background .3s var(--ease), color .3s var(--ease);
}

.modal-close:hover {
    background: var(--accent);
    color: #fff;
}

/* ---------- Legal ---------- */

.legal {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: clamp(28px, 4vw, 58px);
    box-shadow: var(--shadow-s);
}

.legal h2 {
    margin-top: 1.8em;
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

.legal h2:first-of-type {
    margin-top: 0;
}

.legal ul {
    display: grid;
    gap: 8px;
    margin-bottom: 1.4em;
    color: var(--muted);
}

.legal p {
    color: var(--muted);
}

.legal a {
    color: var(--accent);
    font-weight: 600;
}

/* ---------- Footer ---------- */

.site-footer {
    background:
        radial-gradient(800px 420px at 8% 0%, rgba(253, 151, 79, .18), transparent 60%),
        linear-gradient(160deg, #3a2618 0%, #201409 100%);
    color: #dcc7ae;
    padding: clamp(50px, 7vw, 86px) 0 0;
    font-size: .94rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: clamp(28px, 3.4vw, 50px);
}

.site-footer h3 {
    color: #fff4e6;
    font-size: 1.05rem;
    letter-spacing: .04em;
    margin-bottom: 1em;
}

.site-footer .brand-name {
    color: #fff4e6;
}

.site-footer a {
    color: #dcc7ae;
}

.site-footer a:hover {
    color: var(--accent-2);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 11px;
}

.footer-list--contact li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
}

.footer-list--contact svg {
    width: 18px;
    height: 18px;
    flex: none;
    margin-top: 4px;
    stroke: var(--accent-2);
}

.hours {
    display: grid;
    gap: 10px;
    margin: 0;
}

.hours div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(220, 199, 174, .2);
}

.hours dt {
    font-weight: 600;
    color: #f0dcc4;
}

.hours dd {
    margin: 0;
    color: var(--accent-2);
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.socials a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 244, 230, .08);
    border: 1px solid rgba(255, 244, 230, .16);
    transition: transform .3s var(--ease), background .3s var(--ease);
}

.socials a:hover {
    transform: translateY(-4px);
    background: rgba(253, 151, 79, .28);
}

.socials svg {
    width: 20px;
    height: 20px;
    fill: #f0dcc4;
}

.legal-info {
    margin-top: clamp(34px, 4vw, 54px);
    padding: 26px 0;
    border-top: 1px solid rgba(220, 199, 174, .18);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.legal-info div span {
    display: block;
    font-size: .74rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent-2);
}

.legal-info div strong {
    color: #f4e2cc;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(220, 199, 174, .18);
    padding: 22px 0 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    justify-content: space-between;
    align-items: center;
    font-size: .86rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ---------- Reveal animation ---------- */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal[data-delay="1"] {
    transition-delay: .1s;
}

.reveal[data-delay="2"] {
    transition-delay: .2s;
}

.reveal[data-delay="3"] {
    transition-delay: .3s;
}

.reveal[data-delay="4"] {
    transition-delay: .4s;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 300;
    padding: 12px 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 0 0 12px 0;
}

.skip-link:focus {
    left: 0;
    color: #fff;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 1024px) {
    .header-top {
        display: block;
    }

    :root {
        --header-h: 92px;
    }
}

@media (max-width: 1080px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1000px) {
    .site-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        background: var(--bg-soft);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height .45s var(--ease);
    }

    .site-nav.is-open {
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 24px 24px;
    }

    .nav-list a {
        padding: 15px 6px;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        font-size: 1rem;
    }

    .nav-list a::after {
        display: none;
    }

    .burger {
        display: block;
    }

    .header-cta {
        display: none;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    body {
        font-size: 16px;
    }

    .hero-grid,
    .page-hero .container,
    .split {
        grid-template-columns: 1fr;
    }

    .split--reverse .split-media {
        order: 0;
    }

    .hero-media img {
        aspect-ratio: 16 / 11;
    }

    .hero-badge {
        left: 12px;
        bottom: 12px;
    }

    .legal-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .grid--2,
    .grid--3,
    .grid--4,
    .stats,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 18px;
    }

    .info-box {
        grid-template-columns: 1fr;
    }

    .split-media--stack {
        grid-template-columns: 1fr;
    }

    .split-media--stack img:not(:first-child) {
        aspect-ratio: 16 / 10;
    }

    .btn {
        width: 100%;
    }

    .btn-row {
        flex-direction: column;
    }

    .timeline::before {
        left: 21px;
    }

    .timeline li {
        grid-template-columns: 44px 1fr;
        gap: 16px;
    }

    .timeline-step {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .map-frame iframe {
        height: 340px;
    }

    .footer-bottom {
        justify-content: flex-start;
    }
}

@media (max-width: 380px) {
    .brand-name {
        font-size: 1.08rem;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

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

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #2f2118 0%, #1a120c 100%);
    color: #f6e7d6;
    padding: 20px 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, .25);
    transform: translateY(100%);
    transition: transform .4s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    min-width: 280px;
    font-size: .9rem;
    line-height: 1.5;
}

.cookie-banner__text a {
    color: var(--accent-2);
    text-decoration: underline;
}

.cookie-banner__text a:hover {
    color: var(--accent);
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-s);
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}

.cookie-banner__btn--accept {
    background: var(--accent);
    color: #fff;
}

.cookie-banner__btn--accept:hover {
    background: #a30000;
}

.cookie-banner__btn--decline {
    background: transparent;
    color: #f6e7d6;
    border: 1px solid rgba(246, 231, 214, .35);
}

.cookie-banner__btn--decline:hover {
    border-color: #f6e7d6;
    color: #fff;
}

@media (max-width: 640px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__btn {
        flex: 1;
        text-align: center;
    }
}
