:root {
  --bg-dark: #0e0f11;
  --bg-light: #f7f5f2;
  --accent: #d97b3f;
  --accent-dark: #b8622c;
  --text-light: #f5f3ef;
  --text-dark: #1c1c1c;
  --text-muted: #6b6b6b;
  --border: #e4e0d8;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.65;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark { flex-shrink: 0; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-line1 {
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--text-light);
  font-size: 1.05rem;
}

.logo-line1 .accent { color: var(--accent); }

.logo-line2 {
  font-size: .65rem;
  letter-spacing: .25em;
  color: var(--accent);
  margin-top: 2px;
}

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

.site-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: .92rem;
  opacity: .85;
}

.site-nav a:hover { opacity: 1; }

.nav-cta {
  background: var(--accent);
  color: #111 !important;
  padding: 9px 18px;
  border-radius: 3px;
  opacity: 1 !important;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-light);
}

/* Hero */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  text-align: center;
  color: var(--text-light);
}

.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 900px;
  margin: 0 auto 32px;
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover { background: var(--accent-dark); }

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: #efece5; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 0 0 8px;
}

.eyebrow-center { text-align: center; }

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 20px;
}

h2.center {
  text-align: justify;
  text-align-last: center;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 860px) {
  h2.center { max-width: 480px; }
}

.credential {
  display: block;
  font-size: .95rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
}

.split-copy p { text-align: justify; }

.contact-line { margin-top: 24px; font-weight: 600; }
.contact-line a { text-decoration: none; color: var(--accent-dark); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Why Us */
.why-us {
  background-size: cover;
  background-position: center;
  color: var(--text-light);
}

.why-us .eyebrow { color: var(--accent); }
.why-us h2 { color: var(--text-light); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.pillar h3 {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.pillar p {
  font-size: .95rem;
  color: rgba(245,243,239,.85);
  text-align: justify;
}

.pillar .quote {
  margin-top: 16px;
  font-style: italic;
  color: var(--text-light);
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

.pillar .quote span {
  display: block;
  font-style: normal;
  font-size: .8rem;
  margin-top: 6px;
  color: var(--accent);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}

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

.gallery-item:hover img { transform: scale(1.06); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.92);
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 32px;
}

.lightbox:not([hidden]) {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

/* Contact */
.contact-simple {
  text-align: center;
  max-width: 640px;
}

.contact-simple h2 { margin: 0 auto 20px; }

.contact-details { margin-top: 20px; font-size: 1.15rem; line-height: 1.9; }
.contact-details a { text-decoration: none; color: var(--accent-dark); }

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(245,243,239,.6);
  padding: 28px 0;
  text-align: center;
  font-size: .85rem;
}

/* Responsive */
@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 28px;
    gap: 18px;
    display: none;
  }

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

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

  .split-reverse { direction: ltr; }
  .split-media { order: -1; }

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

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
