/* ============================================================
   EMPEROR SAMI GROUP INC
   Hardcoded dark theme — no CSS variables for colors.
   This prevents ALL hosting/browser inheritance failures.
   Mobile-first. Pure CSS. No JavaScript.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   SPACING & LAYOUT TOKENS ONLY (safe — not colors)
   ============================================================ */
:root {
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   HARD RESET + FORCE DARK ON EVERYTHING
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: #0f0f0f;
  color: #f0ebe1;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Tell browser: this is a dark page */
  color-scheme: dark;
}

body {
  background-color: #0f0f0f;
  color: #f0ebe1;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img  { max-width: 100%; height: auto; display: block; }
ul   { list-style: none; }
a    { color: inherit; text-decoration: none; }
p    { margin-bottom: 1rem; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  color: #f0ebe1;
}

h1 { font-size: clamp(2rem, 7vw, 4.8rem); }
h2 { font-size: clamp(1.75rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #c9a24b;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.8rem;
  height: 1px;
  background: #c9a24b;
}
.eyebrow--light { color: #d9b668; }
.eyebrow--light::before { background: #d9b668; }
.eyebrow--center {
  text-align: center;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.eyebrow--center::before {
  position: static;
  top: auto;
  width: 1.8rem;
  flex-shrink: 0;
}

.section-title { margin-bottom: 1rem; }
.section-title em {
  font-style: italic;
  color: #a0802f;
  font-weight: 400;
}
.section-sub {
  font-size: 1rem;
  color: #8a8578;
  line-height: 1.75;
  max-width: 560px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }
.section--dark  { background-color: #080808; }
.section--subtle { background-color: #1a1a1a; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn::after { content: "→"; }

.btn-gold {
  background-color: #c9a24b;
  color: #0a0a0a;
  border-color: #c9a24b;
}
.btn-gold:hover, .btn-gold:active {
  background-color: #d9b668;
  border-color: #d9b668;
  color: #0a0a0a;
}

.btn-outline {
  background-color: transparent;
  color: #f5f1ea;
  border-color: #c9a24b;
}
.btn-outline:hover, .btn-outline:active {
  background-color: #c9a24b;
  color: #0a0a0a;
}

/* full-width on small phones */
@media (max-width: 480px) {
  .btn { width: 100%; font-size: 0.85rem; padding: 1rem 1.5rem; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background-color: #080808;
  border-bottom: 1px solid rgba(201,162,75,0.2);
  padding: 0.5rem 0;
  font-size: 0.75rem;
}
.top-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-bar a {
  color: #ebe5da;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.top-bar a:hover { color: #d9b668; }
.top-bar-icon { color: #c9a24b; }

.top-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.85rem;
  background-color: #c9a24b;
  color: #0a0a0a !important;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.top-bar-cta:hover { background-color: #d9b668; color: #0a0a0a !important; }

@media (max-width: 480px) {
  .top-bar-links { display: none; }
  .top-bar .wrap { justify-content: center; }
}

/* ============================================================
   NAVIGATION
   Hamburger uses checkbox hack.
   All colors hardcoded — no CSS variables.
   ============================================================ */

/* The checkbox — hidden but functional */
#nav-check {
  display: none;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #0d0d0d;
  border-bottom: 1px solid rgba(201,162,75,0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo */
.logo-link { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-tag {
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #a0802f;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 3px;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #f0ebe1;
  letter-spacing: 0.02em;
}
.logo-name em { font-style: italic; font-weight: 400; color: #a0802f; }

/* Hamburger label — the 3-bar icon */
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  /* Hardcoded — completely independent of any variable */
  background-color: transparent;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}

/* The three bars — hardcoded white/light color */
.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #f0ebe1;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.nav-burger span {
  position: relative;
}
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-burger span::before { top: -7px; }
.nav-burger span::after  { top:  7px; }

/* Nav menu — mobile: slides in from right */
.nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  /* Hidden off-screen by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Solid dark — no transparency, no variable */
  background-color: #080808;
  z-index: 998;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2rem;
}

.nav-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: #f5f1ea;
  text-decoration: none;
  padding: 0.2rem 0;
  display: block;
  text-align: center;
  transition: color 0.2s ease;
}
.nav-menu a:hover,
.nav-menu a.active { color: #d9b668; }

.nav-menu .nav-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.85rem 2rem;
  background-color: #c9a24b;
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
}
.nav-menu .nav-cta-link:hover { background-color: #d9b668; color: #0a0a0a; }

/* CHECKBOX CONTROLS — when checked: show menu + animate burger
   Structure: #nav-check ~ <header> ~ <nav.nav-menu>
   The ~ selector reaches any following sibling at the same DOM level.
   .nav-burger is INSIDE <header> so we target via the header sibling. */

/* Open the menu */
#nav-check:checked ~ .nav-menu {
  transform: translateX(0) !important;
}

/* Animate burger to X — target via .site-header sibling */
#nav-check:checked ~ .site-header .nav-burger span {
  background-color: transparent !important;
}
#nav-check:checked ~ .site-header .nav-burger span::before {
  transform: translateY(7px) rotate(45deg) !important;
}
#nav-check:checked ~ .site-header .nav-burger span::after {
  transform: translateY(-7px) rotate(-45deg) !important;
}

/* Desktop — nav-menu is a DOM sibling AFTER <header>.
   We make .site-header position:relative and use position:absolute
   on .nav-menu to pull it visually inside the header bar. */
@media (min-width: 960px) {
  .nav-burger { display: none; }

  /* Header becomes the positioning context */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
  }

  /* Nav floats up into the header bar */
  .nav-menu {
    position: absolute !important;
    /* Align to the right edge of the viewport, at header height */
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    background-color: transparent !important;
    transform: none !important;
    transition: none !important;
    z-index: 1000 !important;
    overflow: visible !important;
    padding: 0 3rem 0 0 !important;
    margin-top: 0 !important;
    /* Flex row */
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 2rem !important;
    /* Match header padding — align vertically */
    height: 4.1rem !important;
  }

  .nav-menu a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #d4cfc6;
    padding: 0.25rem 0;
    font-style: normal;
    display: inline-block;
    text-align: left;
    position: relative;
  }
  .nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background-color: #c9a24b;
    transition: width 0.3s ease;
  }
  .nav-menu a:hover::after,
  .nav-menu a.active::after { width: 100%; }
  .nav-menu a:hover,
  .nav-menu a.active { color: #d9b668; }

  .nav-menu .nav-cta-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem;
    margin-top: 0 !important;
    padding: 0.62rem 1.3rem !important;
    background-color: #c9a24b;
    color: #0a0a0a;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    height: auto !important;
  }
  .nav-menu .nav-cta-link::after { display: none !important; }
  .nav-menu .nav-cta-link:hover  { background-color: #d9b668; color: #0a0a0a; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  background-color: #0a0a0a;
  background-image:
    linear-gradient(135deg, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.6) 50%, rgba(8,8,8,0.88) 100%),
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}
.hero-inner { position: relative; max-width: 860px; }
.hero h1 { color: #f5f1ea; font-weight: 400; margin-bottom: 1.25rem; }
.hero h1 em { color: #c9a24b; font-style: italic; }
.hero-lead {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: #ebe5da;
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,162,75,0.25);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #c9a24b;
  line-height: 1;
  font-weight: 500;
}
.hero-stat span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(235,229,218,0.55);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background-color: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 36px;
  background-color: #c9a24b;
  transition: width 0.35s ease;
}
.card:hover { border-color: rgba(201,162,75,0.3); }
.card:hover::before { width: 100%; }

.card-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: #a0802f;
  margin-bottom: 0.75rem;
  display: block;
}
.card h3 { color: #f0ebe1; margin-bottom: 0.75rem; }
.card p   { color: #8a8578; font-size: 0.93rem; line-height: 1.72; margin-bottom: 1rem; }

.card-list { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 0.75rem; }
.card-list li {
  color: #d4cfc6;
  font-size: 0.83rem;
  padding: 0.28rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-list li::before {
  content: "✦";
  color: #c9a24b;
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review {
  background-color: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #0a0a0a;
  border: 1px solid #c9a24b;
  color: #c9a24b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: #f0ebe1; }
.review-date { font-size: 0.72rem; color: #5a554e; }
.review-stars { color: #c9a24b; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.65rem; }
.review-text {
  color: #8a8578;
  font-size: 0.9rem;
  line-height: 1.72;
  font-style: italic;
}
.review-text::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #c9a24b;
  line-height: 0;
  vertical-align: -0.35em;
  margin-right: 0.15em;
  font-style: normal;
}

.google-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
  background-color: #1a1a1a;
  font-size: 0.78rem;
  color: #d4cfc6;
  margin-bottom: 2rem;
}
.google-row strong { color: #a0802f; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.why-block {
  padding-left: 1.25rem;
  border-left: 2px solid rgba(201,162,75,0.3);
  transition: border-color 0.3s ease, padding-left 0.3s ease;
}
.why-block:hover {
  border-left-color: #c9a24b;
  padding-left: 1.6rem;
}
.why-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: #c9a24b;
  display: block;
  margin-bottom: 0.25rem;
}
.why-block h3 { color: #f5f1ea; font-size: 1.2rem; margin-bottom: 0.4rem; }
.why-block p  { color: rgba(235,229,218,0.55); font-size: 0.9rem; line-height: 1.72; margin-bottom: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background-color: #080808;
  background-image:
    linear-gradient(135deg, rgba(8,8,8,0.94) 0%, rgba(8,8,8,0.8) 100%),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0;
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-section h2 { color: #f5f1ea; margin-bottom: 1rem; }
.cta-section h2 em { color: #c9a24b; font-style: italic; }
.cta-section p {
  color: #ebe5da;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   QUOTE / CONTACT FORM
   ============================================================ */
.quote-section {
  background-color: #0f0f0f;
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.quote-details { margin-top: 1.5rem; display: grid; gap: 1.25rem; }
.q-detail { border-left: 2px solid #c9a24b; padding-left: 1rem; }
.q-detail-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #a0802f;
  display: block;
  margin-bottom: 0.2rem;
}
.q-detail-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #f0ebe1;
  font-weight: 500;
}

.quote-form {
  background-color: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2rem;
  position: relative;
}
.quote-form::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 50px; height: 2px;
  background-color: #c9a24b;
}

.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #5a554e;
  margin-bottom: 0.4rem;
}
.form-input,
.form-textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: #f0ebe1;
  font-family: var(--font-body);
  font-size: 1rem; /* 1rem prevents iOS zoom */
  padding: 0.75rem 0;
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #4a4540; }
.form-input:focus,
.form-textarea:focus { border-bottom-color: #c9a24b; }
.form-textarea { resize: vertical; min-height: 100px; padding-top: 0.75rem; }
.form-row { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.form-submit { width: 100%; margin-top: 0.75rem; justify-content: center; }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  background-color: #0a0a0a;
  background-image:
    linear-gradient(135deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.75) 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(3rem, 8vw, 6rem) 0;
  text-align: center;
}
.page-banner h1 { color: #f5f1ea; font-size: clamp(1.9rem, 5vw, 3.8rem); margin-bottom: 0.75rem; }
.page-banner h1 em { color: #c9a24b; font-style: italic; }
.page-banner p { color: #ebe5da; font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.75; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(235,229,218,0.4);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(235,229,218,0.4); }
.breadcrumb a:hover { color: #c9a24b; }
.breadcrumb .sep { color: #c9a24b; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.founder-img {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.founder-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-img::after {
  content: "";
  position: absolute;
  top: 16px; right: -14px; bottom: -14px; left: 16px;
  border: 1px solid #c9a24b;
  z-index: -1;
  pointer-events: none;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p  { color: #8a8578; line-height: 1.82; margin-bottom: 0.85rem; }

.signature {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: #a0802f;
}
.signature small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #5a554e;
  margin-top: 0.25rem;
}

/* Mission cards */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.mission-card {
  background-color: #0d0d0d;
  border: 1px solid rgba(201,162,75,0.18);
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.mission-card:hover { border-color: #c9a24b; transform: translateY(-3px); }
.mission-icon {
  width: 44px; height: 44px;
  border: 1px solid #c9a24b;
  color: #c9a24b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.mission-card h3 { color: #f5f1ea; font-size: 1.35rem; margin-bottom: 0.65rem; }
.mission-card p  { color: rgba(235,229,218,0.55); font-size: 0.9rem; line-height: 1.75; margin-bottom: 0; }

/* ============================================================
   BEFORE / AFTER (Projects)
   ============================================================ */
.ba-block { padding: 3.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ba-block:last-child { border-bottom: none; }
.ba-header { margin-bottom: 1.75rem; }
.ba-header h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 0.35rem; }
.ba-header p  { color: #8a8578; font-size: 0.9rem; line-height: 1.72; max-width: 600px; }
.ba-stats { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1rem; }
.ba-stat-label { font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.22em; color: #a0802f; display: block; margin-bottom: 0.15rem; }
.ba-stat-val   { font-family: var(--font-display); font-size: 1rem; color: #f0ebe1; }

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background-color: #c9a24b;
  overflow: hidden;
}
.ba-side { position: relative; }
.ba-side img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.ba-side:hover img { transform: scale(1.04); }
.ba-label {
  position: absolute;
  top: 0.6rem; left: 0.6rem;
  padding: 0.3rem 0.7rem;
  background-color: rgba(8,8,8,0.88);
  color: #c9a24b;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  z-index: 2;
}
.ba-label-after { background-color: #c9a24b; color: #0a0a0a; }

/* ============================================================
   GALLERY / LIGHTBOX
   ============================================================ */
.gal-section-head { padding: 3rem 0 1.25rem; }
.gal-section-head h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); margin-bottom: 0.25rem; }
.gal-section-head p  { color: #8a8578; font-size: 0.87rem; }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  grid-auto-rows: 155px;
  margin-bottom: 3rem;
}
.gal-item {
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
  cursor: zoom-in;
  display: block;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}
.gal-item:hover img { transform: scale(1.07); filter: brightness(0.65); }
.gal-item::after {
  content: "+";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  width: 48px; height: 48px;
  border: 1px solid #c9a24b;
  border-radius: 50%;
  color: #c9a24b;
  font-size: 1.8rem;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.gal-item:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.gal-wide { grid-column: span 2; }
.gal-tall { grid-row: span 2; }

/* CSS Lightbox via :target */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(4,4,4,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}
.lightbox:target { opacity: 1; visibility: visible; }
.lightbox-content {
  max-width: min(90vw, 1000px);
  max-height: 85vh;
  position: relative;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(201,162,75,0.2);
}
.lightbox-close {
  position: absolute;
  top: -40px; right: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid #c9a24b;
  color: #c9a24b;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.lightbox-close:hover { background-color: #c9a24b; color: #0a0a0a; }

/* ============================================================
   COMING SOON (Projects + Gallery pages)
   ============================================================ */
.cs-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  overflow: hidden;
  background-color: #080808;
  background-image:
    linear-gradient(135deg, rgba(8,8,8,0.86) 0%, rgba(8,8,8,0.65) 50%, rgba(8,8,8,0.9) 100%),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cs-hero-alt {
  background-image:
    linear-gradient(135deg, rgba(8,8,8,0.84) 0%, rgba(8,8,8,0.62) 50%, rgba(8,8,8,0.9) 100%),
    url('https://images.unsplash.com/photo-1556909172-54557c7e4fb7?w=1600&q=80');
}
.cs-inner { position: relative; z-index: 2; max-width: 680px; width: 100%; }

.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 1rem;
  border: 1px solid rgba(201,162,75,0.4);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #d9b668;
  background-color: rgba(201,162,75,0.1);
  margin-bottom: 1.25rem;
}
.cs-badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background-color: #c9a24b;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

.cs-inner h1 { color: #f5f1ea; font-size: clamp(2rem, 6vw, 4.2rem); margin-bottom: 1.25rem; font-weight: 400; }
.cs-inner h1 em { color: #c9a24b; font-style: italic; }
.cs-inner p {
  color: #ebe5da;
  font-size: clamp(0.93rem, 1.4vw, 1.05rem);
  line-height: 1.78;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.cs-divider { width: 50px; height: 1px; background-color: #c9a24b; margin: 0 auto 1.5rem; }
.cs-follow-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #d9b668;
  display: block;
  margin-bottom: 1.25rem;
}

.cs-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.cs-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.68rem 1.3rem;
  border: 1px solid rgba(201,162,75,0.35);
  background-color: rgba(255,255,255,0.05);
  color: #f5f1ea;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.cs-social:hover, .cs-social:active {
  background-color: #c9a24b;
  border-color: #c9a24b;
  color: #0a0a0a;
}

.cs-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cs-hint {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(235,229,218,0.4);
}
.cs-hint strong { color: #d9b668; }

/* Mosaic (gallery page) */
.cs-mosaic {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 4px;
  max-width: 360px;
  margin: 0 auto 2.5rem;
  opacity: 0.25;
  pointer-events: none;
}
.cs-tile {
  aspect-ratio: 1;
  background-color: rgba(201,162,75,0.18);
  border: 1px solid rgba(201,162,75,0.1);
}
.cs-tile:nth-child(1),
.cs-tile:nth-child(6),
.cs-tile:nth-child(11) { background-color: rgba(201,162,75,0.35); }


/* ============================================================
   HOME PAGE — Social links bar (below services heading)
   ============================================================ */
.home-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.home-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(201,162,75,0.4);
  background-color: rgba(201,162,75,0.07);
  color: #d4cfc6;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.home-social-btn:hover,
.home-social-btn:active {
  background-color: #c9a24b;
  border-color: #c9a24b;
  color: #0a0a0a;
  transform: translateY(-2px);
}

.home-social-btn svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .home-social-btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.4rem;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #080808;
  border-top: 1px solid rgba(201,162,75,0.18);
  padding: 5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #c9a24b;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer-col p,
.footer-col li,
.footer-col li a { color: #7a7570; font-size: 0.87rem; line-height: 1.9; }
.footer-col li a { color: #7a7570; }
.footer-col li a:hover { color: #d9b668; }
.footer-logo { margin-bottom: 1rem; }
.footer-logo .logo-name { color: #f5f1ea; }
.footer-logo .logo-tag  { color: #a0802f; }

.footer-bottom {
  border-top: 1px solid rgba(201,162,75,0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: #7a7570;
  text-align: center;
}
.footer-bottom em { font-style: italic; color: #c9a24b; }

/* ============================================================
   RESPONSIVE — Tablet 640px+
   ============================================================ */
@media (min-width: 640px) {
  .wrap { padding: 0 2rem; }
  .cards-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row     { grid-template-columns: 1fr 1fr; }
  .gal-grid     { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .footer-grid  { grid-template-columns: repeat(2, 1fr); }
  .btn          { width: auto; }
  .form-submit  { width: 100%; }
}

/* ============================================================
   RESPONSIVE — Desktop 960px+
   ============================================================ */
@media (min-width: 960px) {
  .wrap         { padding: 0 3rem; }
  .section      { padding: 7rem 0; }
  .cards-grid   { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .mission-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid     { grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
  .why-features { grid-template-columns: repeat(2, 1fr); }
  .quote-grid   { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .quote-details { grid-template-columns: 1fr 1fr; }
  .about-grid   { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
  .founder-img  { margin: 0; max-width: 100%; }
  .gal-grid     { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; }
  .footer-grid  { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1200px) {
  .gal-grid { grid-auto-rows: 240px; }
  .hero { min-height: 90vh; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #c9a24b;
  outline-offset: 3px;
}
