    /* ── Reset & Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --orange:   #F38E32;
      --orange-d: #d9720f;
      --orange-l: #f9a95a;
      --bg:       #fff;
      --bg-2:     #faf8f5;
      --bg-3:     #f2ede6;
      --dark:     #1a1008;
      --dark-2:   #2b1c0d;
      --text:     #1a1008;
      --muted:    #7a6a58;
      --border:   rgba(243,142,50,.15);
      --fh: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
      --fb: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--fb);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── Utility ── */
    .tag {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--orange);
    }
    .tag::before {
      content: '';
      display: block;
      width: 1.6rem;
      height: 2px;
      background: var(--orange);
      flex-shrink: 0;
    }

    .section-title {
      font-family: var(--fh);
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: .92;
      letter-spacing: -.01em;
      color: var(--dark);
    }

    .btn-primary {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-weight: 800;
      font-size: .82rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .9rem 2rem;
      text-decoration: none;
      border-radius: 2px;
      transition: background .18s, transform .12s;
    }
    .btn-primary:hover { background: var(--orange-d); transform: translateY(-2px); }

    .btn-ghost {
      display: inline-block;
      border: 1.5px solid rgba(26,16,8,.5);
      color: var(--dark);
      font-weight: 700;
      font-size: .82rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .9rem 2rem;
      text-decoration: none;
      border-radius: 2px;
      transition: border-color .18s, color .18s;
    }
    .btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

    /* ── NAV ── */
    .site-nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 64px;
      background: var(--dark);
      border-bottom: 3px solid var(--orange);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: .5rem;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-logo svg { flex-shrink: 0; }
    .nav-logo-wordmark {
      font-family: var(--fh);
      font-size: 1.55rem;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: #fff;
      line-height: 1;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,.65);
      text-decoration: none;
      font-family: var(--fh);
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      transition: color .18s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links .cta {
      background: var(--orange);
      color: #fff !important;
      padding: .4rem 1.3rem;
      border-radius: 2px;
      font-weight: 800;
      letter-spacing: .12em;
    }
    .nav-links .cta:hover { background: var(--orange-d) !important; }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
      outline: none;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      transition: all .2s;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        inset: 64px 0 0 0;
        background: var(--dark);
        padding: 2rem 5%;
        gap: 1.5rem;
        align-items: flex-start;
        z-index: 199;
        overflow-y: auto;
      }
      .nav-links.open { display: flex; }
      .nav-links.open a { font-size: 1.1rem; }
      .nav-hamburger { display: flex; }
    }

    /* ── HERO ── */
    #hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 7rem 5% 5rem;
      position: relative;
      overflow: hidden;
      background: linear-gradient(to right, #efb840 0%, #e39348 50%, #d65c3d 100%);
    }

    .hero-chain-bg {
      position: absolute;
      inset: 0;
      background-image: url('../img/logo_transparent.png');
      background-repeat: no-repeat;
      background-position: 88% 50%;
      background-size: 520px;
      pointer-events: none;
    }

    .hero-gradient-stripe { display: none; }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 820px;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: .6rem;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.85);
      margin-bottom: 1.6rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 2.4rem;
      height: 2px;
      background: rgba(255,255,255,.85);
    }

    h1.hero-headline {
      font-family: var(--fh);
      font-size: clamp(4rem, 9.5vw, 8.5rem);
      font-weight: 900;
      line-height: .88;
      letter-spacing: -.02em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 1.8rem;
    }
    h1.hero-headline em {
      font-style: normal;
      color: var(--dark);
      display: block;
    }

    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,.8);
      max-width: 480px;
      margin-bottom: 2.6rem;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    /* hero buttons override for orange bg */
    #hero .btn-primary {
      background: #fff;
      color: var(--orange-d);
    }
    #hero .btn-primary:hover { background: rgba(255,255,255,.88); }
    #hero .btn-ghost {
      border-color: rgba(255,255,255,.6);
      color: #fff;
    }
    #hero .btn-ghost:hover { border-color: #fff; color: #fff; }

    .hero-stats {
      position: relative;
      z-index: 2;
      display: flex;
      gap: 0;
      margin-top: 5rem;
      border: 1px solid rgba(255,255,255,.25);
      background: rgba(0,0,0,.15);
      backdrop-filter: blur(8px);
      width: fit-content;
    }
    .stat-item {
      padding: 1.2rem 2.6rem;
      border-right: 1px solid rgba(255,255,255,.15);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: var(--fh);
      font-size: 2.2rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }
    .stat-label {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.65);
      margin-top: .25rem;
    }

    /* ── SERVICES ── */
    #services {
      padding: 7rem 5%;
      background: var(--bg);
    }

    .services-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 3.5rem;
    }

    .services-desc {
      color: var(--muted);
      max-width: 380px;
      font-size: .95rem;
      line-height: 1.75;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--border);
      gap: 0;
    }

    .service-card {
      padding: 2.6rem 2rem;
      border-right: 1px solid var(--border);
      background: var(--bg);
      transition: background .2s;
      position: relative;
      overflow: hidden;
    }
    .service-card:last-child { border-right: none; }
    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 3px;
      background: var(--orange);
      transition: width .3s ease;
    }
    .service-card:hover { background: var(--bg-2); }
    .service-card:hover::after { width: 100%; }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 1.4rem;
      display: block;
    }

    .service-card h3 {
      font-family: var(--fh);
      font-size: 1.3rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .04em;
      margin-bottom: .7rem;
      color: var(--dark);
    }

    .service-card p {
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.7;
    }

    .service-price {
      margin-top: 1.6rem;
      font-family: var(--fh);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--orange);
    }

    /* ── LOCATIONS ── */
    #locations {
      padding: 7rem 5%;
      background: var(--dark);
      color: #fff;
    }

    #locations .tag { color: var(--orange-l); }
    #locations .tag::before { background: var(--orange-l); }
    #locations .section-title { color: #fff; margin-top: .6rem; margin-bottom: 3.5rem; }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }

    .location-card {
      background: var(--dark-2);
      border: 1px solid rgba(243,142,50,.15);
      padding: 2rem 1.6rem;
      position: relative;
      transition: border-color .2s;
    }
    .location-card:hover { border-color: rgba(243,142,50,.5); }

    .location-card.mobile-card {
      border-color: rgba(243,142,50,.3);
      background: linear-gradient(135deg, #2b1c0d 0%, #3d2610 100%);
    }

    .location-badge {
      display: inline-block;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--orange);
      border: 1px solid rgba(243,142,50,.35);
      padding: .25rem .6rem;
      border-radius: 2px;
      margin-bottom: 1.2rem;
    }
    .location-card.mobile-card .location-badge {
      background: rgba(243,142,50,.15);
    }

    .location-card h3 {
      font-family: var(--fh);
      font-size: 1.4rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .04em;
      color: #fff;
      margin-bottom: 1.2rem;
    }

    .location-detail {
      display: flex;
      gap: .6rem;
      margin-bottom: .7rem;
      align-items: flex-start;
    }
    .location-detail .icon {
      font-size: .95rem;
      margin-top: .1rem;
      flex-shrink: 0;
    }
    .location-detail p {
      color: rgba(255,255,255,.6);
      font-size: .85rem;
      line-height: 1.55;
    }
    .location-detail a {
      color: rgba(255,255,255,.8);
      text-decoration: none;
      font-weight: 600;
      transition: color .15s;
    }
    .location-detail a:hover { color: var(--orange); }

    .location-hours {
      margin-top: 1.4rem;
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 1.2rem;
    }
    .location-hours h4 {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: .6rem;
    }
    .hours-row {
      display: flex;
      justify-content: space-between;
      font-size: .8rem;
      padding: .25rem 0;
      border-bottom: 1px solid rgba(255,255,255,.05);
      color: rgba(255,255,255,.55);
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-row span:last-child { color: rgba(255,255,255,.85); font-weight: 600; }

    .mobile-coverage {
      margin-top: 1.4rem;
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 1.2rem;
    }
    .mobile-coverage h4 {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: .6rem;
    }
    .mobile-coverage p {
      font-size: .83rem;
      color: rgba(255,255,255,.6);
      line-height: 1.6;
    }

    /* ── ABOUT ── */
    #about {
      padding: 7rem 5%;
      background: var(--bg-2);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7rem;
      align-items: center;
    }

    .about-visual { position: relative; }

    .about-photo {
      aspect-ratio: 4/5;
      background: linear-gradient(135deg, #f9d0a0 0%, #f38e32 100%);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .about-photo img {
      width: 55%;
      opacity: .35;
    }

    .about-badge {
      position: absolute;
      bottom: -1.8rem;
      right: -1.8rem;
      background: var(--orange);
      color: #fff;
      padding: 1.6rem 1.4rem;
      text-align: center;
      z-index: 2;
    }
    .about-badge .num {
      font-family: var(--fh);
      font-size: 2.6rem;
      font-weight: 900;
      line-height: 1;
      display: block;
    }
    .about-badge .lbl {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      line-height: 1.3;
      margin-top: .2rem;
    }

    .about-content .tag { margin-bottom: .8rem; }
    .about-content .section-title { margin-bottom: 1.8rem; }

    .about-text {
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .about-list {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: .6rem;
    }
    .about-list li {
      list-style: none;
      display: flex;
      align-items: center;
      gap: .8rem;
      font-size: .9rem;
      font-weight: 600;
      color: var(--text);
    }
    .about-list li::before {
      content: '✓';
      color: var(--orange);
      font-weight: 900;
      font-size: .95rem;
      flex-shrink: 0;
    }

    /* ── SKI SERVICE ── */
    #ski {
      padding: 7rem 5%;
      background: var(--dark);
      color: #fff;
    }

    #ski .tag { color: var(--orange-l); }
    #ski .tag::before { background: var(--orange-l); }
    #ski .section-title { color: #fff; margin-top: .6rem; margin-bottom: 1.2rem; }

    .ski-intro {
      color: rgba(255,255,255,.55);
      font-size: .95rem;
      max-width: 560px;
      line-height: 1.75;
      margin-bottom: 3.5rem;
    }

    .ski-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid rgba(243,142,50,.15);
    }

    .ski-card {
      padding: 2.4rem 2rem;
      border-right: 1px solid rgba(243,142,50,.15);
      position: relative;
      overflow: hidden;
    }
    .ski-card:last-child { border-right: none; }
    .ski-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 3px;
      background: var(--orange);
      transition: width .3s ease;
    }
    .ski-card:hover::after { width: 100%; }

    .ski-card .service-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
    .ski-card h3 {
      font-family: var(--fh);
      font-size: 1.3rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .04em;
      color: #fff;
      margin-bottom: .7rem;
    }
    .ski-card p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.7; }
    .ski-card .service-price { margin-top: 1.4rem; font-family: var(--fh); font-size: 1rem; font-weight: 700; color: var(--orange); }

    /* ── STORAGE ── */
    #storage {
      padding: 7rem 5%;
      background: var(--bg-3);
    }

    .storage-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 6rem;
      align-items: center;
    }

    .storage-content .tag { margin-bottom: .8rem; }
    .storage-content .section-title { margin-bottom: 1.4rem; }

    .storage-text {
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .storage-features {
      margin-top: 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .8rem 1.5rem;
    }
    .storage-features li {
      list-style: none;
      display: flex;
      align-items: center;
      gap: .7rem;
      font-size: .88rem;
      font-weight: 600;
      color: var(--text);
    }
    .storage-features li::before {
      content: '✓';
      color: var(--orange);
      font-weight: 900;
      flex-shrink: 0;
    }

    .storage-price-box {
      background: var(--orange);
      color: #fff;
      padding: 3rem 2.6rem;
      position: relative;
    }
    .storage-price-box h3 {
      font-family: var(--fh);
      font-size: 1.4rem;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 2rem;
      letter-spacing: .04em;
    }
    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: .8rem 0;
      border-bottom: 1px solid rgba(255,255,255,.2);
    }
    .price-row:last-of-type { border-bottom: none; }
    .price-row .service-name { font-size: .88rem; font-weight: 600; opacity: .9; }
    .price-row .price-val { font-family: var(--fh); font-size: 1.3rem; font-weight: 900; }
    .storage-cta { margin-top: 2rem; }

    /* ── PRICELIST ── */
    #pricelist {
      padding: 7rem 5%;
      background: var(--bg);
    }

    #pricelist .tag { margin-bottom: .8rem; }
    #pricelist .section-title { margin-bottom: 1rem; }
    .pricelist-intro {
      color: var(--muted);
      font-size: .95rem;
      max-width: 560px;
      line-height: 1.75;
      margin-bottom: 3.5rem;
    }

    .price-categories {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .price-category {
      border: 1px solid var(--border);
      padding: 0;
      overflow: hidden;
    }
    .price-category-header {
      background: var(--orange);
      color: #fff;
      padding: 1rem 1.4rem;
      font-family: var(--fh);
      font-size: 1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .price-category-items {
      padding: .6rem 0;
    }
    .price-item {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: .5rem 1.4rem;
      gap: 1rem;
      border-bottom: 1px solid var(--border);
    }
    .price-item:last-child { border-bottom: none; }
    .price-item-name { font-size: .82rem; color: var(--muted); line-height: 1.4; flex: 1; }
    .price-item-price { font-size: .88rem; font-weight: 700; color: var(--orange); white-space: nowrap; }

    .pricelist-note {
      margin-top: 2.5rem;
      padding: 1.4rem 1.8rem;
      background: var(--bg-2);
      border-left: 3px solid var(--orange);
      font-size: .83rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── CONTACT ── */
    #contact {
      padding: 7rem 5%;
      background: var(--bg-2);
    }

    #contact .tag { margin-bottom: .8rem; }
    #contact .section-title { margin-bottom: 4rem; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 5rem;
      align-items: start;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 2.2rem;
    }

    .contact-block h4 {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: .5rem;
    }
    .contact-block p, .contact-block a {
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.65;
      text-decoration: none;
    }
    .contact-block a { color: var(--text); font-weight: 600; }
    .contact-block a:hover { color: var(--orange); }

    .map-area {
      background: var(--bg-3);
      border: 1px solid var(--border);
      aspect-ratio: 16/10;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      color: var(--muted);
      font-size: .9rem;
    }
    .map-area .map-icon { font-size: 3rem; }
    .map-area p { text-align: center; max-width: 260px; line-height: 1.5; }
    .map-area code {
      font-size: .78rem;
      background: var(--bg);
      padding: .3rem .6rem;
      border-radius: 2px;
      color: var(--orange);
      border: 1px solid var(--border);
    }
    .map-area iframe {
      width: 100%;
      height: 100%;
      min-height: 280px;
      border: 0;
      display: block;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(243,142,50,.15);
      padding: 2.5rem 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-logo img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
    footer p { color: rgba(255,255,255,.35); font-size: .78rem; }
    .footer-links { display: flex; gap: 1.8rem; }
    .footer-links a { color: rgba(255,255,255,.45); font-size: .78rem; text-decoration: none; transition: color .15s; }
    .footer-links a:hover { color: var(--orange); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .locations-grid { grid-template-columns: repeat(2, 1fr); }
      .price-categories { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .service-card:nth-child(2) { border-right: none; }
      .service-card:nth-child(3) { border-top: 1px solid var(--border); }
      .ski-grid { grid-template-columns: repeat(2, 1fr); }
      .ski-card:nth-child(2) { border-right: none; }
      .ski-card:nth-child(3) { border-top: 1px solid rgba(243,142,50,.15); grid-column: 1 / -1; }
      .storage-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    }

    @media (max-width: 768px) {

      .hero-chain-bg { opacity: 0; }
      .hero-stats { flex-direction: column; width: 100%; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
      .stat-item:last-child { border-bottom: none; }

      .about-grid { grid-template-columns: 1fr; gap: 4rem; }
      .about-badge { bottom: -.8rem; right: 0; }
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

      .services-grid { grid-template-columns: 1fr; }
      .service-card { border-right: none; border-bottom: 1px solid var(--border); }
      .service-card:last-child { border-bottom: none; }
      .service-card:nth-child(3) { border-top: none; }

      .locations-grid { grid-template-columns: 1fr; }
      .ski-grid { grid-template-columns: 1fr; }
      .ski-card { border-right: none; border-bottom: 1px solid rgba(243,142,50,.15); }
      .ski-card:nth-child(3) { border-top: none; grid-column: auto; }
      .ski-card:last-child { border-bottom: none; }

      .price-categories { grid-template-columns: 1fr; }

      .storage-features { grid-template-columns: 1fr; }

      .footer-links { display: none; }
    }
