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

/* ==========================================================================
   NORTHLIT STUDIOS — Main Stylesheet
   Dark luxury theme · Real Estate Media
   ========================================================================== */

:root {
  --bg-primary: #0f0d0b;
  --bg-secondary: #1a1612;
  --bg-tertiary: #221c16;
  --text-primary: #f0e9dd;
  --text-secondary: rgba(240, 233, 221, 0.7);
  --text-muted: rgba(240, 233, 221, 0.5);
  --gold: #c49a6c;
  --gold-light: #e8c89a;
  --gold-dark: #a67c4e;
  --border: rgba(196, 154, 108, 0.2);
  --border-light: rgba(196, 154, 108, 0.1);

  --container: 1280px;
  --gutter: 24px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--gold-light); }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(40px, 6vw, 80px); }
h2 { font-size: clamp(32px, 4.5vw, 56px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

.italic { font-style: italic; color: var(--gold); }
.accent { color: var(--gold); }

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 600px;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

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

.section {
  padding: 100px 0;
  position: relative;
}

.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-primary);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-lg {
  padding: 20px 40px;
  font-size: 14px;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(15, 13, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand img {
  height: 44px;
  width: auto;
}
.nav-brand-text {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}
.nav-menu a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 13px;
  color: var(--text-primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a.active { color: var(--gold); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,13,11,0.55) 0%, rgba(15,13,11,0.75) 60%, var(--bg-primary) 100%),
    linear-gradient(90deg, rgba(15,13,11,0.7) 0%, rgba(15,13,11,0.2) 100%);
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-content .lead {
  margin-bottom: 40px;
  color: rgba(240, 233, 221, 0.9);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 12px auto 0;
}

/* Page hero (non-home) */
.page-hero {
  padding: 180px 0 90px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(196, 154, 108, 0.12) 0%, transparent 60%),
    var(--bg-primary);
}
.page-hero .eyebrow {
  margin-bottom: 24px;
}
.page-hero h1 {
  margin-bottom: 20px;
}
.page-hero .lead { margin: 0 auto; text-align: center; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-header h2 { margin-bottom: 20px; }
.section-header .lead { margin: 0 auto; text-align: center; }

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  padding: 40px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 24px;
  font-family: 'Lora', serif;
  font-style: italic;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Photo Showcase */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.showcase:last-child { margin-bottom: 0; }
.showcase.reverse .showcase-image { order: 2; }
.showcase-image {
  position: relative;
  overflow: hidden;
}
.showcase-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.showcase-image:hover img { transform: scale(1.03); }
.showcase-content h2 { margin-bottom: 20px; }
.showcase-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Photo Strip (3-up) */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.photo-strip .photo-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.photo-strip .photo-item:hover img { transform: scale(1.05); }

/* CTA Band */
.cta-band {
  text-align: center;
  padding: 120px 0;
  background:
    radial-gradient(ellipse at center, rgba(196, 154, 108, 0.1) 0%, transparent 70%),
    var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.cta-band h2 { margin-bottom: 24px; }
.cta-band .lead { margin: 0 auto 40px; text-align: center; }

/* ==========================================================================
   SERVICE AREAS PAGE
   ========================================================================== */

.areas-section { padding: 60px 0; }
.areas-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.region {
  padding: 32px 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s ease;
}
.region:hover { border-color: var(--gold); }
.region h3 {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.region ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.region li {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  padding-left: 14px;
  position: relative;
}
.region li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-content > * + * { margin-top: 30px; }
.about-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.about-content h2 { margin-top: 60px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 60px;
}
.value-card {
  padding: 36px 28px;
  text-align: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
}
.value-card h4 {
  color: var(--gold);
  margin-bottom: 14px;
  font-style: italic;
}
.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-secondary);
  padding: 50px 50px;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 22px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
label.required::after {
  content: ' *';
  color: var(--gold-light);
}
input, textarea, select {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
}
textarea {
  resize: vertical;
  min-height: 140px;
  font-family: 'Poppins', sans-serif;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.checkbox-item:hover { border-color: var(--gold); }
.checkbox-item input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: var(--gold);
}
.checkbox-item label {
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 400;
  cursor: pointer;
}

.form-submit {
  margin-top: 12px;
  text-align: center;
}
.form-submit .btn { min-width: 220px; }

/* Date/Time input icon color fix — make calendar icon gold */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(73%) sepia(35%) saturate(431%) hue-rotate(345deg) brightness(89%) contrast(86%);
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Firefox date picker */
input[type="date"] {
  color-scheme: dark;
}

/* Form submission feedback */
.form-message {
  text-align: center;
  padding: 16px;
  margin: 16px 0;
  border: 1px solid var(--border);
  font-size: 14px;
  display: none;
}
.form-message.success {
  display: block;
  border-color: var(--gold);
  background: rgba(196, 154, 108, 0.1);
  color: var(--gold-light);
}
.form-message.error {
  display: block;
  border-color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  color: #fca5a5;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
  text-align: center;
}
.contact-info-item .label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-info-item .value {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-primary);
}
.contact-info-item .value a { color: var(--text-primary); }
.contact-info-item .value a:hover { color: var(--gold); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  margin-top: 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}
.footer-brand-name {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.footer-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.footer-col a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--gold);
  transition: all 0.2s ease;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   SERVICES PAGE — additional styles
   ========================================================================== */

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-features li {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}
.service-features li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
}
.service-features li strong {
  color: var(--gold);
  font-weight: 600;
}

/* Add-ons grid (services page) */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.addon-card {
  padding: 32px 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}
.addon-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.addon-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.addon-icon svg {
  width: 100%;
  height: 100%;
}
.addon-card h4 {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 12px;
}
.addon-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Specialty grid */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.specialty-card {
  padding: 36px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  transition: border-color 0.3s ease;
}
.specialty-card:hover {
  border-color: var(--gold);
  border-left-color: var(--gold-light);
}
.specialty-card h4 {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
}
.specialty-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Date picker calendar icon — match brand */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(70%) sepia(33%) saturate(478%) hue-rotate(347deg) brightness(95%) contrast(86%);
  cursor: pointer;
  opacity: 1;
  font-size: 18px;
  padding: 4px;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
  filter: invert(80%) sepia(50%) saturate(600%) hue-rotate(347deg) brightness(105%) contrast(86%);
}
input[type="date"]::-webkit-datetime-edit-fields-wrapper { color: var(--text-primary); }
input[type="date"]::-webkit-datetime-edit { color: var(--text-primary); }
input[type="date"]::-webkit-datetime-edit-text,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field { color: var(--text-primary); }
input[type="date"] {
  color-scheme: dark;
}

/* Form success/error messages */
.form-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 2px;
  font-size: 14px;
  text-align: center;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(196, 154, 108, 0.12);
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.form-message.error {
  display: block;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.5);
  color: #fca5a5;
}

/* ==========================================================================
   ANIMATIONS — subtle fade-in on scroll
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   SERVICES PAGES
   ========================================================================== */

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.service-overview-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-overview-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-overview-card .image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-overview-card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-overview-card:hover .image-wrap img {
  transform: scale(1.05);
}
.service-overview-card .body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-overview-card h3 {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 14px;
}
.service-overview-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.service-overview-card .learn-more {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}
.service-overview-card .learn-more:hover { gap: 14px; }
.service-overview-card .learn-more::after { content: '→'; font-size: 16px; }

/* Single Service Detail page */
.service-detail-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 180px 0 80px;
  overflow: hidden;
}
.service-detail-hero .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.service-detail-hero .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-hero .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,13,11,0.65) 0%, rgba(15,13,11,0.85) 100%);
}
.service-detail-hero .content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.service-feature {
  padding: 32px 26px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
}
.service-feature h4 {
  color: var(--gold);
  font-style: italic;
  margin-bottom: 12px;
}
.service-feature p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 50px;
}
.process-step {
  text-align: center;
}
.process-step .num {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.8;
}
.process-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Other services (related) section */
.other-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.other-service-link {
  padding: 24px 22px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}
.other-service-link:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.other-service-link h4 {
  color: var(--gold);
  font-style: italic;
  margin-bottom: 6px;
  font-size: 18px;
}
.other-service-link p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 980px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; text-align: center; padding: 8px 0; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .section { padding: 70px 0; }
  .showcase {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }
  .showcase.reverse .showcase-image { order: 0; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .photo-strip { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}

/* ==========================================================================
   IMAGE COMPARISON SLIDER (Before / After)
   Used for Sky Replacement and Virtual Staging demos
   ========================================================================== */

.compare-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-secondary);
  user-select: none;
  -webkit-user-select: none;
  cursor: ew-resize;
  touch-action: none;
}

.compare-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.compare-slider .compare-after {
  /* The "after" image is clipped from the left edge using clip-path */
  clip-path: inset(0 0 0 var(--position, 50%));
}

.compare-slider .compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position, 50%);
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4);
}

.compare-slider .compare-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border: 2px solid var(--bg-primary);
}

.compare-slider .compare-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(45deg, transparent 45%, var(--bg-primary) 45%, var(--bg-primary) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, var(--bg-primary) 45%, var(--bg-primary) 55%, transparent 55%);
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: 0 0, 100% 0, 0 100%, 100% 100%;
}

/* Arrow indicators on handle */
.compare-slider .compare-handle .arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 12px;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}
.compare-slider .compare-handle .arrows::before,
.compare-slider .compare-handle .arrows::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
}
.compare-slider .compare-handle .arrows::before {
  border-width: 5px 6px 5px 0;
  border-color: transparent var(--bg-primary) transparent transparent;
}
.compare-slider .compare-handle .arrows::after {
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent var(--bg-primary);
}

/* Before / After labels */
.compare-slider .compare-label {
  position: absolute;
  top: 20px;
  padding: 7px 16px;
  background: rgba(15, 13, 11, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 3;
}
.compare-slider .compare-label.left  { left: 20px; }
.compare-slider .compare-label.right { right: 20px; }

@media (max-width: 720px) {
  .compare-slider .compare-handle::before { width: 38px; height: 38px; }
  .compare-slider .compare-label {
    top: 12px; padding: 5px 12px; font-size: 10px;
  }
  .compare-slider .compare-label.left { left: 12px; }
  .compare-slider .compare-label.right { right: 12px; }
}

/* ==========================================================================
   VIDEO PLAYER (Toronto condo sample)
   ========================================================================== */

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-secondary);
}
.video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--bg-primary);
}

/* ==========================================================================
   VIRTUAL TOUR EMBED (Tourbuzz iframe)
   ========================================================================== */

.tour-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
}
.tour-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   FLOORPLAN SAMPLE
   ========================================================================== */

.floorplan-wrap {
  position: relative;
  width: 100%;
  padding: 24px;
  background: #f8f4ed;
  border: 1px solid var(--border);
  overflow: hidden;
}
.floorplan-wrap svg,
.floorplan-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 720px) {
  .floorplan-wrap { padding: 12px; }
}

/* ==========================================================================
   FULL-WIDTH SAMPLE SECTIONS (overrides showcase grid for samples)
   ========================================================================== */

.sample-feature {
  margin-top: 60px;
  margin-bottom: 60px;
}
.sample-feature .sample-caption {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .sample-feature { margin-top: 40px; margin-bottom: 40px; }
}
