/* Base */
:root {
    --navy: #12233a;
    --navy-2: #1a2b45;
    --gold: #cbb480;
    --cream: #F7F6F2;
    --ink: #0e1b2b;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
    color: var(--navy);
    background: var(--white);
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    text-decoration: none;
    display: inline-block;
}

.brand-logo {
    height: 50px;
    width: auto;
    display: block;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    font-weight: 600;
    color: var(--navy);
    opacity: 0.7;
    font-size: 13px;
}

.main-nav a.active,
.main-nav a:hover {
    opacity: 1;
}

.btn {
    display: inline-block;
    border-radius: 4px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: transform .06s ease, box-shadow .2s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: var(--navy-2);
    transform: translateY(-2px);
}

.hero {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-profile {
    display: none;
}

.hero-content {
    max-width: 800px;
    margin: 0;
    text-align: left;
    color: var(--navy);
}

.hero-content h1 {
    color: var(--navy);
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content .eyebrow {
    color: var(--gold);
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 32px;
}

@media (max-width: 900px) {
    .hero-content {
        opacity: 1;
        animation: none;
    }
}

.hero-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-media:hover img {
    transform: scale(1.02);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-content h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.2;
    color: var(--navy);
    font-weight: 600;
}

.hero-content .eyebrow {
    color: var(--gold);
    font-weight: 500;
    margin: 0 0 32px;
    font-size: clamp(16px, 2vw, 18px);
    opacity: 0.9;
}

.hero-content .btn {
    font-size: clamp(14px, 1.5vw, 16px);
    padding: 16px 32px;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .hero {
        min-height: unset;
        padding: 60px 0;
        background: var(--cream);
    }

    .hero-background {
        display: none;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .hero-content {
        color: var(--navy);
        text-align: left;
        width: min(400px, 92%);
        margin: 0 auto;
        order: 1;
    }

    .hero-profile {
        display: block;
        width: min(400px, 92%);
        aspect-ratio: 1;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        order: 2;
        margin: 0 auto;
    }

    .hero-profile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-content h1 {
        color: var(--navy);
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
        font-weight: 600;
        text-align: left;
    }

    .hero-content .eyebrow {
        color: var(--gold);
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 28px;
        max-width: 320px;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .hero-content .btn {
        display: block;
        width: 100%;
        padding: 16px 32px;
        font-size: 16px;
        border-radius: 8px;
        background: var(--navy);
        color: var(--white);
        font-weight: 500;
        letter-spacing: 0.02em;
        box-shadow: 0 4px 12px rgba(18, 35, 58, 0.15);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero-profile {
        width: 280px;
        height: 280px;
        border-radius: 12px;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-content .eyebrow {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-content .btn {
        width: 100%;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        margin-bottom: 12px;
    }

    .hero-content .eyebrow {
        margin-bottom: 24px;
    }

    .hero-content .btn {
        width: 100%;
        text-align: center;
    }
}

/* Booking */
.booking {
    padding: 0;
    margin: 40px 0;
}

.booking-inner {
    display: grid;
    grid-template-columns: minmax(auto, 400px) minmax(auto, 500px);
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.booking-media {
    width: 100%;
    aspect-ratio: 1;
}

.booking-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.booking-copy {
    text-align: right;
}

.booking-copy h2 {
    margin: 0 0 24px;
    font-size: 42px;
    color: var(--navy);
    line-height: 1.1;
    font-weight: 500;
}

.booking-copy p {
    margin: 0 0 24px;
    color: var(--navy);
    line-height: 1.7;
    font-size: 15px;
    max-width: 460px;
    margin-left: auto;
    opacity: 0.8;
}

.booking-price {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 500;
}

.booking-copy .btn {
    padding: 16px 48px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Circles Section */
.circles {
    padding: 40px 0;
    background: var(--white);
}

.circles-inner {
    display: grid;
    grid-template-columns: minmax(auto, 500px) minmax(auto, 400px);
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.circles-media {
    width: 100%;
    aspect-ratio: 1;
}

.circles-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.circles-copy {
    text-align: left;
}

.circles-copy h2 {
    margin: 0 0 24px;
    font-size: 42px;
    color: var(--navy);
    line-height: 1.1;
    font-weight: 500;
}

.circles-copy p {
    margin: 0 0 24px;
    color: var(--navy);
    line-height: 1.7;
    font-size: 15px;
    max-width: 460px;
    opacity: 0.8;
}

.circles-copy .btn {
    padding: 16px 48px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .circles {
        padding: 30px 0;
    }

    .circles-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .circles-copy {
        text-align: center;
        margin: 0 auto;
    }

    .circles-media {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Contact Section */
.contact {
    padding: 20px 0;
    background: var(--white);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-media {
    width: 200px;
    margin: 0 auto 24px;
}

.contact-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.contact h2 {
    margin: 0 0 20px;
    font-size: 42px;
    color: var(--navy);
    line-height: 1.1;
    font-weight: 500;
}

.contact p {
    margin: 0 0 24px;
    color: var(--navy);
    line-height: 1.7;
    font-size: 15px;
    opacity: 0.7;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.contact .btn {
    padding: 16px 48px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .contact {
        padding: 80px 0;
    }

    .contact-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .contact-media {
        width: 140px;
        margin-bottom: 32px;
    }
}

/* Video Section */
.video-section {
    padding: 40px 0 120px;
    background: var(--cream);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

@media (max-width: 900px) {
    .booking {
        padding: 30px 0;
    }

    .booking-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .booking-copy {
        text-align: center;
        margin: 0 auto;
    }

    .booking-media {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
        aspect-ratio: 1;
        width: 100%;
    }

    .booking-media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Footer */
.site-footer {
    background: #F7F6F2;
    padding: 80px 0 40px;
    margin-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.2em;
    margin: 0;
}

.footer-nav h3,
.footer-autre h3,
.footer-contact h3,
.footer-social h3 {
    color: var(--gold);
    font-size: 16px;
    margin: 0 0 20px;
    font-weight: 500;
}

.footer-nav ul,
.footer-autre ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li,
.footer-autre ul li {
    margin-bottom: 12px;
}

.footer-nav a,
.footer-autre a,
.footer-contact a {
    color: var(--navy);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    font-size: 14px;
}

.footer-nav a:hover,
.footer-autre a:hover,
.footer-contact a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--navy);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    opacity: 0.6;
}

/* Lien Mentions légales dans le footer: même couleur que le texte, tous états */
.footer-bottom a,
.footer-bottom a:visited,
.footer-bottom a:hover,
.footer-bottom a:active,
.footer-bottom a:focus {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer {
        padding: 48px 0 24px;
    }
}

/* Links Page */
.social-networks-section {
    padding: 80px 0;
    text-align: center;
    background: var(--cream);
}

.social-networks-section h1 {
    margin: 0 0 32px;
    font-size: 42px;
    color: var(--navy);
    line-height: 1.2;
    font-weight: 500;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--navy);
    opacity: 0.8;
    margin: 0 0 40px;
}

.social-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 32px;
}

.social-link {
    display: inline-block;
    padding: 12px 32px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: transform 0.2s, opacity 0.2s;
}

.social-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.tools-section {
    padding: 80px 0;
    background: var(--white);
}

.tools-section h2 {
    text-align: center;
    margin: 0 0 60px;
    font-size: 42px;
    color: var(--navy);
    line-height: 1.2;
    font-weight: 500;
}

.tools-grid {
    display: grid;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.tool-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.tool-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.book-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-content {
    text-align: right;
}

.tool-content h3 {
    margin: 0 0 24px;
    font-size: 32px;
    color: var(--navy);
    line-height: 1.2;
    font-weight: 500;
}

.tool-content p {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--navy);
    opacity: 0.8;
}

.tool-price {
    font-size: 20px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 24px;
}

.tool-content .btn {
    padding: 12px 32px;
    font-size: 14px;
}

@media (max-width: 900px) {
    .tool-card {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .tool-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .tool-content {
        text-align: center;
    }
}

@media (max-width: 600px) {

    .social-networks-section,
    .tools-section {
        padding: 60px 0;
    }

    .social-networks-section h1,
    .tools-section h2 {
        font-size: 36px;
    }

    .tool-content h3 {
        font-size: 28px;
    }

    .social-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .social-link {
        width: 100%;
    }
}

/* About Page */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h1 {
    margin: 0 0 32px;
    font-size: 42px;
    color: var(--navy);
    line-height: 1.2;
    font-weight: 500;
}

.about-text {
    max-width: 750px;
    margin: 0 auto 60px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--navy);
    opacity: 0.8;
    margin: 0;
}

.about-video {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content h1 {
        font-size: 36px;
    }

    .profile-image {
        width: 160px;
        height: 160px;
        margin-bottom: 32px;
    }

    .about-text {
        padding: 0 20px;
    }
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
    background: var(--white);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.contact-form-heading-wrap h2 {
    margin: 0 0 24px;
    font-size: 42px;
    color: var(--navy);
    line-height: 1.1;
    font-weight: 500;
}

.contact-form-heading-wrap p {
    margin: 0 0 40px;
    color: var(--navy);
    line-height: 1.7;
    font-size: 15px;
    opacity: 0.7;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    color: var(--navy);
    background: var(--white);
    transition: border-color 0.2s;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy);
}

.contact-form button {
    width: 100%;
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.contact-info {
    text-align: center;
}

.contact-image {
    width: 100%;
    max-width: 300px;
    margin-bottom: 32px;
    border-radius: 8px;
}

.contact-details h3 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

.contact-email {
    color: var(--navy);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.contact-email:hover {
    opacity: 1;
}

@media (max-width: 900px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        order: -1;
    }

    .contact-image {
        max-width: 200px;
    }
}

@media (max-width: 600px) {
    .contact-page {
        padding: 60px 0;
    }

    .contact-form-heading-wrap h2 {
        font-size: 32px;
    }
}

/* Legal Section */
.legal-section {
  padding: 80px 0;
  background: var(--white);
}

.legal-section h1 {
  margin: 0 0 40px;
  font-size: 42px;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
}

.legal-section h2 {
  margin: 32px 0 16px;
  font-size: 24px;
  color: var(--navy);
  font-weight: 500;
}

.legal-section p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy);
  opacity: 0.8;
}

.legal-section a {
  color: var(--navy);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.legal-section a:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .legal-section {
    padding: 60px 0;
  }

  .legal-section h1 {
    font-size: 32px;
  }

  .legal-section h2 {
    font-size: 20px;
  }
}

/* Responsive */
@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .main-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 12px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .main-nav ul {
        justify-content: space-around;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .hero-copy {
        padding: 48px 0;
    }

    .booking-inner {
        grid-template-columns: 1fr;
    }
}