:root {
  --color-water: #1a4d6e;
  --color-water-dark: #0f3349;
  --color-sand: #f4f0e8;
  --color-wood: #5c3d2e;
  --color-accent: #c47a2c;
  --color-accent-hover: #a8651f;
  --color-text: #2c2c2c;
  --color-muted: #5a5a5a;
  --color-white: #ffffff;
  --shadow: 0 4px 20px rgba(15, 51, 73, 0.12);
  --radius: 8px;
  --font-display: "Bitter", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-sand);
}

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

a {
  color: var(--color-water);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-call {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-call:hover {
  background: var(--color-accent-hover);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-water-dark);
  text-decoration: none;
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}

/* Header */
.site-header {
  background: var(--color-water-dark);
  color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-top {
  background: var(--color-water);
  font-size: 0.9rem;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.header-hours {
  margin: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.header-hours .divider {
  opacity: 0.5;
}

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

.logo {
  color: var(--color-white);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.logo-tagline {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--color-white);
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.2s, opacity 0.2s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, rgba(15, 51, 73, 0.85) 0%, rgba(26, 77, 110, 0.6) 100%);
  padding: 4rem 0;
}

.hero-content {
  color: var(--color-white);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.15rem;
  max-width: 540px;
  margin: 0 0 1.75rem;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--color-water-dark);
  margin: 0 0 0.5rem;
  text-align: center;
}

.section-lead {
  text-align: center;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* Services */
.services {
  background: var(--color-white);
}

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

.service-card {
  background: var(--color-sand);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-family: var(--font-display);
  color: var(--color-water);
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* Gallery */
.gallery {
  background: var(--color-sand);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-water-dark);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15, 51, 73, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reviews */
.reviews {
  background: var(--color-water-dark);
  color: var(--color-white);
}

.reviews h2 {
  color: var(--color-white);
}

.reviews .section-lead {
  color: rgba(255, 255, 255, 0.8);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  margin: 0;
  padding: 1.5rem;
}

.review-card p {
  margin: 0.5rem 0 1rem;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
}

.review-card footer {
  font-size: 0.9rem;
  opacity: 0.85;
  font-style: normal;
}

.stars {
  color: var(--color-accent);
  letter-spacing: 2px;
  font-size: 1.1rem;
}

/* Contact */
.contact {
  background: var(--color-white);
}

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

.contact-info h2 {
  text-align: left;
}

.contact-info .section-lead {
  text-align: left;
  margin-left: 0;
}

.contact-details {
  margin: 0 0 1.5rem;
}

.contact-row {
  margin-bottom: 1.25rem;
}

.contact-row dt {
  font-weight: 600;
  color: var(--color-water);
  margin-bottom: 0.25rem;
}

.contact-row dd {
  margin: 0;
  color: var(--color-muted);
}

.contact-row a {
  color: var(--color-text);
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--color-wood);
  color: rgba(255, 255, 255, 0.9);
  padding: 2rem 0;
  font-size: 0.95rem;
}

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

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.footer-brand p,
.footer-contact p {
  margin: 0.25rem 0 0;
  opacity: 0.85;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.05rem;
}

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.7;
  font-size: 0.85rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  font-size: 2.5rem;
  line-height: 1;
  padding: 0.5rem 1rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-water-dark);
    padding: 1rem 4vw;
    gap: 0.75rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-main {
    position: relative;
    flex-wrap: wrap;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .contact-info h2,
  .contact-info .section-lead {
    text-align: center;
  }

  .contact-info .section-lead {
    margin-inline: auto;
  }

  .contact-info .btn {
    display: block;
    text-align: center;
  }
}
