:root {
  --bg: #fbf8f2;
  --bg-soft: #f1ece4;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --navy: #122230;
  --navy-soft: #24384a;
  --text: #20303b;
  --muted: #667782;
  --copper: #ba7844;
  --sage: #7c907b;
  --line: rgba(18, 34, 48, 0.1);
  --shadow: 0 22px 54px rgba(18, 34, 48, 0.08);
  --shadow-strong: 0 30px 78px rgba(18, 34, 48, 0.16);
  --radius-lg: 36px;
  --radius-md: 28px;
  --radius-sm: 20px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(186, 120, 68, 0.12), transparent 20%),
    linear-gradient(180deg, #fcfaf6 0%, var(--bg-soft) 100%);
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(251, 248, 242, 0.78);
  border-bottom: 1px solid rgba(18, 34, 48, 0.08);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.footer-links a:hover,
.subnav a:hover,
.card-link:hover {
  color: var(--navy);
}

.desktop-cta {
  display: inline-flex;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  color: var(--navy);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.mobile-menu-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.22s ease, background 0.22s ease;
}

.mobile-menu-toggle-inner {
  display: grid;
  gap: 4px;
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
}

body.menu-open .mobile-menu-toggle {
  background: var(--navy);
  border-color: rgba(18, 34, 48, 0.24);
}

body.menu-open .mobile-menu-toggle-line {
  background: #fff;
}

body.menu-open .mobile-menu-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .mobile-menu-toggle-line:nth-child(2) {
  opacity: 0;
}

body.menu-open .mobile-menu-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 34, 48, 0.34);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.mobile-menu-dialog {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(380px, 100%);
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 240, 233, 0.98) 100%);
  box-shadow: var(--shadow-strong);
  transform: translateX(100%);
  transition: transform 0.24s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: 20px;
  border-left: 1px solid rgba(18, 34, 48, 0.08);
}

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
}

body.menu-open .mobile-menu-dialog {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.mobile-menu-links {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 13px 16px;
  border-radius: 18px;
  color: var(--navy);
  background: rgba(18, 34, 48, 0.05);
  font-weight: 700;
  border: 1px solid rgba(18, 34, 48, 0.05);
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.mobile-menu-links a:hover {
  background: rgba(18, 34, 48, 0.08);
  border-color: rgba(18, 34, 48, 0.12);
  transform: translateX(2px);
}

.mobile-menu-links a::after {
  content: "+";
  font-size: 1.05rem;
  color: rgba(18, 34, 48, 0.48);
}

.mobile-menu .btn {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

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

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

.btn-light {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.page {
  padding-bottom: 56px;
}

.hero {
  padding: 30px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 20px;
  align-items: stretch;
}

.hero-main {
  min-height: 760px;
  padding: 46px;
  border-radius: var(--radius-lg);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background-size: cover;
  background-position: center;
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 34, 48, 0.94) 0%, rgba(18, 34, 48, 0.66) 56%, rgba(90, 73, 55, 0.30) 100%);
}

.hero-main > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

.hero .eyebrow {
  color: #f0cfb4;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 16px;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
}

h3 {
  font-size: 1.36rem;
  color: var(--navy);
}

p {
  margin: 0;
  line-height: 1.84;
  color: var(--muted);
}

.hero-copy {
  max-width: 740px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-notes,
.subnav,
.card-links,
.list,
.faq-list,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-notes {
  margin-top: 34px;
}

.hero-note,
.stat,
.subnav a {
  padding: 14px 16px;
  border-radius: 18px;
}

.hero-note,
.stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.hero-side {
  display: grid;
  gap: 20px;
}

.photo-panel,
.image-panel {
  min-height: 360px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.photo-panel::before,
.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 34, 48, 0.04), rgba(18, 34, 48, 0.18));
}

.card,
.panel,
.quote,
.faq,
.cta,
.info-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.card,
.panel,
.quote,
.faq,
.info-box {
  padding: 30px;
}

.card h3,
.panel h3,
.quote h3,
.info-box h3 {
  margin-bottom: 12px;
}

.section {
  padding: 78px 0;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-intro {
  max-width: 780px;
  color: var(--muted);
}

.grid-2,
.grid-3,
.split {
  display: grid;
  gap: 18px;
}

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

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

.split {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.card-link {
  font-weight: 800;
  color: var(--navy);
}

.subnav {
  margin-top: 22px;
}

.subnav a {
  background: rgba(18, 34, 48, 0.05);
  border: 1px solid rgba(18, 34, 48, 0.08);
  color: var(--navy);
  font-weight: 700;
}

.dark-section {
  background: linear-gradient(180deg, rgba(18, 34, 48, 0.98), rgba(29, 46, 59, 0.98));
}

.dark-section h2,
.dark-section .section-intro,
.dark-section .card h3,
.dark-section p {
  color: #fff;
}

.dark-section .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: none;
}

.dark-section .card p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 34, 48, 0.06);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-list {
  flex-direction: column;
  margin-top: 22px;
}

.faq strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.cta {
  padding: 42px;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(18, 34, 48, 0.95), rgba(82, 62, 48, 0.72));
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta h2,
.cta p {
  color: #fff;
}

.site-footer {
  padding: 26px 0 54px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: var(--muted);
}

.hero-home {
  background-image: url("../images/hero-home.jpg");
}

.hero-performance {
  background-image: url("../images/performance-1.jpg");
}

.hero-sante {
  background-image: url("../images/sante-1.jpg");
}

.hero-reprise {
  background-image: url("../images/reprise.jpg");
}

.hero-english {
  background-image: url("../images/english.jpg");
}

.hero-executive {
  background-image: url("../images/executive.jpg");
}

.hero-mougins {
  background-image: url("../images/mougins.jpg");
}

.hero-cannes {
  background-image: url("../images/cannes.jpg");
}

.hero-antibes {
  background-image: url("../images/antibes.jpg");
}

.hero-about {
  background-image: url("../images/about.jpg");
}

.bg-performance-2 {
  background-image: url("../images/performance-2.jpg");
}

.bg-reprise {
  background-image: url("../images/reprise.jpg");
}

.bg-sante {
  background-image: url("../images/sante-1.jpg");
}

.bg-about {
  background-image: url("../images/about.jpg");
}

.bg-cannes {
  background-image: url("../images/cannes.jpg");
}

.bg-antibes {
  background-image: url("../images/antibes.jpg");
}

.bg-mougins {
  background-image: url("../images/mougins.jpg");
}

@media (max-width: 980px) {
  .site-nav,
  .hero-grid,
  .grid-2,
  .grid-3,
  .split {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .hero-main,
  .photo-panel,
  .image-panel {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 24px));
  }

  .site-header-inner {
    padding: 14px 0;
  }

  .brand {
    font-size: 0.88rem;
    letter-spacing: 0.12em;
  }

  .mobile-menu-dialog {
    width: 100%;
    padding: 16px;
    gap: 16px;
  }

  .hero-main,
  .card,
  .panel,
  .quote,
  .faq,
  .cta,
  .info-box {
    padding: 22px;
  }

  .section {
    padding: 62px 0;
  }
}
