@charset "UTF-8";
/* CSS Document */
 :root {
    --pine: #1B3A2F;
    --pine-light: #234A3B;
    --ember: #C97A2E;
    --ember-light: #E0A05E;
    --parchment: #F3EEDD;
    --parchment-dark: #E8E0C8;
    --bark: #3A2E20;
    --moss: #6B8F71;
    --sky: #A9C4D1;
    --white: #FFFFFF;

    --font-display: Georgia, "Times New Roman", serif;
    --font-body: "Inter", "Segoe UI", sans-serif;
    --font-mono: "Courier New", monospace;

    --max-width: 1080px;
  }

  * { box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }

  body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--parchment);
    color: var(--bark);
    line-height: 1.6;
  }

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

  a { color: var(--pine); }
  a:focus-visible,
  button:focus-visible {
    outline: 3px solid var(--ember);
    outline-offset: 2px;
  }

  .wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
  }

  /* ---------- Header / Nav ---------- */
  .site-header {
    background: var(--pine);
    color: var(--parchment);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }

  .site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .brand {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.05rem, 2.4vw, 1.4rem);
    color: var(--white);
    text-decoration: none;
    line-height: 1.2;
  }

  .brand small {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--ember-light);
    font-weight: 400;
    margin-top: 0.15rem;
    text-transform: uppercase;
  }

  .nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--parchment);
    color: var(--parchment);
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    cursor: pointer;
  }

  .main-nav ul {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
  }

  .main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--parchment);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    transition: background 0.2s ease;
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    background: var(--pine-light);
    color: var(--ember-light);
  }

  .blaze {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: var(--ember);
    flex: none;
  }

  @media (max-width: 680px) {
    .nav-toggle { display: inline-block; }
    .main-nav { display: none; width: 100%; }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; padding: 0.5rem 0 1rem; }
    .site-header .wrap { flex-wrap: wrap; }
  }

 /* ---------- Page header band ---------- */
  .page-hero {
    background: var(--bark);
    color: var(--white);
    padding: 2.75rem 0 2.25rem;
  }

  .page-hero .eyebrow { color: var(--ember-light); }

  .page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    margin: 0 0 0.5rem;
  }

  .page-hero p {
    color: var(--sky);
    max-width: 60ch;
    margin: 0;
  }

  .page-hero .contact-line {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .page-hero .contact-line a { color: var(--white); }
  

  /* ---------- Sections ---------- */
  section { padding: 3.5rem 0; }

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

  .eyebrow {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    color: var(--moss);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.5rem;
  }

  h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    margin: 0 0 1.25rem;
    color: var(--pine);
  }
  
  h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--pine);
    margin: 0 0 0.75rem;
  }

  .lede {
    max-width: 68ch;
  }

  .lede p { margin: 0 0 1rem; }

  /* ---------- Notice Board ---------- */
  .notice-board {
    margin-top: 2rem;
    background: var(--white);
    border: 2px dashed var(--ember);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.92rem;
    max-width: 46ch;
  }

  .notice-board strong {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--pine);
    margin-bottom: 0.35rem;
  }

  /* ---------- Rates ---------- */
  .rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .rate-card {
    background: var(--pine);
    color: var(--parchment);
    border-radius: 12px;
    padding: 1.5rem;
  }

  .rate-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin: 0 0 0.9rem;
    color: var(--ember-light);
  }

  .rate-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--font-mono);
    font-size: 0.92rem;
  }

  .rate-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .rate-list li:last-child { border-bottom: none; }
  .rate-list .price { color: var(--ember-light); white-space: nowrap; }

  .rate-note {
    margin-top: 0.9rem;
    font-size: 0.85rem;
    color: var(--sky);
  }

  .rate-note.dark { color: var(--bark); }
  
  .rate-note1 {margin-top: 0.9rem;
    font-size: 0.85rem;
    color: var(--sky); /* alternate option: {color: var(--bark); } */
  }
  
  .rules-list {
    margin-top: 2rem;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.9rem;
    max-width: 60ch;
  }

  .rules-list li {
    background: var(--white);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    border-left: 4px solid var(--ember);
    font-size: 0.95rem;
  }

  .cta-email {
    margin-top: 1.75rem;
  }
  
/* ----------  Gallery (View All Photos in a Grid) ---------- */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.9rem;
    margin-top: 2rem;
  }

  .gallery a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4 / 3;
  }

  .gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
  }

  .gallery a:hover img { transform: scale(1.06); }

  .gallery figure {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--parchment-dark);
  }
  
    .gallery figcaption {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    padding: 0.5rem 0.7rem;
    color: var(--pine);
    background: var(--parchment-dark);
  }


  /* ---------- Lightbox (View Single Photo with Navigation Options) ---------- */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.92);
    padding: 2rem;
  }
  .lightbox.is-open {
    display: flex;
  }
  .lightbox-figure {
    position: relative;
    max-width: min(92vw, 1200px);
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .lightbox-img {
    max-width: 100%;
    max-height: 78vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: #111;
  }
  .lightbox-caption {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--parchment-dark, #eee);
    margin-top: 0.75rem;
    text-align: center;
  }
  .lightbox-counter {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
  }

  /* Lightbox Buttons */
  
  .lightbox-close,
  .lightbox-nav {
    position: fixed;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .lightbox-close:hover,
  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    /* transform: scale(1.05); */
  }
  .lightbox-close {
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }
  .lightbox-prev,
  .lightbox-next {
    top: 50%;
    transform: translateY(-50%);
  }
  .lightbox-prev { left: 1.25rem; }
  .lightbox-next { right: 1.25rem; }

  .lightbox-exit-label {
    position: fixed;
    top: 1.25rem;
    left: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    cursor: pointer;
  }
  .lightbox-exit-label:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  @media (max-width: 640px) {
    .lightbox-prev, .lightbox-next, .lightbox-close {
      width: 40px;
      height: 40px;
    }
    .lightbox-exit-label span { display: none; }
  }



 /* ---------- Footer ---------- */
  .site-footer {
    background: var(--bark);
    color: var(--parchment);
    padding: 3rem 0 2rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }

  .footer-grid h3 {
    font-family: var(--font-display);
    color: var(--ember-light);
    font-size: 1.05rem;
    margin: 0 0 0.75rem;
  }

  .footer-grid p, .footer-grid a { color: var(--parchment); }
  .footer-grid a { text-decoration: none; }
  .footer-grid a:hover { text-decoration: underline; }

  .footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid 
  }
  
   .skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--ember);
    color: var(--bark);
    padding: 0.6rem 1rem;
    z-index: 100;
    border-radius: 0 0 8px 0;
  }

  .skip-link:focus {
    left: 0;
  }
