/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --color-bg:          #ffffff;
  --color-text:        #212121;
  --color-text-light:  #bdbdbd;
  --color-nav-bg:      #1b1b1b;
  --color-nav-text:    #c0bdb8;
  --color-nav-hover:   #ffffff;
  --color-footer-bg:   #303033;
  --color-footer-text: #e1dfdb;
  --color-accent:      #303033;
  --color-divider:     rgba(0,0,0,0.15);

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 12pt;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Skip link ──────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 4px;
  z-index: 9999;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--font-body);
}
.skip-link:focus { left: 4px; }

/* ── Header / Nav ───────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-nav-bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 16px;
}

/* Logo / site name */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 18pt;
  font-weight: 700;
  color: var(--color-nav-text);
  white-space: nowrap;
  letter-spacing: 0;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  position: relative;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 11pt;
  color: var(--color-nav-text);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--color-nav-hover);
  background: rgba(255,255,255,0.1);
}

.nav-link .chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.nav-item.open .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--color-nav-bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  min-width: 220px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  z-index: 200;
}

.nav-item.open .nav-dropdown { display: block; }

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 11pt;
  color: var(--color-nav-text);
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown a:hover {
  color: var(--color-nav-hover);
  background: rgba(255,255,255,0.08);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-nav-text);
  transition: all 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile sidebar */
.mobile-nav {
  display: none;
  background: var(--color-nav-bg);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 11pt;
  color: var(--color-nav-text);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s, background 0.15s;
}

.mobile-nav a.sub { padding-left: 40px; font-size: 10pt; }

.mobile-nav a:hover {
  color: var(--color-nav-hover);
  background: rgba(255,255,255,0.06);
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  margin-top: 64px; /* header height */
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(33,33,33,0.5);
}

.hero-logo {
  position: relative;
  z-index: 1;
  max-height: 220px;
  max-width: 90vw;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

/* ── Main content ───────────────────────────────────────────────────────── */
main { padding: 60px 24px; }

.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  font-family: var(--font-heading);
  font-size: 20pt;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.56;
}

.content-section p {
  font-family: var(--font-heading);
  font-size: 14pt;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.75;
}

.services-list {
  list-style: square;
  padding-left: 30px;
  margin-bottom: 20px;
}

.services-list li {
  font-family: var(--font-heading);
  font-size: 14pt;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.75;
}

/* ── Photo Gallery ──────────────────────────────────────────────────────── */
.gallery-section {
  padding: 40px 24px 60px;
  background: #f7f7f7;
}

.gallery-section h2 {
  font-family: var(--font-heading);
  font-size: 20pt;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: var(--color-text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.gallery-grid img:hover { opacity: 0.85; }

/* ── Discounts callout ──────────────────────────────────────────────────── */
.callout {
  background: var(--color-accent);
  color: var(--color-footer-text);
  text-align: center;
  padding: 40px 24px;
}

.callout p {
  font-family: var(--font-heading);
  font-size: 13pt;
  font-weight: 500;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
}

.callout strong { color: #fff; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  text-align: center;
  padding: 40px 24px;
}

.site-footer p {
  font-family: var(--font-body);
  font-size: 12pt;
  line-height: 1.75;
  margin-bottom: 4px;
}

.site-footer a {
  color: var(--color-footer-text);
  text-decoration: underline;
}

.site-footer a:hover { color: #fff; }

.footer-badge {
  margin-top: 24px;
  font-size: 10pt;
  color: rgba(225,223,219,0.5);
}

/* ── Sub-page layout ────────────────────────────────────────────────────── */
.page-hero {
  margin-top: 64px;
  background: var(--color-footer-bg);
  color: #fff;
  padding: 60px 24px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 29pt;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.44;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 20pt;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}

.page-content p {
  font-family: var(--font-body);
  font-size: 12pt;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.75;
}

.page-content ul {
  list-style: square;
  padding-left: 30px;
  margin-bottom: 20px;
}

.page-content li {
  font-family: var(--font-body);
  font-size: 12pt;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.75;
}

.back-link {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 11pt;
  color: var(--color-accent);
  text-decoration: underline;
}

/* ── Quote form ─────────────────────────────────────────────────────────── */
.quote-form {
  background: #f7f7f7;
  padding: 32px;
  border-radius: 8px;
  margin-top: 32px;
}

.quote-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 11pt;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 11pt;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
  background: #fff;
  color: var(--color-text);
}

.quote-form textarea { min-height: 140px; resize: vertical; }

.btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-footer-text);
  font-family: var(--font-body);
  font-size: 12pt;
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn:hover { background: #1a1a1c; color: #fff; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-brand-name { font-size: 15pt; }

  .hero { height: 250px; }
  .hero-logo { max-height: 160px; }

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

  .page-hero h1 { font-size: 21pt; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero { height: 320px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
