 :root {
      --teal: #2BA89A;
      --teal-bright: #3CD9C1;
      --teal-dark: #1F8478;
      --teal-deep: #1A6B62;
      --navy: #1F4E5F;
      --navy-deep: #143845;
      --sea: #1A4A5A;
      --orange: #E87344;
      --orange-bright: #FF8347;
      --sand: #FBF6EC;
      --sand-warm: #F2EADB;
      --sand-deep: #E8DCC4;
      --ink: #0F2A35;
    }

    * { -webkit-font-smoothing: antialiased; box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Outfit', sans-serif;
      background: var(--sand);
      color: var(--ink);
      overflow-x: hidden;
      line-height: 1.5;
      font-weight: 400;
    }

    /* Subtle warm grain */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9997;
      opacity: 0.3;
      mix-blend-mode: multiply;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* Display utilities — Fraunces with optical sizing for marine vibe */
    .display {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      letter-spacing: -0.02em;
      line-height: 0.95;
    }
    .display-italic {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 500;
      font-variation-settings: "opsz" 144, "SOFT" 100;
      letter-spacing: -0.01em;
    }
    .handwrite { font-family: 'Caveat', cursive; font-weight: 700; }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 10px; }
    ::-webkit-scrollbar-track { background: var(--sand-warm); }
    ::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 10px; }

    /* === TICKER TOP === */
    .top-ticker {
      background: var(--teal);
      color: var(--ink);
      padding: 0.55rem 0;
      overflow: hidden;
      position: relative;
      z-index: 99;
    }
    .ticker-track {
      display: flex;
      gap: 2.5rem;
      animation: ticker 28s linear infinite;
      white-space: nowrap;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .ticker-track span { display: inline-flex; align-items: center; gap: 2.5rem; }
    .ticker-track i { font-size: 1rem; }

    /* === NAVBAR === */
    .top-nav {
      position: fixed;
      top: 0px;
      left: 0; right: 0;
      z-index: 100;
      padding: 1.2rem 0;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .top-nav.scrolled {
      top: 0;
      padding: 0.6rem 0;
      background: rgba(251, 246, 236, 0.92);
      backdrop-filter: blur(20px) saturate(180%);
      box-shadow: 0 4px 30px rgba(15, 42, 53, 0.06);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    .logo-block {
      display: flex;
      align-items: center;
      gap: 1.1rem;
      text-decoration: none;
      color: inherit;
    }
    .logo-shield {
      width: 96px;
      height: 96px;
      background: white;
      border-radius: 100%;
      padding: 2px;
      box-shadow: 0 15px 40px rgba(15, 42, 53, 0.18), 0 4px 12px rgba(15, 42, 53, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: hidden;
    }
    .logo-shield img {
      width: 100%; height: 100%;
      object-fit: contain;
      transition: transform 0.6s ease;
    }
    .logo-shield:hover img { transform: scale(1.06) rotate(-2deg); }
    .top-nav.scrolled .logo-shield {
      width: 60px; height: 60px;
      border-radius: 100%;
      padding: 5px;
    }
    .logo-text {
      display: flex;
      flex-direction: column;
    }
    .logo-text .name {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: 1.7rem;
      letter-spacing: -0.025em;
      line-height: 1;
      color: white;
      transition: color 0.3s ease;
    }
    .top-nav.scrolled .logo-text .name { color: var(--ink); font-size: 1.4rem; }
    .logo-text .tagline {
      font-family: 'Outfit', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--teal-bright);
      font-weight: 600;
      margin-top: 4px;
      transition: color 0.3s ease;
    }
    .top-nav.scrolled .logo-text .tagline { color: var(--teal); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      list-style: none;
    }
    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      padding: 0.7rem 1.1rem;
      border-radius: 50px;
      transition: all 0.3s ease;
    }
    .nav-links a:hover { background: rgba(255,255,255,0.15); }
    .top-nav.scrolled .nav-links a { color: var(--ink); }
    .top-nav.scrolled .nav-links a:hover { background: rgba(15,42,53,0.06); }

    .btn-pill {
      background: var(--orange) !important;
      color: var(--ink) !important;
      padding: 0.75rem 1.4rem !important;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700 !important;
    }
    .btn-pill:hover {
      background: var(--ink) !important;
      color: var(--sand) !important;
      transform: translateY(-2px);
    }

    .nav-toggle {
      display: none;
      background: white;
      color: var(--ink);
      border: none;
      width: 50px; height: 50px;
      border-radius: 50%;
      font-size: 1.4rem;
    }
    @media (max-width: 991px) {
      .top-nav { top: 32px; }
      .logo-text { display: none; }
      .nav-links:not(.open) { display: none; }
      .nav-links.open {
        position: fixed;
        top: 130px;
        left: 1rem; right: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
        background: white;
        padding: 1.5rem;
        border-radius: 25px;
        box-shadow: 0 20px 50px rgba(15,42,53,0.18);
      }
      .nav-links.open a { color: var(--ink); }
      .nav-toggle { display: flex; align-items: center; justify-content: center; }
      .logo-shield { width: 70px; height: 70px; border-radius: 100%; padding: 6px; }
    }

    /* === HERO === */
    .hero {
      position: relative;
      min-height: 100vh;
      padding: 11rem 0 5rem;
      overflow: hidden;
      background: var(--sea);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.8s ease;
      background-size: cover;
      background-position: center;
      animation: heroZoom 16s ease-in-out infinite alternate;
    }
    .hero-bg .slide.active { opacity: 1; }
    @keyframes heroZoom {
      from { transform: scale(1.04); }
      to { transform: scale(1.14); }
    }
    /* Light overlay - lets the images breathe */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(20,56,69,0.25) 0%, rgba(20,56,69,0.15) 40%, rgba(20,56,69,0.55) 100%),
        linear-gradient(90deg, rgba(20,56,69,0.45) 0%, transparent 50%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-badges {
      display: flex;
      gap: 0.6rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 0.9rem 0.45rem 0.5rem;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: white;
      text-transform: uppercase;
    }
    .hero-badge .live-dot {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--orange);
      position: relative;
    }
    .hero-badge .live-dot::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: var(--orange);
      animation: pulse 2s ease-out infinite;
    }
    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.7; }
      100% { transform: scale(2.2); opacity: 0; }
    }
    .hero-badge.teal {
      background: rgba(43,168,154,0.3);
      border-color: rgba(60,217,193,0.5);
      color: var(--teal-bright);
    }
    .contacts a{
		font-size:30px;
		color:#FFF !important;
		text-decoration:none
		
	}
    /* Hero title — Fraunces marine */
    .hero-title {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: clamp(3.5rem, 9vw, 8rem);
      line-height: 1.25;
      letter-spacing: -0.035em;
      color: white;
      margin-bottom: 0;
      text-shadow: 0 4px 40px rgba(0,0,0,0.25);
    }
    .hero-title .line {
      display: block;
      overflow: hidden;
    }
    .hero-title .line span {
      display: inline-block;
      transform: translateY(110%);
      animation: lineUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .hero-title .line:nth-child(1) span { animation-delay: 0.2s; }
    .hero-title .line:nth-child(2) span { animation-delay: 0.4s; }
    .hero-title .line:nth-child(3) span { animation-delay: 0.6s; }
    @keyframes lineUp { to { transform: translateY(0); } }

    .hero-title .italic-accent {
      font-style: italic;
      font-weight: 500;
      font-variation-settings: "opsz" 144, "SOFT" 100;
      color: var(--teal-bright);
      letter-spacing: -0.015em;
    }
    .hero-title .handwrite-accent {
      font-family: 'Caveat', cursive;
      color: var(--orange);
      font-weight: 700;
      letter-spacing: 0.005em;
      display: inline-block;
      transform: rotate(-3deg);
    }

    .hero-bottom {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 2rem;
      margin-top: 4rem;
      align-items: end;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.2);
    }
    @media (max-width: 768px) {
      .hero-bottom { grid-template-columns: 1fr; gap: 1.5rem; }
    }
    .hero-lead {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.9);
      max-width: 480px;
      line-height: 1.55;
    }
    .hero-stat {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .hero-stat .num {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: 2.8rem;
      line-height: 1;
      letter-spacing: -0.03em;
      color: white;
    }
    .hero-stat .num em {
      font-family: 'Caveat', cursive;
      font-style: normal;
      color: var(--orange);
      font-weight: 700;
    }
    .hero-stat .lbl {
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      font-weight: 600;
    }

    .hero-cta-row {
      display: flex;
      gap: 0.8rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
    }
    .btn-mega {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.95rem 1.2rem 0.95rem 1.7rem;
      border-radius: 60px;
      font-weight: 600;
      font-size: 0.98rem;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      border: none;
      letter-spacing: -0.01em;
    }
    .btn-mega.primary {
      background: var(--orange);
      color: var(--ink);
      font-weight: 700;
    }
    .btn-mega.primary:hover {
      background: white;
      transform: translateY(-3px);
    }
    .btn-mega.ghost {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(10px);
      color: white;
      border: 1px solid rgba(255,255,255,0.3);
      padding: 0.95rem 1.6rem;
    }
    .btn-mega.ghost:hover {
      background: white;
      color: var(--ink);
    }
    .btn-mega .arr {
      width: 30px; height: 30px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }
    .btn-mega:hover .arr { transform: rotate(-45deg); }

    /* Slide indicators */
    .slide-indicators {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      z-index: 3;
      display: flex;
      gap: 0.5rem;
    }
    .slide-indicators button {
      width: 35px; height: 4px;
      border-radius: 4px;
      background: rgba(255,255,255,0.4);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .slide-indicators button.active {
      background: var(--orange);
      width: 60px;
    }
    @media (max-width: 768px) { .slide-indicators { left: 1rem; bottom: 1rem; } }

    .hero-scroll-tag {
      position: absolute;
      bottom: 2rem;
      right: 2rem;
      z-index: 3;
      font-size: 0.72rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      writing-mode: vertical-rl;
      display: flex;
      align-items: center;
      gap: 1rem;
      font-weight: 600;
    }
    .hero-scroll-tag::after {
      content: '';
      width: 1px;
      height: 60px;
      background: var(--teal-bright);
      animation: scrollLine 2s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0%, 100% { transform: scaleY(0.2); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
    }
    @media (max-width: 768px) { .hero-scroll-tag { display: none; } }

    /* === MEGA MARQUEE — clearer === */
    .mega-marquee {
      background: var(--navy-deep);
      color: var(--sand);
      padding: 1.4rem 0;
      overflow: hidden;
      border-top: 2px solid var(--teal);
      border-bottom: 2px solid var(--teal);
    }
    .mega-marquee-track {
      display: flex;
      gap: 2.5rem;
      animation: ticker 32s linear infinite;
      white-space: nowrap;
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 80;
      font-size: 2rem;
      letter-spacing: -0.025em;
      line-height: 1;
    }
    .mega-marquee-track span {
      display: inline-flex;
      align-items: center;
      gap: 2.5rem;
    }
    .mega-marquee-track .star {
      color: var(--teal-bright);
      font-size: 1.4rem;
      animation: spin 10s linear infinite;
      display: inline-block;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .mega-marquee-track em {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-variation-settings: "opsz" 144, "SOFT" 100;
      color: var(--orange);
      font-size: 2.2rem;
      font-weight: 500;
    }

    /* === SECTIONS === */
    section { padding: 7rem 0; position: relative; }
    @media (max-width: 768px) { section { padding: 5rem 0; } }

    .sec-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 0.9rem;
      background: rgba(43,168,154,0.15);
      color: var(--teal-dark);
      border: 1px solid rgba(43,168,154,0.3);
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .sec-tag::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--teal);
    }

    .sec-title {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: clamp(2.5rem, 5.5vw, 5rem);
      line-height: 0.98;
      letter-spacing: -0.03em;
      color: var(--navy-deep);
      margin-bottom: 1.5rem;
    }
    .sec-title em {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 500;
      font-variation-settings: "opsz" 144, "SOFT" 100;
      color: var(--orange);
      letter-spacing: -0.01em;
    }
    .sec-title .teal { color: var(--teal); font-style: italic; font-weight: 500; }
    .sec-title .handwrite-accent {
      font-family: 'Caveat', cursive;
      color: var(--orange);
      font-weight: 700;
      letter-spacing: 0.005em;
    }

    .sec-lead {
      font-size: 1.05rem;
      line-height: 1.6;
      color: rgba(15,42,53,0.7);
      max-width: 540px;
    }

    /* === ABOUT === */
    #about {
      background: var(--sand);
      position: relative;
    }
    .about-layout {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 4rem;
      align-items: stretch;
    }
    @media (max-width: 991px) {
      .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    }

    .about-visual {
      position: relative;
      aspect-ratio: 4/5;
      border-radius: 30px;
      overflow: hidden;
      transform: rotate(-1.5deg);
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .about-visual:hover { transform: rotate(0); }
    .about-visual img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }
    .about-visual:hover img { transform: scale(1.06); }

    .about-sticker {
      position: absolute;
      top: -25px;
      right: -25px;
      width: 140px; height: 140px;
      border-radius: 50%;
      background: var(--teal);
      color: white;
      animation: spin 18s linear infinite;
      z-index: 3;
      box-shadow: 0 18px 40px rgba(43,168,154,0.45);
    }
    .about-sticker svg { width: 100%; height: 100%; }
    .about-sticker .center {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      animation: spin 18s linear infinite reverse;
    }

    .about-text h2 {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: clamp(2.2rem, 4.5vw, 3.8rem);
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--navy-deep);
      margin: 1rem 0 2rem;
    }
    .about-text h2 em {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 500;
      font-variation-settings: "opsz" 144, "SOFT" 100;
      color: var(--teal);
      letter-spacing: -0.01em;
    }

    .feature-list {
      list-style: none;
      margin-top: 2.5rem;
    }
    .feature-list li {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 1.5rem;
      align-items: center;
      padding: 1.4rem 0;
      border-top: 1px solid rgba(15,42,53,0.1);
      transition: padding 0.3s ease;
      cursor: pointer;
    }
    .feature-list li:hover { padding-left: 0.6rem; }
    .feature-list li:last-child { border-bottom: 1px solid rgba(15,42,53,0.1); }
    .feature-num {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-style: italic;
      font-variation-settings: "opsz" 144;
      font-size: 1.4rem;
      color: var(--teal);
      letter-spacing: -0.01em;
    }
    .feature-content strong {
      display: block;
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: 1.3rem;
      letter-spacing: -0.02em;
      color: var(--navy-deep);
      margin-bottom: 0.2rem;
    }
    .feature-content span {
      font-size: 0.92rem;
      color: rgba(15,42,53,0.6);
    }
    .feature-arrow {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--sand-deep);
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .feature-list li:hover .feature-arrow {
      background: var(--teal);
      color: white;
      transform: rotate(-45deg);
    }

    /* === PRESTATIONS — V1 STYLE: light cards, simple icons === */
    #prestations {
      background: linear-gradient(180deg, var(--sand) 0%, var(--sand-warm) 100%);
      position: relative;
    }
    #prestations::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(43,168,154,0.4), transparent);
    }

    .formules-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 4rem;
      position: relative;
      z-index: 2;
    }
	
	ol, ul {
    padding-left: 0px;
		}
	
	.formules-grid-family {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 4rem;
      position: relative;
      z-index: 2;
    }
    @media (max-width: 991px) {
      .formules-grid { grid-template-columns: 1fr; }
    }

    /* V1-style card */
    .price-card {
      background: white;
      border-radius: 30px;
      padding: 2.5rem 2rem;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
      display: flex;
      flex-direction: column;
      box-shadow: 0 15px 40px rgba(15,42,53,0.07);
    }
    .price-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--teal), var(--orange));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
    }
    .price-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(15,42,53,0.15);
      border-color: rgba(43,168,154,0.2);
    }
    .price-card:hover::before { transform: scaleX(1); }

    .price-card.featured {
      background: linear-gradient(160deg, var(--navy-deep), var(--sea));
      color: white;
      transform: scale(1.03);
    }
    .price-card.featured::before { transform: scaleX(1); }
    .price-card.featured:hover {
      transform: translateY(-10px) scale(1.03);
    }

    /* V1 ICONS — simple rounded square with gradient teal */
    .card-icon {
      width: 70px;
      height: 70px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(43,168,154,0.15), rgba(43,168,154,0.05));
      color: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }
    .price-card.featured .card-icon {
      background: linear-gradient(135deg, var(--orange), var(--orange-bright));
      color: white;
    }

    .card-tag {
      display: inline-block;
      padding: 0.3rem 0.8rem;
      background: rgba(43,168,154,0.12);
      color: var(--teal-dark);
      border-radius: 50px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .price-card.featured .card-tag {
      background: rgba(232,115,68,0.3);
      color: var(--orange-bright);
    }

    .price-card h3 {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: 1.7rem;
      letter-spacing: -0.025em;
      line-height: 1.05;
      margin-bottom: 0.5rem;
      color: var(--navy-deep);
    }
    .price-card.featured h3 { color: white; }

    .price-sub {
      font-size: 0.9rem;
      color: rgba(15,42,53,0.6);
      margin-bottom: 0;
    }
    .price-card.featured .price-sub { color: rgba(255,255,255,0.7); }

    .price-amount {
      display: flex;
      align-items: baseline;
      gap: 0.3rem;
      margin: 1.5rem 0;
      padding: 1.5rem 0;
      border-top: 1px dashed rgba(43,168,154,0.2);
      border-bottom: 1px dashed rgba(43,168,154,0.2);
    }
    .price-card.featured .price-amount {
      border-color: rgba(255,255,255,0.2);
    }
    .price-amount .num {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-variation-settings: "opsz" 144;
      font-size: 3.2rem;
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--orange);
    }
    .price-card.featured .price-amount .num { color: var(--orange-bright); }
    .price-amount .currency {
      font-family: 'Fraunces', serif;
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--orange);
    }
    .price-card.featured .price-amount .currency { color: var(--orange-bright); }
    .price-amount .duration {
      margin-left: auto;
      font-size: 0.85rem;
      font-weight: 500;
      color: rgba(15,42,53,0.55);
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .price-card.featured .price-amount .duration { color: rgba(255,255,255,0.6); }

    .price-features {
      list-style: none;
      margin: 0 0 2rem;
      flex: 1;
    }
    .price-features li {
      padding: 0.55rem 0;
      font-size: 0.95rem;
      color: rgba(15,42,53,0.75);
      display: flex;
      gap: 0.7rem;
      line-height: 1.5;
    }
    .price-card.featured .price-features li { color: rgba(255,255,255,0.9); }
    .price-features li i {
      color: var(--teal);
      flex-shrink: 0;
      margin-top: 4px;
      font-size: 1rem;
    }
    .price-card.featured .price-features li i { color: var(--teal-bright); }

    .btn-card {
      width: 100%;
      border-radius: 50px;
      padding: 0.9rem;
      font-weight: 700;
      background: var(--teal);
      color: white;
      border: none;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }
    .btn-card:hover {
      background: var(--teal-dark);
      transform: translateY(-2px);
      color: white;
    }
    .price-card.featured .btn-card {
      background: var(--orange);
    }
    .price-card.featured .btn-card:hover {
      background: var(--orange-bright);
    }

    /* SURVEILLE */
    .surveille {
      margin-top: 3.5rem;
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
      color: white;
      border-radius: 35px;
      padding: 3rem;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 3rem;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    @media (max-width: 768px) {
      .surveille { grid-template-columns: 1fr; padding: 2rem; }
    }
    .surveille::before {
      content: '';
      position: absolute;
      top: -50%; right: -10%;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
      border-radius: 50%;
    }
    .surveille h3 {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: 2.6rem;
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 1rem;
    }
    .surveille h3 em {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 500;
      font-variation-settings: "opsz" 144, "SOFT" 100;
    }
    .surveille p {
      color: rgba(255,255,255,0.92);
      max-width: 500px;
    }
    .surveille-pills {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      justify-content: flex-end;
      position: relative;
      z-index: 2;
    }
    @media (max-width: 768px) { .surveille-pills { justify-content: flex-start; } }
    .pill {
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50px;
      padding: 0.7rem 1.2rem;
      color: white;
      font-weight: 600;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    /* === ACCESS === */
    #acces {
      background: var(--sand);
      padding: 7rem 0;
    }
    .access-card {
      background: white;
      border-radius: 50px;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(15, 42, 53, 0.12);
      display: grid;
      grid-template-columns: 5fr 6fr;
      position: relative;
    }
    @media (max-width: 991px) {
      .access-card { grid-template-columns: 1fr; border-radius: 35px; }
    }

    .access-image-side {
      position: relative;
      min-height: 580px;
      background-size: cover;
      background-position: center;
    }
    @media (max-width: 991px) {
      .access-image-side { min-height: 360px; }
    }
    .access-image-side::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 60%, rgba(15,42,53,0.3));
    }
    .access-pin {
      position: absolute;
      top: 2rem; left: 2rem;
      background: white;
      border-radius: 50px;
      padding: 0.6rem 1.1rem 0.6rem 0.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 700;
      box-shadow: 0 10px 30px rgba(0,0,0,0.18);
      z-index: 2;
      letter-spacing: -0.01em;
    }
    .access-pin .dot {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--teal);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
    }

    .access-content-side {
      padding: 4rem 3.5rem;
    }
    @media (max-width: 768px) {
      .access-content-side { padding: 2.5rem 2rem; }
    }
    .access-content-side h2 {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: clamp(2rem, 4vw, 3.2rem);
      letter-spacing: -0.03em;
      line-height: 1;
      color: var(--navy-deep);
      margin-bottom: 1rem;
    }
    .access-content-side h2 em {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 500;
      font-variation-settings: "opsz" 144, "SOFT" 100;
      color: var(--teal);
    }
    .access-content-side > p {
      color: rgba(15,42,53,0.65);
      margin-bottom: 2rem;
    }

    .info-stack {
      display: grid;
      gap: 0.7rem;
    }
    .info-row {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1.2rem;
      align-items: center;
      padding: 1.2rem;
      background: var(--sand);
      border-radius: 20px;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
    }
    .info-row:hover {
      background: var(--teal);
      color: white;
      transform: translateX(8px);
    }
    .info-row:hover .info-icon {
      background: white;
      color: var(--teal);
    }
    .info-row:hover .info-text strong { color: white; }
    .info-row:hover .info-text span { color: rgba(255,255,255,0.85); }
    .info-icon {
      width: 50px; height: 50px;
      border-radius: 14px;
      background: var(--teal);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }
    .info-text strong {
      display: block;
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: 1.05rem;
      letter-spacing: -0.015em;
      color: var(--navy-deep);
      transition: color 0.3s ease;
    }
    .info-text span {
      font-size: 0.88rem;
      color: rgba(15,42,53,0.6);
      transition: color 0.3s ease;
    }

    /* === CONTACT (no form) — TEAL bg === */
    #contact {
      background: var(--teal);
      color: var(--ink);
      padding: 8rem 0;
      position: relative;
      overflow: hidden;
    }
    #contact::before {
      content: '';
      position: absolute;
      top: -20%; right: -10%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
      border-radius: 50%;
    }
    #contact::after {
      content: '';
      position: absolute;
      bottom: -30%; left: -10%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(15,42,53,0.15), transparent 70%);
      border-radius: 50%;
    }
    #contact .sec-tag {
      background: var(--ink);
      color: var(--teal-bright);
      border-color: var(--ink);
    }
    #contact .sec-tag::before { background: var(--teal-bright); }
    .contact-mega {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: clamp(3rem, 8vw, 7rem);
      line-height: 1;
      letter-spacing: -0.035em;
      color: var(--ink);
      margin-bottom: 3rem;
      position: relative;
      z-index: 2;
    }
    .contact-mega em {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 500;
      font-variation-settings: "opsz" 144, "SOFT" 100;
      color: var(--sand);
      letter-spacing: -0.015em;
    }
    .contact-mega .handwrite-accent {
      font-family: 'Caveat', cursive;
      color: var(--orange);
      font-weight: 700;
      letter-spacing: 0.005em;
      display: inline-block;
      transform: rotate(-2deg);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
      margin-top: 2rem;
      position: relative;
      z-index: 2;
    }
    @media (max-width: 768px) {
      .contact-grid { grid-template-columns: 1fr; }
    }

    .contact-card {
      background: white;
      color: var(--ink);
      border-radius: 30px;
      padding: 2.2rem;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      min-height: 240px;
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
    }
    .contact-card:hover {
      background: var(--ink);
      color: var(--sand);
      transform: translateY(-8px);
      border-color: var(--teal-bright);
    }
    .contact-card-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .contact-icon-c {
      width: 56px; height: 56px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(43,168,154,0.15), rgba(43,168,154,0.05));
      color: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }
    .contact-card:hover .contact-icon-c {
      background: var(--teal);
      color: white;
    }
    .contact-card-arr {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--sand);
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .contact-card:hover .contact-card-arr {
      background: var(--orange);
      color: var(--ink);
      transform: rotate(-45deg);
    }
    .contact-card-label {
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 700;
      color: rgba(15,42,53,0.5);
      margin-bottom: 0.4rem;
    }
    .contact-card:hover .contact-card-label { color: rgba(244,240,232,0.55); }
    .contact-card-value {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: 1.5rem;
      letter-spacing: -0.025em;
      line-height: 1;
      margin-top: auto;
      color: var(--navy-deep);
      transition: color 0.3s ease;
    }
    .contact-card:hover .contact-card-value { color: var(--sand); }
    .contact-card-value.email {
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      word-break: break-all;
    }
    .contact-card-value.handwrite {
      font-family: 'Caveat', cursive;
      font-size: 2.2rem;
      color: var(--teal);
    }
    .contact-card:hover .contact-card-value.handwrite { color: var(--teal-bright); }

    .contact-hours {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 2px solid var(--ink);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      position: relative;
      z-index: 2;
    }
    .contact-hours-text {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: 1.05rem;
      letter-spacing: -0.02em;
      color: var(--ink);
    }
    .contact-hours-detail {
      font-family: 'Caveat', cursive;
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--ink);
      transform: rotate(-1deg);
      display: inline-block;
    }

    /* === FOOTER — sea blue not pure black === */
    footer {
      background: var(--navy-deep);
      color: var(--sand);
      padding: 5rem 0 2rem;
      position: relative;
      overflow: hidden;
    }
    .footer-mega {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: clamp(4rem, 14vw, 13rem);
      letter-spacing: -0.045em;
      line-height: 0.85;
      color: var(--sand);
      margin-bottom: 3rem;
    }
    .footer-mega em {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 500;
      font-variation-settings: "opsz" 144, "SOFT" 100;
      color: var(--teal-bright);
      letter-spacing: -0.015em;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-top: 3rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    @media (max-width: 768px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    .footer-brand-block {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
    }
    .footer-logo-shield {
      width: 90px; height: 90px;
      background: white;
      border-radius: 100%;
      padding: 8px;
      flex-shrink: 0;
    }
    .footer-logo-shield img {
      width: 100%; height: 100%;
      object-fit: contain;
    }
    .footer-brand-block p {
      font-size: 0.92rem;
      line-height: 1.55;
      color: rgba(244,240,232,0.7);
    }
    footer h5 {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: 0.95rem;
      letter-spacing: -0.01em;
      color: var(--teal-bright);
      margin-bottom: 1.2rem;
      text-transform: uppercase;
      font-style: italic;
    }
    footer a {
      color: rgba(244,240,232,0.85);
      text-decoration: none;
      display: block;
      padding: 0.4rem 0;
      transition: all 0.2s ease;
      font-size: 0.95rem;
    }
    footer a:hover { color: var(--teal-bright); transform: translateX(4px); }

    .socials {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
    }
    .socials a {
      width: 42px; height: 42px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
      display: flex !important;
      align-items: center;
      justify-content: center;
      padding: 0 !important;
      transform: none !important;
    }
    .socials a:hover {
      background: var(--teal);
      color: white;
    }

    .footer-bottom {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      color: rgba(244,240,232,0.55);
      flex-wrap: wrap;
      gap: 1rem;
    }

    /* Reveals */
    [data-fade] {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    [data-fade].in { opacity: 1; transform: none; }

    @media (max-width: 991px) {
      .price-card.featured { transform: scale(1); }
      .price-card.featured:hover { transform: translateY(-10px); }
    }