/* ============================================================
   Straight Stud Construction LLC — Professional Site Styles
   ============================================================ */

:root {
  --primary: #0a2540;
  --primary-dark: #061828;
  --primary-light: #123a5c;
  --accent: #e65100;
  --accent-hover: #bf360c;
  --accent-soft: #fff3e0;
  --text: #1a1a1a;
  --text-muted: #5a6570;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --bg-dark: #0a2540;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 37, 64, 0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1180px;
  --header-h: 78px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

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

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform 0.15s ease, box-shadow var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.35);
}

.btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--secondary:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

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

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

.btn--full {
  width: 100%;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  max-width: min(220px, 42vw);
}

.brand:hover {
  color: #fff;
  opacity: 0.95;
}

.brand__logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  border-radius: 4px;
}

/* Logo is the brand mark — hide duplicate text so header stays clean */
.brand__text {
  display: none;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand__tag {
  font-size: 0.72rem;
  opacity: 0.75;
  font-weight: 500;
}

@media (max-width: 480px) {
  .brand {
    max-width: min(150px, 48vw);
  }
  .brand__logo {
    height: 40px;
    max-width: 140px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  color: rgba(255, 255, 255, 0.88);
  padding: 10px 14px;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.nav__link:hover,
.nav__link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav__cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  color: #fff;
  overflow: hidden;
}

/* Rotating project photo reel (Arroyo + Pentwater) */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6s ease;
  will-change: opacity, transform;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Lighter veil so Arroyo / Pentwater photos read clearly while text stays legible */
  background:
    linear-gradient(
      115deg,
      rgba(6, 24, 40, 0.72) 0%,
      rgba(10, 37, 64, 0.48) 42%,
      rgba(10, 37, 64, 0.22) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 100px 0 90px;
  max-width: 700px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero__project {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__project-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb74d;
  opacity: 0.95;
}

.hero__project-name {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.95;
  min-height: 1.4em;
  transition: opacity 0.35s ease;
}

.hero__project-name.is-fading {
  opacity: 0;
}

.hero__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.hero__dot:hover,
.hero__dot:focus-visible {
  background: rgba(255, 255, 255, 0.7);
  outline: none;
  transform: scale(1.15);
}

.hero__dot.is-active {
  width: 28px;
  background: #ffb74d;
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: opacity 0.01ms;
    transform: none;
  }
  .hero__slide.is-active {
    transform: none;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 81, 0, 0.18);
  border: 1px solid rgba(230, 81, 0, 0.45);
  color: #ffb74d;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero__lead {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__meta-item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffb74d;
}

.hero__meta-item span {
  font-size: 0.88rem;
  opacity: 0.75;
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ---------- Portfolio ---------- */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-btn {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--primary-light);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 24, 40, 0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-item__overlay,
.portfolio-item:focus-within .portfolio-item__overlay {
  opacity: 1;
}

.portfolio-item__cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb74d;
  margin-bottom: 4px;
}

.portfolio-item__title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}

.portfolio-item.is-hidden {
  display: none;
}

/* Placeholder when no real photo yet */
.portfolio-item--placeholder {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  padding: 24px;
  cursor: default;
}

.portfolio-item--placeholder:hover {
  transform: none;
}

.portfolio-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(6, 24, 40, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.lightbox__img {
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  text-align: center;
  max-width: 90%;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: background var(--transition);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox__prev {
  left: 16px;
}

.lightbox__next {
  right: 16px;
}

/* ---------- About / Why Us ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-grid__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.about-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid__body h2 {
  text-align: left;
  margin-bottom: 16px;
}

.about-grid__body p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.checklist {
  margin-top: 20px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 500;
}

.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}

.stat__label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  text-align: center;
  padding: 72px 24px;
  border-radius: var(--radius-lg);
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
}

.cta-banner p {
  opacity: 0.88;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn--primary {
  box-shadow: 0 6px 24px rgba(230, 81, 0, 0.4);
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
}

.contact-info h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-align: left;
}

.contact-info > p {
  opacity: 0.85;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-detail a {
  color: #fff;
  font-weight: 600;
}

.contact-detail a:hover {
  color: #ffb74d;
}

.contact-detail span {
  color: rgba(255, 255, 255, 0.9);
}

.contact-hours {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-hours h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  text-align: left;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form-card > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ---------- Google Calendar booking ---------- */
.booking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 32px;
  align-items: start;
}

.booking-aside {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}

.booking-aside h2 {
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 12px;
  text-align: left;
}

.booking-aside > p {
  opacity: 0.9;
  margin-bottom: 24px;
}

.booking-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.booking-facts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-facts strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  font-weight: 600;
}

.booking-facts span {
  font-weight: 600;
}

.booking-aside__note {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.booking-aside a {
  color: #ffb74d;
}

.booking-aside a:hover {
  color: #fff;
}

.booking-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.booking-panel--contact {
  max-width: 920px;
  margin: 0 auto;
}

.booking-status {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.booking-embed {
  width: 100%;
  min-height: 640px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f6f8fb;
  border: 1px solid var(--border);
}

.booking-embed__frame {
  display: block;
  width: 100%;
  min-height: 640px;
  height: 70vh;
  max-height: 900px;
  border: 0;
  background: #fff;
}

.booking-setup {
  padding: 8px 4px 4px;
}

.booking-setup h2 {
  text-align: left;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.booking-setup p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.booking-setup__steps {
  margin: 0 0 20px 1.2rem;
  color: var(--text);
  line-height: 1.65;
}

.booking-setup__steps li {
  margin-bottom: 8px;
}

.booking-setup code {
  font-size: 0.88em;
  background: #f0f4f8;
  padding: 2px 6px;
  border-radius: 4px;
}

.booking-setup .btn {
  margin-right: 10px;
  margin-bottom: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group label .req {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.15);
}

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

/* Honeypot — hidden from real users */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-status.is-success {
  display: block;
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.form-status.is-error {
  display: block;
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

/* ---------- Legal pages ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.page-hero p {
  opacity: 0.85;
  font-size: 1.05rem;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.legal-content h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin: 36px 0 12px;
  text-align: left;
}

.legal-content h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 24px 0 10px;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 16px;
}

.legal-content ol {
  list-style: decimal;
  padding-left: 1.4rem;
  margin-bottom: 16px;
}

.legal-content a {
  font-weight: 600;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.legal-notice {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  color: var(--text);
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand__name {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 4px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  padding: 5px 0;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #ffb74d;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
  font-size: 0.88rem;
  opacity: 0.75;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
  margin-left: 16px;
}

.footer-bottom a:hover {
  color: #ffb74d;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid,
  .contact-layout,
  .booking-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-embed,
  .booking-embed__frame {
    min-height: 560px;
  }

  .footer-grid {
    gap: 28px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }
}

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

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 14px 12px;
  }

  .nav__cta {
    margin: 8px 0 0;
  }

  .nav__cta .btn {
    width: 100%;
  }

  .brand__text {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding: 72px 0 64px;
  }

  .section {
    padding: 64px 0;
  }

  .lightbox__nav {
    display: none;
  }
}

/* Print */
@media print {
  .site-header,
  .nav-toggle,
  .cta-banner,
  .lightbox {
    display: none !important;
  }

  body {
    color: #000;
  }

  a {
    color: #000;
  }
}
