@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;1,400;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

:root {
    --bg: #11131b;
    --bg-soft: #1b2131;
    --card: #1d2233;
    --text: #f3eee8;
    --muted: #cfc4b8;
    --accent: #e07a5f;
    --accent-dark: #c86349;
    --border: rgba(255, 255, 255, 0.08);
    --container: 1200px;
    --radius: 18px;
    --shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
	
	--color-black: #000000;
    --color-gold-new: #C9A14A;
    --color-gold-light: #E5C76B;
    --color-gold-dark: #A8832F;

    /* couleurs */
    --color-gold: #D4AF37;
    --color-text-light: #e5e5e5;

    /* gradients */
    --gradient-gold: linear-gradient(
        135deg,
        #f5d76e 0%,
        #d4af37 40%,
        #b8962e 60%,
        #f5d76e 100%
    );

    /* typo */
    --font-normal: 'Cormorant Garamond', serif;
    --font-signature: 'Great Vibes', cursive;
}

.btn-gold {
    background: linear-gradient(
        135deg,
        #000000 0%,
        #1a1a1a 100%
    );
    color: var(--color-gold-new);
    border: 1px solid var(--color-gold-new);
}

.btn-gold:hover {
    background: linear-gradient(
        135deg,
        #C9A14A 0%,
        #E5C76B 100%
    );
    color: #000;
}

.btn-gold:active {
    background-color: var(--color-gold-dark);
    color: var(--color-black);
}

.btn-gold:focus {
    outline: none;
    box-shadow: 0 0 5px var(--color-gold-new);
}

.gold-police-normal {
    font-family: var(--font-normal);
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-police-signature {
    font-family: var(--font-signature);
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: linear-gradient(180deg, #0f1118 0%, #171c2a 100%);
    color: var(--text);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.container-narrow {
    width: min(100% - 2rem, 860px);
    margin-inline: auto;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: linear-gradient(180deg, #1a2030 0%, #20273a 100%);
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.section-heading--narrow {
    max-width: 720px;
}

.section-heading h1,
.section-heading h2,
.page-header h1,
.hero-title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 2.1;
    font-weight: 500;
}

.section-heading p,
.hero-quote,
.entry-content p,
.page-content p,
.single-content p {
    color: var(--muted);
}

.eyebrow {
    margin-bottom: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: 1px solid var(--accent);
    transition: 0.25s ease;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.btn-outline {
    background: transparent;
    color: var(--text);
}

.btn-outline:hover {
    background: rgba(224, 122, 95, 0.12);
}

.btn-small {
    min-height: 40px;
    padding: 0.6rem 1.1rem;
    font-size: 0.9rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(15, 17, 24, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 84px;
}

.site-title {
    font-size: 1.4rem;
    color: var(--accent);
    font-style: italic;
}

.custom-logo {
    max-height: 80px;
    width: auto;
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

.menu a {
    color: var(--text);
    font-size: 0.95rem;
}

.menu a:hover,
.footer-menu a:hover,
.footer-links a:hover,
.post-card-link:hover {
    color: var(--accent);
}

.hero {
    padding: 5rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    padding: 2rem 0;
}

.hero-quote {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-media img {
    border-radius: 24px;
    box-shadow: var(--shadow);
    object-fit: cover;
    width: 100%;
    max-height: 560px;
}

.cards-grid {
    display: grid;
    gap: 1.5rem;
}

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

.card {
    background: rgba(29, 34, 51, 0.88);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.quote-card,
.service-card,
.event-card,
.post-card {
    text-align: center;
}

.stars {
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.quote-card-text {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

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

/*============= SERVICES =============*/
.services-carousel {
    display: block;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.services-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    transition: transform 0.35s ease;
    will-change: transform;
}

.services-carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

.services-carousel-slide .service-card {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
}

.services .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.service-icon {
    font-size: 1.7rem;
    margin-bottom: 0.85rem;
    line-height: 1;
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 500;
}

.service-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--muted);
}

@media (min-width: 768px) {
    .services-carousel-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1024px) {
    .services-carousel-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.services-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.services-carousel-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.services-carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.event-card h3,
.post-card-title {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.6rem;
    font-weight: 500;
}

.section-action {
    margin-top: 2rem;
    text-align: center;
}

.about-block {
    display: grid;
    gap: 2rem;
    justify-items: center;
}

.about-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.post-card {
    overflow: hidden;
    padding: 0;
    text-align: left;
}

.post-card-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.post-card-content {
    padding: 1.5rem;
}

.post-card-title {
    font-size: 1.35rem;
    text-align: left;
}

.post-card-excerpt {
    color: var(--muted);
}

.post-card-link {
    color: var(--accent);
    font-weight: 600;
}

.page-content,
.single-content {
    background: rgba(29, 34, 51, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.post-meta {
    color: var(--muted);
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

.single-thumbnail {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 18px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content a {
    color: var(--accent);
}

.pagination {
    margin-top: 2rem;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #10131c;
    padding-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-title,
.footer-subtitle {
    margin-top: 0;
}

.footer-title {
    color: var(--accent);
}

.footer-text,
.footer-links,
.footer-menu {
    color: var(--muted);
}

.footer-links,
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1rem 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .hero-grid,
    .cards-grid--3,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-media {
        order: -1;
    }

    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 1rem 0;
    }

    .main-nav {
        width: 100%;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 4rem 0;
    }

    .card,
    .page-content,
    .single-content {
        padding: 1.4rem;
    }

    .hero {
        padding-top: 3rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/*============== CONTACT ====*/
.contact-page {
    padding: 4rem 0;
}

.contact-header {
    max-width: 720px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.contact-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-form {
    display: grid;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    gap: 0.5rem;
}

.form-row label {
    font-weight: 600;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    background: #fff;
    font: inherit;
}

.form-row textarea {
    resize: vertical;
    min-height: 160px;
}

.form-row-hidden {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-message {
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-weight: 500;
}

.form-message-success {
    background: #eefaf0;
    color: #1f6b35;
    border: 1px solid #b7e0c2;
}

.form-message-error {
    background: #fff1f1;
    color: #9f1d1d;
    border: 1px solid #efc2c2;
}

.contact-feedback {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
}

.contact-feedback--success {
    background: rgba(60, 120, 80, 0.18);
    border: 1px solid rgba(60, 120, 80, 0.35);
    color: #d8f3dc;
}

.contact-feedback--error {
    background: rgba(140, 60, 60, 0.18);
    border: 1px solid rgba(140, 60, 60, 0.35);
    color: #ffd6d6;
}

/*======== TARIFS =========*/

/* Aperçu éventuel */
.tarifs-preview-content {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    text-align: center;
    opacity: 0.9;
}

/* Page tarifs */
.page-tarifs .tarifs-container {
    max-width: 1320px;
    position: relative;
    padding: 2rem 2rem 3rem;
    border-radius: 28px;
    overflow: hidden;
}

.page-tarifs .tarifs-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(7, 12, 24, 0.52), rgba(7, 12, 24, 0.52)),
        var(--tarifs-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.98;
    pointer-events: none;
    z-index: 0;
}

.page-tarifs .tarifs-container > * {
    position: relative;
    z-index: 1;
}

.page-tarifs .section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-top: 1.5rem;
}

.page-tarifs .section-heading h1 {
    margin-bottom: 1.25rem;
}

.page-tarifs .tarifs-intro {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.page-tarifs .tarifs-intro p {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.8;
    color: var(--text);
}

.page-tarifs .tarifs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
    margin-top: 2.5rem;
}

.page-tarifs .tarifs-block {
    margin: 0;
    padding: 2.2rem 2rem;
    border-radius: 24px;
    background: rgba(16, 22, 38, 0.82);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    min-height: 100%;
}

.page-tarifs .tarifs-block h2 {
    margin: 0 0 1.4rem;
    font-size: 1.85rem;
    line-height: 1.2;
}

.page-tarifs .tarifs-bullet-list {
    margin: 0;
    padding-left: 1.35rem;
}

.page-tarifs .tarifs-bullet-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.page-tarifs .tarifs-bullet-list li:last-child {
    margin-bottom: 0;
}

.page-tarifs .tarifs-bullet-list li::marker {
    color: var(--color-gold);
}

.page-tarifs .tarif-line,
.page-tarifs .tarif-text,
.page-tarifs .tarif-inline-price {
    display: inline;
}

.page-tarifs .tarif-inline-price {
    font-weight: 700;
    margin-left: 0.25rem;
    white-space: normal;
}

.page-tarifs .tarifs-bottom {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
}

.page-tarifs .tarifs-infos {
    max-width: 920px;
    margin: 0 auto;
    padding: 2.25rem 2rem;
    border-radius: 24px;
    background: rgba(8, 12, 24, 0.72);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(4px);
}

.page-tarifs .tarifs-infos h2 {
    margin: 0 0 1.2rem;
    font-size: 1.9rem;
}

.page-tarifs .tarifs-infos ul {
    margin: 0;
    padding-left: 1.35rem;
}

.page-tarifs .tarifs-infos li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.page-tarifs .tarifs-infos li:last-child {
    margin-bottom: 0;
}

.page-tarifs .tarifs-cta {
    text-align: center;
    margin-top: 0.5rem;
}

.page-tarifs .tarifs-cta .btn {
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1100px) {
    .page-tarifs .tarifs-grid {
        grid-template-columns: 1fr;
    }

    .page-tarifs .tarifs-block h2,
    .page-tarifs .tarifs-infos h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-tarifs .tarifs-container {
        padding: 1.25rem 1rem 2rem;
        border-radius: 18px;
    }

    .page-tarifs .tarifs-intro p,
    .page-tarifs .tarifs-bullet-list li,
    .page-tarifs .tarifs-infos li {
        font-size: 1rem;
    }

    .page-tarifs .tarifs-block,
    .page-tarifs .tarifs-infos {
        padding: 1.6rem 1.2rem;
    }
}

/* =========================
   BOUTIQUE
========================= */

.shop-page {
  background:
    radial-gradient(circle at top, rgba(58, 74, 120, 0.16), transparent 35%),
    linear-gradient(180deg, #0d1320 0%, #11182a 50%, #0c121d 100%);
  color: #f3e7db;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin-inline: auto;
}

.container.narrow {
  width: min(780px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: #d48567;
}

.section-title,
.shop-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.1;
  color: #f6eadf;
}

.shop-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  text-align: center;
  margin: 0;
}

.shop-subtitle {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  text-align: center;
  color: #f2e1d3;
  margin: 20px 0 0;
}

.shop-divider {
  width: 90px;
  height: 1px;
  background: rgba(244, 228, 212, 0.45);
  margin: 28px auto 34px;
}

.shop-intro {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(243, 231, 219, 0.92);
  max-width: 680px;
  margin: 0 auto 36px;
}

.shop-hero {
  text-align: center;
  padding-top: 110px;
  padding-bottom: 110px;
}

.with-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 48px;
}

.with-lines::before,
.with-lines::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  background: rgba(244, 228, 212, 0.35);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.shop-card {
  background: rgba(23, 31, 50, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 133, 103, 0.4);
}

.shop-card-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.12));
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.78) brightness(0.84);
}

.shop-card-body {
  padding: 26px 22px 28px;
  text-align: center;
}

.shop-card-body h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #f6eadf;
}

.shop-card-body p {
  margin: 0 0 22px;
  font-size: 1.02rem;
  color: rgba(243, 231, 219, 0.85);
}

.shop-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(244, 228, 212, 0.35);
  border-radius: 999px;
  color: #f6eadf;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.02);
}

.shop-manifesto {
  text-align: center;
}

.shop-manifesto-text {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.75;
  color: #f4e5d6;
}

.shop-manifesto-text p {
  margin: 0 0 8px;
}

.shop-manifesto-text em {
  font-style: italic;
  color: #f0d9c5;
}

.shop-notify-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid rgba(244, 228, 212, 0.32);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(19, 26, 42, 0.72);
}

.shop-notify-form input {
  min-height: 62px;
  padding: 0 22px;
  border: 0;
  outline: none;
  background: transparent;
  color: #f6eadf;
  font-size: 1.05rem;
}

.shop-notify-form input::placeholder {
  color: rgba(243, 231, 219, 0.5);
}

.shop-notify-form button {
  min-height: 62px;
  padding: 0 28px;
  border: 0;
  border-left: 1px solid rgba(244, 228, 212, 0.22);
  cursor: pointer;
}

.shop-notify-note {
  text-align: center;
  margin: 22px 0 0;
  color: rgba(243, 231, 219, 0.82);
  font-size: 1rem;
}

.shop-footer-note {
  padding-top: 36px;
  padding-bottom: 36px;
}

.shop-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(243, 231, 219, 0.82);
  font-size: 0.98rem;
}

.shop-back-link {
  color: #f3e7db;
  text-decoration: none;
}

.shop-back-link:hover {
  color: #d48567;
}

/* boutons cohérents avec ton thème */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.btn-outline {
  border: 1px solid rgba(244, 228, 212, 0.4);
  color: #f6eadf;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 133, 103, 0.55);
}

.btn-solid {
  background: #d48567;
  color: #fff7f2;
}

.btn-solid:hover {
  background: #c97759;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

/* responsive */
@media (max-width: 980px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-card-body h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 70px 0;
  }

  .with-lines::before,
  .with-lines::after {
    width: 38px;
  }

  .shop-notify-form {
    grid-template-columns: 1fr;
  }

  .shop-notify-form button {
    border-left: 0;
    border-top: 1px solid rgba(244, 228, 212, 0.22);
  }

  .shop-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* === Harmonisation typographique header + hero === */

.main-nav .menu,
.main-nav .menu a,
.site-header .menu,
.site-header .menu a {
    font-family: var(--font-normal);
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 1.08rem;
}

.eyebrow,
.hero-content .eyebrow,
.hero-content .gold-police-normal {
    font-family: var(--font-normal);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 1.05rem;
    line-height: 1.4;
}

.hero-quote {
    font-family: var(--font-normal);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 1.9vw, 2.1rem);
    line-height: 1.35;
    letter-spacing: 0.01em;
    max-width: 34ch;
}

.hero-title,
.gold-police-signature {
    font-family: var(--font-signature);
}

/* Petit rééquilibrage du menu */
.main-nav .menu {
    gap: 2rem;
}

.main-nav .menu a:hover {
    opacity: 0.85;
}

/* === Grille services accueil === */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.services-grid .service-card {
    height: 100%;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* === Section À propos === */

.about-block {
    display: block;
}

.about-texts {
    max-width: 1100px;
    margin: 0 auto;
}

.about-intro {
    max-width: 980px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-intro p {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
}

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

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-pillar {
    text-align: left;
    padding: 2rem;
    min-height: 100%;
}

.about-pillar h3 {
    margin: 0 0 1rem;
    font-size: 1.7rem;
    line-height: 1.2;
}

.about-pillar p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--muted);
}

@media (max-width: 980px) {
    .about-pillars {
        grid-template-columns: 1fr;
    }

    .about-intro {
        margin-bottom: 2rem;
    }
}
.about-intro {
    max-width: 900px;
}

.about-pillars {
    align-items: stretch;
}

.about-pillar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
}
.contact-form select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    background: #fff;
    font: inherit;
}