/* ==========================================================================
   Centre Cupping Ben Younes : feuille de style partagée
   ========================================================================== */

:root {
  --bg: #1b1816;
  --panel: #221d19;
  --panel-alt: #2b241e;
  --gold: #9c875e;
  --gold-light: #bea675;
  --oxblood: #7b1e2b;
  --oxblood-light: #9b303b;
  --cream: #e8ddc8;
  --stone: #e8ddc8;
  --stone-ink: #5a4938;
  --line: rgba(156, 135, 94, 0.25);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --container: 1160px;
  --radius: 4px;
  --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--cream);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p {
  margin: 0 0 1em;
}

em, .accent {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

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

section {
  padding: 88px 0;
}

@media (max-width: 720px) {
  section { padding: 56px 0; }
}

.section-light {
  background: var(--stone);
  color: var(--stone-ink);
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--stone-ink);
}

.section-light em,
.section-light .accent {
  color: var(--oxblood);
}

.section-panel {
  background: var(--panel);
}

.section-panel-alt {
  background: var(--panel-alt);
}

/* ---------- divider motif ---------- */
.dome-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.6;
}

.section-light + .dome-divider,
.dome-divider.on-light {
  background: linear-gradient(90deg, transparent, var(--oxblood) 50%, transparent);
  opacity: 0.35;
}

/* ---------- eyebrow / kicker ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-light .kicker {
  color: var(--oxblood);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1b140c;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: rgba(199, 154, 86, 0.12);
}

.btn-oxblood {
  background: var(--oxblood);
  color: var(--cream);
}

.btn-oxblood:hover {
  background: var(--oxblood-light);
}

.section-light .btn-outline {
  border-color: var(--oxblood);
  color: var(--oxblood);
}
.section-light .btn-outline:hover {
  background: rgba(124, 45, 43, 0.08);
}

.btn-cta {
  background: var(--oxblood);
  color: var(--cream);
  padding: 11px 22px;
}
.btn-cta:hover {
  background: var(--oxblood-light);
}

.btn-block {
  width: 100%;
}

.btn-large {
  padding: 18px 34px;
  font-size: 1.05rem;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 17, 13, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

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

.brand-mark {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.footer-brand .brand-mark {
  height: 42px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger,
.burger::before,
.burger::after {
  width: 20px;
  height: 2px;
  background: var(--gold-light);
  display: block;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger::before { top: -6px; }
.burger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .burger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .burger::before {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .burger::after {
  transform: translateY(-6px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-nav a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
}

.primary-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.primary-nav a:not(.btn):hover::after,
.primary-nav a[aria-current="page"]::after {
  width: 100%;
}

.primary-nav a[aria-current="page"] {
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: 78px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .primary-nav a:not(.btn) {
    font-size: 1.1rem;
  }

  .primary-nav .btn-cta {
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 100px 0 90px;
  background:
    radial-gradient(ellipse at top right, rgba(199, 154, 86, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--panel));
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-copy p.lede {
  font-size: 1.15rem;
  color: var(--cream);
  opacity: 0.9;
  max-width: 46ch;
}

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

.hero-badges {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
}

.hero-badge span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: linear-gradient(155deg, var(--panel-alt), var(--bg) 70%);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.06;
}

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

.placeholder-note {
  position: relative;
  text-align: center;
  padding: 24px;
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  max-width: 24ch;
}

.placeholder-note .placeholder-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    aspect-ratio: 3 / 4;
  }
}

/* ==========================================================================
   Cards & grids
   ========================================================================== */

.grid {
  display: grid;
  gap: 28px;
}

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

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.card .price {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.15rem;
}

.section-light .card {
  background: #fff;
  border-color: rgba(124, 45, 43, 0.15);
}

.section-light .card:hover {
  border-color: var(--oxblood);
}

.section-light .card .price {
  color: var(--oxblood);
}

/* ---------- section heading ---------- */
.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

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

.step {
  position: relative;
  padding-left: 8px;
}

.step .step-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 8px;
}

/* ---------- testimonials ---------- */
.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-quote {
  font-size: 0.98rem;
  line-height: 1.7;
  position: relative;
}

.testimonial-quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 0;
  display: block;
  margin-bottom: 6px;
}

.testimonial-name {
  font-family: var(--font-display);
  color: var(--gold-light);
}

/* ---------- pricing tables ---------- */
.pricing-block {
  margin-bottom: 64px;
}

.pricing-block:last-child {
  margin-bottom: 0;
}

.pricing-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 6px;
}

.section-light .pricing-block-head {
  border-color: rgba(124, 45, 43, 0.25);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table tr {
  border-bottom: 1px solid var(--line);
}

.section-light .pricing-table tr {
  border-color: rgba(124, 45, 43, 0.12);
}

.pricing-table td {
  padding: 16px 6px;
  vertical-align: top;
}

.pricing-table td.price-cell {
  text-align: right;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
  padding-left: 20px;
}

.section-light .pricing-table td.price-cell {
  color: var(--oxblood);
}

.pricing-table .item-note {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 2px;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid var(--oxblood);
  color: var(--oxblood-light);
  margin-left: 8px;
  vertical-align: middle;
}

.section-light .tag {
  color: var(--oxblood);
}

/* ---------- callout / deposit note ---------- */
.callout {
  background: var(--panel-alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--oxblood);
  border-radius: 4px;
  padding: 26px 28px;
}

.section-light .callout {
  background: #fff;
  border-color: rgba(124, 45, 43, 0.2);
  border-left-color: var(--oxblood);
}

/* ---------- contact / forms ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

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

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.section-light .form-field label {
  color: var(--oxblood);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.98rem;
}

.section-light .form-field input,
.section-light .form-field textarea {
  background: #fff;
  border-color: rgba(124, 45, 43, 0.25);
  color: var(--stone-ink);
}

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

.form-field input:invalid.touched,
.form-field textarea:invalid.touched {
  border-color: var(--oxblood-light);
}

.form-error {
  display: none;
  color: var(--oxblood-light);
  font-size: 0.8rem;
  margin-top: 6px;
}

.form-error.is-visible {
  display: block;
}

.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: rgba(124, 45, 43, 0.15);
  border: 1px solid var(--oxblood);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-list .info-item {
  display: flex;
  gap: 16px;
}

.info-list .info-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}

.section-light .info-list .info-icon {
  color: var(--oxblood);
}

.map-embed {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 24px;
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(0.3) sepia(0.15);
}

/* ---------- reservation channels ---------- */
.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.channel-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.channel-card .channel-icon {
  width: 46px;
  height: 46px;
  color: var(--gold);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--oxblood), #5c1f1d);
  border-radius: 8px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  margin-bottom: 8px;
}

.cta-band .btn-primary {
  background: var(--cream);
  color: var(--oxblood);
}
.cta-band .btn-primary:hover {
  background: #fff;
}

@media (max-width: 720px) {
  .cta-band {
    padding: 36px 26px;
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #100c09;
  border-top: 1px solid var(--line);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

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

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand .brand {
  margin-bottom: 4px;
}

.footer-brand p {
  opacity: 0.75;
  font-size: 0.92rem;
  max-width: 32ch;
}

.footer-col h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li {
  font-size: 0.92rem;
  color: rgba(232, 221, 200, 0.78);
}

.footer-col a {
  color: inherit;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.social-row a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-row svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
}

.social-row a:hover {
  border-color: var(--gold);
  background: rgba(199, 154, 86, 0.1);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  font-size: 0.82rem;
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- misc utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.page-hero {
  padding: 64px 0 56px;
  background: linear-gradient(180deg, var(--bg), var(--panel));
  text-align: center;
}

.page-hero .kicker {
  justify-content: center;
}

.page-hero h1 {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p.lede {
  max-width: 56ch;
  margin: 0 auto;
  opacity: 0.85;
  font-size: 1.08rem;
}
