:root {
      --primary: #ad2e00;
      --primary-dark: #7f2200;
      --text: #222;
      --text-light: #5c5c5c;
      --bg: #fff;
      --bg-soft: #f7f4f1;
      --bg-dark: #1f1f1f;
      --white: #fff;
      --border: rgba(0,0,0,.08);
      --shadow: 0 18px 40px rgba(0,0,0,.10);
      --radius: 18px;
      --container: 1200px;
      --header-height: 78px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: var(--primary);
      text-decoration: none;
    }

    a:hover {
      color: var(--primary-dark);
    }

    .container {
      width: min(calc(100% - 2rem), var(--container));
      margin: 0 auto;
    }

    .section {
      padding: 88px 0;
      scroll-margin-top: calc(var(--header-height) + 18px);
    }

    .section-soft {
      background: var(--bg-soft);
    }

    .section-dark {
      background: var(--bg-dark);
      color: var(--white);
    }

    .section-title {
      text-align: center;
      max-width: 860px;
      margin: 0 auto 48px;
    }

    .section-title .eyebrow {
      display: inline-block;
      font-size: .85rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 12px;
    }

    .section-title h2 {
      margin: 0 0 12px;
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.1;
    }

    .section-title p {
      margin: 0;
      color: inherit;
      opacity: .9;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }

    .nav {
      height: var(--header-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      font-weight: 700;
      color: var(--text);
      font-size: 1.05rem;
      line-height: 1.2;
    }

    .brand small {
      display: block;
      font-weight: 400;
      color: var(--text-light);
      font-size: .82rem;
    }

    .nav-toggle {
      display: none;
      border: 0;
      background: transparent;
      width: 46px;
      height: 46px;
      padding: 0;
      cursor: pointer;
    }

    .nav-toggle span,
    .nav-toggle::before,
    .nav-toggle::after {
      content: "";
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      margin: 6px auto;
      transition: .25s ease;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.1rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-links a {
      color: var(--text);
      font-size: .96rem;
      font-weight: 600;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary);
    }

    .hero {
      position: relative;
      min-height: calc(100vh - var(--header-height));
      display: flex;
      align-items: center;
      background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.50)),
        url('img/bg-hero.jpg') center/cover no-repeat;
      color: var(--white);
    }

    .hero-content {
      max-width: 760px;
      padding: 80px 0;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 5rem);
      line-height: .95;
      margin: 0 0 14px;
    }

    .hero h2 {
      font-size: clamp(1.2rem, 2vw, 1.9rem);
      font-weight: 400;
      margin: 0 0 18px;
    }

    .hero p {
      font-size: 1.1rem;
      max-width: 640px;
      margin: 0 0 28px;
      opacity: .96;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: .9rem 1.35rem;
      border-radius: 999px;
      border: 2px solid transparent;
      font-weight: 700;
      transition: .25s ease;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--white);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      color: var(--white);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,.7);
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,.12);
      color: var(--white);
    }

    .btn-light {
      background: var(--white);
      color: var(--primary);
    }

    .intro {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 32px;
      align-items: center;
    }

    .card,
    .service-card,
    .room-card,
    .season-card,
    .contact-card,
    .info-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .intro .card {
      padding: 36px;
    }

    .intro h3,
    .content-block h3 {
      margin-top: 0;
      font-size: 1.7rem;
      line-height: 1.2;
    }

    .intro p:last-child {
      margin-bottom: 0;
    }

    .intro-visual {
      min-height: 420px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background:
        linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
        url('img/hotel-touring.jpg') center/cover no-repeat;
    }

    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 24px;
    }

    .room-card {
      overflow: hidden;
    }

    .room-image {
      aspect-ratio: 4 / 3;
      background-size: cover;
      background-position: center;
    }

    .room-content {
      padding: 24px;
    }

    .room-content h3 {
      margin: 0 0 8px;
      font-size: 1.35rem;
    }

    .price {
      display: inline-block;
      margin-top: 8px;
      color: var(--primary);
      font-weight: 800;
      font-size: 1.2rem;
    }

    .rooms-note {
      text-align: center;
      margin-top: 28px;
      color: var(--text-light);
    }

    .equipment-list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .equipment-list li {
      padding: .6rem .9rem;
      background: #fff4ef;
      border-radius: 999px;
      color: var(--primary-dark);
      font-weight: 600;
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: stretch;
    }

    .image-panel {
      min-height: 380px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background-size: cover;
      background-position: center;
    }

    .content-panel {
      padding: 36px;
    }

    .content-panel h3 {
      margin-top: 0;
      font-size: 2rem;
    }

    .inline-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 28px;
    }

    .inline-gallery .gallery-item {
      aspect-ratio: 1 / 1;
      border-radius: 16px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
    }

    .seasons-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .season-card {
      overflow: hidden;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: none;
    }

    .season-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .season-content {
      padding: 24px;
    }

    .season-content h3 {
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.5rem;
    }

    .season-content ul {
      margin: 16px 0 0;
      padding-left: 20px;
    }

    .cta {
      position: relative;
      color: var(--white);
      text-align: center;
      background:
        linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.52)),
        url('img/aigoual.jpg') center/cover no-repeat;
    }

    .cta h2 {
      margin: 0 0 12px;
      font-size: clamp(2rem, 3.2vw, 3rem);
    }

    .cta p {
      max-width: 720px;
      margin: 0 auto 24px;
      font-size: 1.08rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      padding: 28px 24px;
      text-align: center;
    }

    .service-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      margin: 0 auto 16px;
      background: #fff4ef;
      color: var(--primary);
      display: grid;
      place-items: center;
      font-size: 1.5rem;
      font-weight: 800;
    }

    .service-card h3 {
      margin: 0 0 10px;
      font-size: 1.1rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 28px;
    }

    .contact-card {
      padding: 30px;
      color:#666;
    }

    .contact-card h3 {
      margin-top: 0;
      font-size: 1.5rem;
    }

    .contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .contact-list li {
      margin-bottom: 14px;
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .map-frame {
      border: 0;
      width: 100%;
      min-height: 420px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .footer {
      background: #111;
      color: rgba(255,255,255,.8);
      padding: 26px 0;
      font-size: .95rem;
    }

    .footer a {
      color: #fff;
    }

    .muted {
      color: var(--text-light);
    }

    .center {
      text-align: center;
    }

    @media (max-width: 1080px) {
      .rooms-grid,
      .services-grid,
      .seasons-grid,
      .inline-gallery {
        grid-template-columns: repeat(2, 1fr);
      }

      .intro,
      .split,
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      :root {
        --header-height: 72px;
      }

      .nav-toggle {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(255,255,255,.98);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        display: none;
      }

      .nav-links.open {
        display: flex;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .rooms-grid,
      .services-grid,
      .seasons-grid,
      .inline-gallery {
        grid-template-columns: 1fr;
      }

      .intro .card,
      .content-panel,
      .contact-card,
      .service-card,
      .room-content,
      .season-content {
        padding: 24px;
      }

      .section {
        padding: 72px 0;
      }
    }