:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --bg: #f7f6f3;
  --bg-alt: #eeece6;
  --ink: #0a0a0a;
  --ink-soft: #55534e;
  --orange: #ff5a1f;
  --orange-dark: #e14e15;
  --white: #ffffff;
  --max-w: 1180px;
  --radius: 16px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 76px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
}

p { line-height: 1.65; color: var(--ink-soft); margin: 0 0 1em; }

a { color: inherit; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* --- Scroll reveal ------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* --- Header --------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0));
}
.site-logo { height: 24px; width: auto; }

.site-nav {
  display: flex;
  gap: 32px;
}
.site-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--orange); }

.header-cta {
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.header-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

@media (max-width: 720px) {
  .site-nav { display: none; }
}

/* --- Hero ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 55%, rgba(10,10,10,0.95) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(10,10,10,0.2), rgba(10,10,10,0.85) 75%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 0.5em;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto 2em;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 32px rgba(255, 90, 31, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--orange-dark); box-shadow: 0 18px 38px rgba(255, 90, 31, 0.45); }

/* --- Sections --------------------------------------------------------- */
.section {
  padding: clamp(70px, 10vh, 120px) clamp(20px, 6vw, 80px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-alt {
  max-width: none;
  background: var(--bg-alt);
}
.section-alt > * {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 0.7em;
}
.section-sub { text-align: center; max-width: 560px; margin: 0 auto 2em; }

/* --- Services (flat columns w/ dividers) ------------------------------ */
.services-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
}
.service-col {
  padding: 8px 28px;
  text-align: center;
  border-left: 1px solid rgba(10, 10, 10, 0.1);
}
.service-col:first-child { border-left: none; }
.service-col h3 { font-size: 1.1rem; margin-bottom: 0.5em; }
.service-col p { font-size: 0.95rem; margin: 0; }

@media (max-width: 760px) {
  .services-row { grid-template-columns: 1fr; gap: 32px; }
  .service-col { border-left: none; border-top: 1px solid rgba(10, 10, 10, 0.1); padding-top: 24px; }
  .service-col:first-child { border-top: none; }
}

/* --- Gallery ----------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
  margin-top: 10px;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s ease;
}
.gallery-img:hover { transform: scale(1.03); }
.gallery-grid > :nth-child(1) { grid-column: span 2; }
.gallery-grid > :nth-child(3) { grid-row: span 2; }

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-grid > :nth-child(1) { grid-column: span 2; }
}

.photo-credit {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.7;
  text-align: center;
  line-height: 1.6;
}
.photo-credit a { color: inherit; text-decoration: underline; }

/* --- Cards (venue types) ----------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(10, 10, 10, 0.1); }
.card h3 { font-size: 1.1rem; margin-bottom: 0.5em; }
.card p { margin: 0; font-size: 0.95rem; }

/* --- Stats --------------------------------------------------------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.stat { text-align: center; padding: 10px; }
.stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--orange);
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* --- Form ------------------------------------------------------------------ */
.section-form { text-align: center; }
#contact-form {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 44px);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.08);
}
.form-row { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-weight: 600; font-size: 0.9rem; }
.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(10, 10, 10, 0.15);
  background: #fff;
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
}
#form-submit { width: 100%; margin-top: 6px; }
.form-status { min-height: 1.4em; text-align: center; font-weight: 600; margin: 12px 0 0; }
.form-status.success { color: #1a7d3a; }
.form-status.error { color: #c02b2b; }

.service-note { text-align: center; margin-top: 26px; font-size: 0.95rem; }
.service-note a { color: var(--orange); font-weight: 700; text-decoration: none; }

/* --- Footer ------------------------------------------------------------------ */
.site-footer {
  text-align: center;
  padding: 50px 20px 40px;
  background: var(--black);
  color: #fff;
}
.footer-logo { height: 22px; margin: 0 auto 18px; }
.footer-contact { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 14px; }
.footer-contact a { text-decoration: none; font-weight: 600; color: var(--orange); }
.footer-copy { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin: 0; }

/* --- Responsive ------------------------------------------------------------- */
@media (max-width: 640px) {
  .section { padding: 60px 18px; }
  .card-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
