/* Gallery grid and lightbox styles */
.gallery-section {
  margin-top: 2.5rem;
}
.gallery-section h1 {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0 2rem 0;
}
.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-img:hover, .gallery-img:focus {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  outline: 2px solid var(--muted);
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  flex-direction: row;
}
.lightbox-img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.lightbox-close {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
  padding: 0.5rem 1rem;
}
.lightbox-arrow.left {
  left: 2rem;
}
.lightbox-arrow.right {
  right: 2rem;
}
.contact-form {
  background: linear-gradient(120deg, #fff 80%, #f6f1e6 100%);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), var(--shadow);
  border: 1.5px solid var(--line);
  padding: 2.2rem 2rem 1.7rem 2rem;
  max-width: 500px;
  margin: 2.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  transition: box-shadow 0.2s, border 0.2s;
}
.contact-form:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.13), var(--shadow);
  border-color: var(--muted);
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-form label {
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.1rem;
  letter-spacing: 0.01em;
}
.contact-form input,
.contact-form textarea {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--muted);
  outline: none;
  box-shadow: 0 0 0 2px #e6e2d8;
}
.contact-form textarea {
  resize: vertical;
  min-height: 90px;
}
.contact-form button[type="submit"] {
  align-self: flex-end;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, #f6d365 0%, #fda085 100%);
  color: #222;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 2.2rem;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contact-form button[type="submit"]:hover {
  background: linear-gradient(90deg, #fda085 0%, #f6d365 100%);
  color: #000;
}
/* Move FAQ h1 down for better spacing */
.faq-page h1 {
  margin-top: 100px;
}
/* FAQ pill card style */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.faq-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 1.2rem 1.5rem;
  transition: box-shadow 0.2s;
  max-width: 700px;
  margin: 0 auto;
}
.faq-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.faq-card details {
  cursor: pointer;
}
.faq-card summary {
  font-weight: 600;
  font-size: 1.1rem;
  outline: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  list-style: none;
}
.faq-card details[open] summary {
  color: var(--muted);
}
.faq-card details > div {
  margin-top: 0.8rem;
  font-size: 1rem;
}
/* Card Layout for Services Page */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
  
}

@media (min-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-height: 220px;
  height: 100%;
  transition: box-shadow 0.2s;
}

@media (min-width: 900px) {
  .card {
    min-height: 340px;
  }
}
.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
 :root{
      --bg: #f6f1e6;        /* cream / beige */
      --card: #fbf7ef;
      --text: #1f2328;
      --muted: #5c636c;
      --line: rgba(31,35,40,.12);
      --footer: #2f3237;    /* grey footer */
      --footerText: #e9ecef;
      --shadow: 0 16px 40px rgba(0,0,0,.10);
      --radius: 18px;
      --max: 1100px;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background: radial-gradient(1500px 800px at 50% 45%, #fff, var(--bg) 65%);
    }

    a{ color:inherit; text-decoration:none; }
    .container{ width:min(var(--max), 100% - 2rem); margin:0 auto; }

    /* NAV */
    header{
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
      background: color-mix(in oklab, var(--bg) 86%, white 14%);
      border-bottom: 1px solid var(--line);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: .9rem 0;
      gap: 1rem;
    }

    .logo img {
      height: 52px;
      width: 150px;
      object-fit: contain;
      display: block;
    }
    
    .brand{
      display:flex;
      flex-direction:column;
      line-height:1.05;
      gap:.2rem;
      font-weight:800;
      letter-spacing:.2px;
    }
    .brand small{
      font-weight:600;
      color:var(--muted);
      letter-spacing:.08em;
      text-transform:uppercase;
      font-size:.72rem;
    }

    .navlinks{
      display:flex;
      gap:.35rem;
      align-items:center;
    }
    .navlinks a{
      padding:.55rem .75rem;
      border-radius: 999px;
      font-weight:650;
      font-size:.95rem;
      color: color-mix(in oklab, var(--text) 88%, black 12%);
    }
    .navlinks a:hover{
      background: rgba(0,0,0,.06);
    }

      /* HERO */
      main{
        padding: 0 0 2.5rem;
        margin-top: 0;
      }

    .hero{
      display:grid;
      gap: 1rem;
    }
    .hero-top{
      display:grid;
      gap: .75rem;
      padding: .5rem 0 .25rem;
    }
    .hero h1{
      margin:0;
      font-size: clamp(1.6rem, 3.6vw, 2.5rem);
      letter-spacing:-.02em;
    }
    .hero p{
      margin:0;
      color:var(--muted);
      font-size: 1.02rem;
      line-height:1.55;
      max-width: 60ch;
    }

    .carousel{
      position:relative;
      overflow:hidden;
      border-radius: var(--radius);
      background: var(--card);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      min-height: 52vh; /* mobile-first big visual */
    }

    .slide{
      position:absolute;
      inset:0;
      opacity:0;
      transform: scale(1.02);
      transition: opacity 700ms ease, transform 1200ms ease;
    }
    .slide.is-active{
      opacity:1;
      transform: scale(1);
    }
    .slide img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    /* subtle overlay so text can live on top later if you want */
    .carousel::after{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(to top, rgba(0,0,0,.25), rgba(0,0,0,0) 55%);
      pointer-events:none;
    }

    .carousel-ui{
      position:absolute;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: .75rem;
      z-index: 2;
    }

    .dots{
      display:flex;
      gap:.5rem;
      align-items:center;
    }
    .dot{
      width: 10px;
      height: 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.65);
      background: rgba(255,255,255,.30);
      cursor:pointer;
    }
    .dot[aria-current="true"]{
      background: rgba(255,255,255,.95);
    }

    .controls{
      display:flex;
      gap:.5rem;
    }
    .btn{
      appearance:none;
      border: 1px solid rgba(255,255,255,.45);
      background: rgba(0,0,0,.35);
      color: white;
      padding:.55rem .8rem;
      border-radius: 999px;
      cursor:pointer;
      font-weight: 700;
      letter-spacing:.01em;
    }
    .btn:hover{ background: rgba(0,0,0,.45); }

    /* FOOTER */
    footer{
      background: var(--footer);
      color: var(--footerText);
      margin-top: 2.25rem;
    }
    .footer-inner{
      padding: 1.75rem 0;
      display:flex;
      flex-direction:column;
      gap:.6rem;
    }
    .footer-inner .row{
      display:flex;
      flex-direction:column;
      gap:.4rem;
    }
    .footer-inner a{
      color: var(--footerText);
      text-decoration: underline;
      text-decoration-color: rgba(233,236,239,.35);
      text-underline-offset: 3px;
    }
    .footer-inner a:hover{
      text-decoration-color: rgba(233,236,239,.85);
    }

    /* RESPONSIVE */
    @media (min-width: 860px){
      main{ padding: 2rem 0 3rem; }
      .hero{
        grid-template-columns: 1fr;
      }
      .carousel{
        min-height: 66vh;
      }
      .footer-inner .row{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        gap: 1rem;
      }
    }

    /* Respect reduced motion */
    @media (prefers-reduced-motion: reduce){
      .slide{ transition:none; }
    }
    .hero-bg{
      position: relative;
      height: 100vh;
      min-height: 540px;
      overflow: hidden;
      color: #fff;
      margin-top: 0;
    }

.hero-slides{
  position:absolute;
  inset:0;
}

.bg-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
}

.bg-slide.active{
  opacity:1;
  transform: scale(1);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.35) 60%,
      rgba(0,0,0,.55) 100%
    );
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:1.25rem;
  max-width: 620px;
}

.hero-content h1{
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height:1.05;
  margin:0;
}

.hero-content p{
  font-size:1.05rem;
  line-height:1.6;
  opacity:.95;
}

.hero-actions{
  display:flex;
  gap:.75rem;
  margin-top:.5rem;
}

.hero-btn{
  padding:.75rem 1.2rem;
  border-radius:999px;
  font-weight:700;
  letter-spacing:.02em;
}

.hero-btn.primary{
  background:#f6f1e6;
  color:#1f2328;
}

.hero-btn.ghost{
  border:1px solid rgba(255,255,255,.75);
  color:#fff;
}
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s ease, box-shadow .35s ease;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
}

.site-header.scrolled{
  background: #f6f1e6;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.site-header .nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 1rem 0;
}

.site-header .brand{
  color: #fff;
  font-weight: 800;
  letter-spacing:.2px;
}

.site-header .brand small{
  color: rgba(255,255,255,.75);
}

.site-header .navlinks a{
  color: #fff;
  font-weight: 650;
  padding: .5rem .75rem;
  border-radius: 999px;
}

.site-header .navlinks a:hover{
  background: rgba(255,255,255,.15);
}

/* scrolled state text color */
.site-header.scrolled .brand,
.site-header.scrolled .navlinks a{
  color: #1f2328;
}

.site-header.scrolled .brand small{
  color: #5c636c;
}

.site-header.scrolled .navlinks a:hover{
  background: rgba(0,0,0,.06);
}
/* =========================
   HERO SLOGAN ANIMATION
========================= */
.hero-slogan{
  position: absolute;
  top: 6.0rem; /* sits just below nav */
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  gap: 3rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: clamp(.8rem, 2.6vw, .95rem);
  color: rgba(255,255,255,.95);
}

.hero-slogan span{
    opacity: 0;
  transform: translateX(-20px);
  animation: sloganFade 2.8s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: var(--d);
}

/* animation */
@keyframes sloganFade{
  to{
    opacity: 1;
    transform: translateX(0);
  }
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .hero-slogan span{
    opacity: 1;
    transform: none;
    animation: none;
  }
}
/* =========================
   QUICK CARDS (below hero)
========================= */
.quick-sections{
  padding: 3rem 0 2.5rem;
  background: color-mix(in oklab, var(--bg) 92%, white 8%);
  border-top: 1px solid var(--line);
}

.section-head{
  display:flex;
  flex-direction:column;
  gap:.4rem;
  margin-bottom: 1.25rem;
}

.section-head h2{
  margin:0;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  letter-spacing:-.02em;
}

.section-head p{
  margin:0;
  color: var(--muted);
  line-height:1.6;
  max-width: 70ch;
}

.card-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card{
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
}

.card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: .7rem;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: .32rem .65rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(0,0,0,.06);
  color: color-mix(in oklab, var(--text) 88%, black 12%);
}

.card-icon{
  font-size: 1.25rem;
  opacity: .9;
}

.card h3{
  margin: 0 0 .45rem 0;
  font-size: 1.15rem;
  letter-spacing:-.01em;
}

.card p{
  margin: 0 0 .85rem 0;
  color: var(--muted);
  line-height: 1.6;
}

.card-link{
  display:inline-flex;
  font-weight: 850;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(31,35,40,.22);
  text-underline-offset: 4px;
}
.card-link:hover{
  text-decoration-color: rgba(31,35,40,.65);
}

/* CTA card variant */
.card-cta{
  background: rgba(255,255,255,.78);
  border-color: rgba(31,35,40,.16);
}

.cta-row{
  display:flex;
  gap:.65rem;
  flex-wrap: wrap;
  margin-top: .2rem;
}

/* Dark ghost button for light cards */
.hero-btn.ghost-dark{
  border: 1px solid rgba(31,35,40,.25);
  color: var(--text);
  background: rgba(0,0,0,.04);
}

/* responsive grid */
@media (min-width: 780px){
  .card-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .card-cta{
    grid-column: span 2;
  }
}

@media (min-width: 1080px){
  .card-grid{
    grid-template-columns: repeat(4, 1fr);
  }
  .card-cta{
    grid-column: auto;
  }
}
html{
  scroll-behavior: smooth;
} 
/* =========================
   FOOTER SOCIAL ICONS
========================= */
.footer-socials{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 1.6rem;
  margin-bottom: 1.25rem;
}

.footer-socials a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.1rem;
  transition: background .25s ease, transform .25s ease;
}

.footer-socials a:hover{
  background: rgba(255,255,255,.22);
  transform: translateY(-2px);
}

.services-page .card-grid{
  margin-top: 100px;
}
/* =========================
   BOOK NOW PILL BUTTON
========================= */
.cta-pill{
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.4rem 0.6rem 1.2rem;
  background: #b71f3b; /* deep red */
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px; /* pill */
  box-shadow:
    0 6px 0 #8f162d,
    0 14px 28px rgba(0,0,0,.25);
  transition:
    transform .15s ease,
    box-shadow .15s ease,
    background .15s ease;
}

.cta-text{
  white-space: nowrap;
}

.cta-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;          /* arrow stays white */
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  background: none !important;
  outline: none !important;
  box-shadow: none !important;
  user-select: none;
  pointer-events: none; /* THIS stops the blue box */
}

 

/* hover */
.cta-pill:hover{
  background: #c92444;
  transform: translateY(-2px);
  box-shadow:
    0 8px 0 #8f162d,
    0 18px 36px rgba(0,0,0,.3);
}

/* active / press */
.cta-pill:active{
  transform: translateY(2px);
  box-shadow:
    0 3px 0 #8f162d,
    0 10px 20px rgba(0,0,0,.25);
}

/* accessibility */
.cta-pill:focus-visible{
  outline: 3px solid rgba(255,255,255,.9);
  outline-offset: 3px;
}
/* =========================
   MOBILE HAMBURGER MENU
========================= */

/* hidden on desktop */
.menu-toggle{
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: .6rem;
  border-radius: 12px;
  cursor: pointer;
}

/* hamburger icon */
.menu-bars{
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  position: relative;
  border-radius: 999px;
}
.menu-bars::before,
.menu-bars::after{
  content:"";
  position:absolute;
  left:0;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.menu-bars::before{ top: -8px; }
.menu-bars::after{ top: 8px; }

/* when header is scrolled (light background), make icon dark */
.site-header.scrolled .menu-bars,
.site-header.scrolled .menu-bars::before,
.site-header.scrolled .menu-bars::after{
  background: var(--text);
}

/* mobile layout */
@media (max-width: 860px){
  .menu-toggle{
    display: inline-flex;
    align-items:center;
    justify-content:center;
  }

  /* hide navlinks by default on mobile */
  .navlinks{
    position: absolute;
    top: calc(100% + 10px);
    right: 1rem;
    left: 1rem;

    display: none;               /* toggled via JS */
    flex-direction: column;
    gap: .35rem;

    padding: .75rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 44px rgba(0,0,0,.25);
  }

  /* show when menu is open */
  .site-header.menu-open .navlinks{
    display: flex;
  }

  .navlinks a{
    padding: .85rem .9rem;
    border-radius: 12px;
    font-weight: 750;
  }
  .navlinks a:hover{
    background: rgba(255,255,255,.14);
  }

  /* If header is scrolled (cream), make the dropdown light */
  .site-header.scrolled .navlinks{
    background: rgba(246,241,230,.96);
    border: 1px solid var(--line);
  }
  .site-header.scrolled .navlinks a{
    color: var(--text);
  }
  .site-header.scrolled .navlinks a:hover{
    background: rgba(0,0,0,.06);
  }

  /* animate hamburger into an X when open */
  .site-header.menu-open .menu-bars{
    background: transparent;
  }
  .site-header.menu-open .menu-bars::before{
    top: 0;
    transform: rotate(45deg);
  }
  .site-header.menu-open .menu-bars::after{
    top: 0;
    transform: rotate(-45deg);
  }
}
/* Remove default focus outline on CTA */
.cta-pill{
  outline: none;
  -webkit-tap-highlight-color: transparent; /* mobile blue flash */
}

.cta-pill:focus,
.cta-pill:active{
  outline: none;
  box-shadow: none;
}
faq-page {
  top: 100px;
}
.inline-form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.inline-form input{
  flex: 1 1 180px;
  border-radius: 999px;
}
.inline-form button{
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  background:#111;
  color:#fff;
}
.inline-form button:hover{
  background:#333;
}
/* Contact Form (Option A) */
.contact-section { padding: 64px 0; }
.contact-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.contact-card h2 { margin: 0 0 6px; font-size: 28px; }
.subtext { margin: 0 0 18px; opacity: .75; }

.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 720px) { .grid { grid-template-columns: 1fr; } }

.field { display: grid; gap: 8px; margin-bottom: 14px; }
label { font-weight: 600; font-size: 14px; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 12px;
  padding: 12px 12px;
  outline: none;
  font-size: 16px;
  transition: box-shadow .15s ease, border-color .15s ease;
}
input:focus, textarea:focus {
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 0 0 4px rgba(0,0,0,.08);
}

.btn-primary {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  background: #111;
  color: #fff;
  width: fit-content;
}
.btn-primary:hover { opacity: .92; }

.hidden { display: none; }
/* Gallery */
.gallery-title{
  margin: 40px 0 20px;
  text-align: center;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  padding-bottom: 60px;
}

.gallery-grid img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.gallery-grid img:hover{
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox img{
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
}

.lightbox.show{
  display: flex;
}
/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox.show{
  display: flex;
}

.lightbox img{
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  z-index: 1;
}

/* Arrow buttons */
.lightbox-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  color: #fff;
  border: none;
  font-size: 36px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-btn:hover{
  background: rgba(0,0,0,.75);
}

.lightbox-btn.prev{ left: 20px; }
.lightbox-btn.next{ right: 20px; }
.map-section{
  padding: 60px 0;
}

.map-section h2{
  text-align: center;
  margin-bottom: 20px;
}

.map-wrapper{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.map-wrapper iframe{
  width: 100%;
  height: 450px;
  border: 0;
}

/* On mobile, reduce height slightly */
@media (max-width: 768px){
  .map-wrapper iframe{
    height: 300px;
  }
}
h2 a {
  margin-left: 12px;
}

.featured-text {
  text-align: center;
  margin: 40px 0;
  font-size: 1.05rem;
}

.featured-text i {
  color: #f4b400;
  margin-right: 8px;
}
.featured-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.featured-link:hover {
  opacity: 0.7;
}
