:root {
  --ink: #12214a;
  --ink-soft: #2f3f74;
  --accent: #f2cb05;
  --felt: #0f5b49;
  --paper: #fbfbf7;
  --paper-alt: #eef2f8;
  --line: #d7deee;
  --max: 1160px;
  --radius: 16px;
  --shadow: 0 10px 25px rgba(18, 33, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, #f4f8ff 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, #fff8d5 0%, transparent 32%),
    var(--paper);
  font-family: "Barlow", "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--felt);
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(251, 251, 247, 0.92);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  max-width: 170px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.main-nav a {
  text-decoration: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 0.4rem 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--ink);
  font-weight: 700;
  padding: 0.7rem 1.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--ink);
}

.btn-sm {
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.78rem;
  margin: 0 0 0.5rem;
}

h1, h2, h3 {
  font-family: "Prata", Georgia, serif;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.lead {
  max-width: 62ch;
  font-size: 1.1rem;
}

.meta {
  color: #586b9f;
  font-size: 0.92rem;
}

.hero,
.section,
.page-hero {
  padding: clamp(3rem, 6vw, 5.4rem) 0;
}

.hero-feature {
  padding-top: clamp(1.2rem, 2vw, 2rem);
}

.hercules-showcase {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.hero-banner {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: var(--shadow);
}

.hero-banner img {
  width: 100%;
  min-height: 540px;
  max-height: 76vh;
  object-fit: cover;
}

.hero-banner-static {
  background: #111;
}

.hero-banner-static img {
  min-height: clamp(520px, 75vh, 980px);
  max-height: none;
  object-fit: contain;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(180deg, rgba(10, 19, 45, 0.4) 0%, rgba(10, 19, 45, 0.9) 45%, rgba(10, 19, 45, 0.96) 100%);
  color: #fff;
  padding: clamp(1.1rem, 3vw, 2.4rem);
}

.hero-overlay h1,
.hero-overlay .lead,
.hero-overlay .meta {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.hero-overlay .eyebrow {
  color: #ffd93b;
}

.hero-overlay .lead,
.hero-overlay .meta {
  color: rgba(255, 255, 255, 0.9);
}

.hero-overlay .btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.hero-overlay .btn-outline:hover {
  background: #fff;
  color: var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-image-contain {
  display: grid;
  place-items: center;
  background: #0f172c;
}

.hero-image-contain img {
  aspect-ratio: auto;
  max-height: 560px;
  object-fit: contain;
  background: #0f172c;
}

.hero-cta {
  margin: 1.4rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-strip {
  background: linear-gradient(135deg, #11265a, #0f5b49);
  color: #fff;
  padding: 2.2rem 0;
}

.trust-strip a {
  color: var(--accent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

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

.section-head {
  margin-bottom: 1.35rem;
}

.photo-highlights-section {
  padding-top: clamp(1.4rem, 3vw, 2.4rem);
}

.gallery-shell {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(0.8rem, 2vw, 1.25rem);
  background:
    linear-gradient(180deg, #f4f7ff 0%, #f4f7ff 42%, #ffffff 42%, #ffffff 100%);
  box-shadow: 0 10px 24px rgba(18, 33, 74, 0.08);
}

.highlights-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.photo-highlights {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 0.9rem;
}

.highlight-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(18, 33, 74, 0.08);
  background: #fff;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.highlight-main {
  grid-row: span 2;
}

.highlight-main img {
  min-height: 452px;
}

.gallery-masonry {
  margin-top: 0;
}

.feature-grid,
.price-grid,
.testimonial-grid,
.location-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.location-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem;
  box-shadow: 0 3px 10px rgba(18, 33, 74, 0.05);
}

.price-card {
  text-align: center;
}

.featured {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(18, 33, 74, 0.12);
}

.pill {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: var(--felt);
}

.quote {
  display: grid;
  gap: 0.5rem;
}

.quote-by {
  margin: 0;
  font-size: 0.9rem;
  color: #55689a;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem;
}

th {
  background: #f6f8ff;
}

td:first-child {
  font-weight: 600;
}

.status {
  display: inline-block;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.status-yes {
  color: #08583f;
  background: #def6eb;
  border: 1px solid #9ed6bf;
}

.status-no {
  color: #6a1935;
  background: #fde8f0;
  border: 1px solid #e9b6c8;
}

.status-varies {
  color: #5a4a0a;
  background: #fff4cf;
  border: 1px solid #e5d28a;
}

.quote-section {
  background: linear-gradient(150deg, #f5f8ff, #fff7d4);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.quote-form {
  display: grid;
  gap: 0.65rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #becae7;
  border-radius: 10px;
  padding: 0.65rem 0.7rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(242, 203, 5, 0.35);
  border-color: var(--ink);
}

.page-hero {
  padding-bottom: 1rem;
}

.masonry {
  columns: 4 220px;
  column-gap: 0.8rem;
}

.masonry figure {
  break-inside: avoid;
  margin: 0 0 0.8rem;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(18, 33, 74, 0.08);
}

.masonry img {
  width: 100%;
  height: auto;
}

#gallery .masonry img {
  cursor: zoom-in;
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 18, 40, 0.84);
  padding: 1rem;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox-inner {
  position: relative;
  width: min(96vw, 1280px);
  max-height: 92vh;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.42);
  background: #0a1228;
}

.gallery-lightbox-image {
  display: block;
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
}

.gallery-lightbox-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(12, 20, 44, 0.85);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.cta-panel {
  text-align: center;
}

.location-card {
  display: grid;
  gap: 0.5rem;
}

.location-card img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.profile-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1rem;
  align-items: center;
}

.profile-card img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 900px;
}

details summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin-bottom: 0;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 0.75rem;
}

@media (max-width: 1000px) {
  .hero-grid,
  .quote-grid,
  .profile-card {
    grid-template-columns: 1fr;
  }

  .highlights-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-main {
    grid-row: span 1;
    grid-column: span 2;
  }

  .highlight-main img {
    min-height: 320px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-grid,
  .testimonial-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .hero-banner img {
    min-height: 460px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 19, 45, 0.56) 0%, rgba(10, 19, 45, 0.9) 44%, rgba(10, 19, 45, 0.97) 100%);
  }

  .photo-highlights {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    gap: 0.8rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.35rem;
  }

  .highlight-card {
    scroll-snap-align: start;
  }

  .highlight-main {
    grid-column: auto;
  }

  .highlight-card img,
  .highlight-main img {
    min-height: 250px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 0.65rem 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}
