:root {
      --yellow: #F5C200;
      --blue: #1A3A6B;
      --black: #111111;
      --white: #FFFFFF;
      --red: #C0392B;
      --light-gray: #F4F4F4;
      --text-dark: #1a1a1a;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5rem;
      height: 64px;
      background: rgba(17,17,17,0.92);
      backdrop-filter: blur(8px);
    }

    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      color: var(--yellow);
      letter-spacing: 0.06em;
      text-decoration: none;
    }

    .nav-logo span {
      color: var(--white);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
    }

    nav ul a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      transition: color 0.2s;
    }

    nav ul a:hover { color: var(--yellow); }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('images/img-01-1bad681f53.jpg');
      background-size: cover;
      background-position: center 40%;
      transform: scale(1.04);
      animation: heroZoom 8s ease-out forwards;
    }

    @keyframes heroZoom {
      from { transform: scale(1.04); }
      to { transform: scale(1.0); }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(17,17,17,0.88) 0%,
        rgba(17,17,17,0.3) 50%,
        rgba(17,17,17,0.1) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 3rem 5rem;
      max-width: 800px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.9s 0.4s ease forwards;
    }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 0.75rem;
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 8vw, 7rem);
      line-height: 0.95;
      color: var(--white);
      letter-spacing: 0.02em;
      margin-bottom: 1rem;
    }

    .hero-tagline {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      font-weight: 400;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 2rem;
    }

    .hero-tagline strong {
      color: var(--yellow);
      font-weight: 700;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--yellow);
      color: var(--black);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.9rem 2rem;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-primary:hover {
      background: #ffd700;
      transform: translateY(-2px);
    }

    .btn-primary svg {
      width: 18px; height: 18px;
      flex-shrink: 0;
    }

    /* ── SERVICES STRIP ── */
    .services-strip {
      background: var(--blue);
      display: flex;
      justify-content: center;
    }

    .services-strip-inner {
      display: flex;
      width: 100%;
      max-width: 1100px;
    }

    .service-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 2rem 1rem;
      border-right: 1px solid rgba(255,255,255,0.1);
      transition: background 0.2s;
    }

    .service-item:last-child { border-right: none; }
    .service-item:hover { background: rgba(255,255,255,0.06); }

    .service-icon {
      font-size: 2rem;
      line-height: 1;
    }

    .service-label {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.3rem;
      letter-spacing: 0.08em;
      color: var(--yellow);
    }

    .service-desc {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* ── SECTIONS ── */
    section {
      padding: 6rem 2rem;
    }

    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1;
      color: var(--black);
      margin-bottom: 1.5rem;
    }

    /* ── PHOTO GRID ── */
    .photo-section { background: var(--light-gray); padding: 5rem 2rem; }

    .photo-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      grid-template-rows: auto auto;
      gap: 0.75rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .photo-grid-item {
      overflow: hidden;
      position: relative;
    }

    .photo-grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .photo-grid-item:hover img { transform: scale(1.03); }

    .photo-grid-item:nth-child(1) { grid-row: 1 / 3; height: 520px; }
    .photo-grid-item:nth-child(2) { height: 250px; }
    .photo-grid-item:nth-child(3) { height: 250px; }

    .photo-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.7));
      padding: 1.5rem 1rem 0.75rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
    }

    /* ── ABOUT ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-text p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #444;
      font-weight: 300;
      margin-bottom: 1rem;
    }

    .about-accent {
      width: 60px;
      height: 4px;
      background: var(--yellow);
      margin-bottom: 1.5rem;
    }

    .about-image {
      overflow: hidden;
      height: 420px;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ── LOCATION ── */
    .location-section {
      background: var(--black);
      color: var(--white);
    }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .location-section .section-label { color: var(--yellow); }
    .location-section .section-title { color: var(--white); }

    .location-detail {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }

    .location-icon {
      width: 40px;
      height: 40px;
      background: var(--yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
    }

    .location-info-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 0.2rem;
    }

    .location-info-value {
      font-size: 1rem;
      font-weight: 400;
      color: var(--white);
      line-height: 1.5;
    }

    .location-info-value.placeholder {
      color: rgba(255,255,255,0.35);
      font-style: italic;
    }

    .map-placeholder {
      background: #1e1e1e;
      height: 300px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .map-placeholder p {
      font-family: 'Barlow Condensed', sans-serif;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      font-size: 0.85rem;
    }

    .btn-directions {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--yellow);
      color: var(--black);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 1rem 2.2rem;
      margin-top: 1.5rem;
      transition: background 0.2s, transform 0.15s;
      display: inline-flex;
    }

    .btn-directions:hover {
      background: #ffd700;
      transform: translateY(-2px);
    }

    /* ── HOURS TABLE ── */
    .hours-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 0.5rem;
    }

    .hours-table tr {
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .hours-table tr:last-child {
      border-bottom: none;
    }

    .hours-table td {
      padding: 0.45rem 0;
      font-size: 0.92rem;
      color: rgba(255,255,255,0.75);
    }

    .hours-table td.day {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      width: 110px;
    }

    .hours-table td.time {
      color: var(--white);
      font-weight: 300;
    }

    /* ── FOOTER ── */
    footer {
      background: #0a0a0a;
      padding: 2rem;
      text-align: center;
      border-top: 3px solid var(--yellow);
    }

    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      color: var(--yellow);
      letter-spacing: 0.06em;
      margin-bottom: 0.4rem;
    }

    footer p {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.08em;
    }

    /* ── YELLOW ACCENT LINE ── */
    .accent-bar {
      height: 5px;
      background: var(--yellow);
      width: 100%;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav ul { display: none; }
      .hero-content { padding: 0 1.5rem 3.5rem; }
      .services-strip-inner { flex-direction: column; }
      .service-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
      .photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
      .photo-grid-item:nth-child(1) { height: 280px; grid-row: auto; }
      .photo-grid-item:nth-child(2),
      .photo-grid-item:nth-child(3) { height: 200px; }
      .about-grid, .location-grid { grid-template-columns: 1fr; gap: 2rem; }
      .about-image { height: 260px; }
    }