/* ============================================================
   STYLING WITH JAS — Main Stylesheet
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

:root {
  --black: #0e0e0e;
  --white: #fdfcfa;
  --cream: #f7f4ef;
  --gold: #a8885a;
  --gold-light: #c9a97a;
  --charcoal: #1e1e1e;
  --mid: #7a746e;
  --light: #ede8e0;
  --dark-bg: #0e0e0e;
  --dark-bg2: #161616;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --max-w: 1200px;
  --header-h: 72px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

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

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }

.section-lead {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.75;
}
.section-lead.light { color: rgba(255,255,255,0.7); }

.section-header.centered { text-align: center; }
.section-header.centered .section-lead { margin: 0 auto; }

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: 2px solid var(--gold);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--charcoal); border-color: var(--charcoal); transform: translateY(-1px); }
.btn-primary.btn-lg { padding: 17px 36px; font-size: 13px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-ghost.btn-lg { padding: 17px 36px; }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: 1.5px solid var(--charcoal);
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-ghost-light:hover { background: var(--charcoal); color: var(--white); }
.btn-ghost-light.btn-lg { padding: 17px 36px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 2px;
  border: 1.5px solid var(--gold);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-dark { background: var(--dark-bg); }
.section-cream { background: var(--cream); }
.centered { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(14, 14, 14, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo-jas { color: var(--gold); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  white-space: nowrap;
}
.header-phone:hover { color: var(--gold); }
.header-phone svg { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

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

.hero {
  min-height: 100vh;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--header-h) 24px 0;
  max-width: 100%;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(168,136,90,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,0.96) 0%, rgba(14,14,14,0.80) 50%, rgba(14,14,14,0.45) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 560px;
  padding: 80px 0 80px 48px;
  animation: fadeUp 0.9s var(--ease-out) both;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-photo-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 48%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-photo-frame {
  height: 100%;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%),
              linear-gradient(to top, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) contrast(1.05);
  animation: fadeIn 1.2s var(--ease-out) 0.3s both;
}
.hero-badge {
  position: absolute;
  bottom: 60px;
  right: 60px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
  animation: scaleIn 0.6s var(--ease-out) 1s both;
}
.badge-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; line-height: 1; }
.badge-lbl { font-size: 9px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.9; }

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar { background: var(--charcoal); padding: 0; }
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  flex: 1;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

/* ============================================================
   INTRO / FEATURES
   ============================================================ */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.intro-text { position: sticky; top: 100px; }
.intro-text p { color: var(--mid); margin-bottom: 16px; line-height: 1.8; }
.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 28px 24px;
  border-left: 2px solid var(--gold);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,151,90,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--black);
}
.feature-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }

/* ============================================================
   PORTFOLIO PREVIEW
   ============================================================ */

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
  margin-top: 48px;
}
.portfolio-item { border-radius: 4px; overflow: hidden; position: relative; }
.portfolio-item.tall { grid-row: span 2; }
.portfolio-item.wide { grid-column: span 2; }
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
  border: 1px solid rgba(184,151,90,0.2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.portfolio-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8975a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.portfolio-placeholder:hover .portfolio-overlay { opacity: 1; }
.portfolio-placeholder:hover { transform: scale(1.01); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(184,151,90,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-overlay span { font-family: var(--font-display); font-size: 1.1rem; color: white; font-weight: 400; }
.portfolio-overlay small { font-size: 11px; color: rgba(255,255,255,0.8); letter-spacing: 0.08em; }

/* Portfolio note for placeholder images */
.portfolio-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}
.testimonial-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  border-top: 2px solid transparent;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.testimonial-card.featured { background: var(--black); border-top-color: var(--gold); }
.testimonial-card:not(.featured):hover { border-top-color: var(--gold); transform: translateY(-4px); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.7;
}
.testimonial-card.featured .quote-mark { opacity: 1; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 24px;
}
.testimonial-card.featured .testimonial-text { color: rgba(255,255,255,0.75); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--black); }
.testimonial-card.featured .testimonial-author strong { color: var(--white); }
.testimonial-author span { font-size: 0.8rem; color: var(--mid); }
.testimonial-card.featured .testimonial-author span { color: rgba(255,255,255,0.5); }

/* ============================================================
   ABOUT STRIP
   ============================================================ */

.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-strip-photo {
  position: relative;
  border-radius: 4px;
  overflow: visible;
}
.about-strip-photo img {
  border-radius: 4px;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(10%);
}
.about-strip-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-strip-text p { color: var(--mid); margin-bottom: 16px; line-height: 1.8; }
.credentials-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0 32px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 500;
}
.credential svg { color: var(--gold); flex-shrink: 0; }

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

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 36px 0 20px;
}
.area-pill {
  background: var(--white);
  border: 1px solid var(--light);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.2s;
}
.area-pill:hover { background: var(--gold); color: white; border-color: var(--gold); }
.areas-note { text-align: center; font-size: 14px; color: var(--mid); }
.areas-note a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.areas-note a:hover { border-bottom-color: var(--gold); }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: var(--cream);
  padding: 72px 24px;
  border-top: 1px solid var(--light);
}
.cta-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
}
.cta-banner-text p { color: var(--mid); font-size: 1rem; }
.cta-banner-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

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

.site-footer { background: var(--dark-bg); padding: 72px 24px 0; }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav { display: flex; flex-direction: column; gap: 2px; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.5); padding: 4px 0; transition: color 0.2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.page-hero {
  background: var(--dark-bg);
  padding: calc(var(--header-h) + 72px) 24px 72px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.page-hero em { color: var(--gold); font-style: italic; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 4px;
  padding: 40px 36px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.service-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(184,151,90,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.service-card p { color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
.service-card .service-includes { list-style: none; margin-bottom: 28px; }
.service-card .service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--charcoal);
  padding: 5px 0;
}
.service-card .service-includes li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}
.service-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  font-style: italic;
}

.process-section { background: var(--cream); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--light);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--black);
}
.process-step p { font-size: 0.88rem; color: var(--mid); line-height: 1.7; }

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

.about-hero {
  background: var(--dark-bg);
  padding: calc(var(--header-h) + 0px) 24px 0;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.about-hero-content {
  position: relative;
  z-index: 3;
  max-width: 580px;
  padding: 80px 48px;
}
.about-hero-photo {
  position: absolute;
  right: 0; bottom: 0; top: 0;
  width: 45%;
  overflow: hidden;
}
.about-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 40%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 40%, transparent 100%);
}
.about-bio { padding: 80px 0; }
.about-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-bio-text p { color: var(--mid); line-height: 1.85; margin-bottom: 20px; }
.credentials-list {
  background: var(--cream);
  padding: 32px;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}
.credentials-list h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
  color: var(--charcoal);
}
.cred-item:last-child { border-bottom: none; }
.cred-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.contact-info h2 em { color: var(--gold); font-style: italic; }
.contact-info p { color: var(--mid); line-height: 1.8; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184,151,90,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); margin-bottom: 3px; }
.contact-detail a { font-size: 1rem; color: var(--charcoal); transition: color 0.2s; }
.contact-detail a:hover { color: var(--gold); }

.contact-form {
  background: var(--cream);
  border-radius: 4px;
  padding: 48px 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; font-size: 14px; margin-top: 8px; }

/* ============================================================
   BLOG PAGE
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.blog-img {
  height: 200px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0.5;
}
.blog-body { padding: 24px; }
.blog-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--black);
}
.blog-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }
.blog-card .read-more {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.blog-card:hover .read-more { gap: 10px; }

/* ============================================================
   RESULTS SECTION
   ============================================================ */

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
}
.result-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--light);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.result-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }
.result-card.featured-result {
  background: var(--black);
  border-color: var(--black);
}
.result-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(168,136,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 16px;
}
.result-card.featured-result .result-icon { background: rgba(168,136,90,0.2); }
.result-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1;
  margin-bottom: 10px;
}
.result-card.featured-result .result-num { color: var(--gold); }
.result-label {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
}
.result-card.featured-result .result-label { color: rgba(255,255,255,0.6); }
.results-quote {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  text-align: left;
}
.results-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 12px;
}
.results-quote span {
  font-size: 13px;
  color: var(--mid);
  font-weight: 500;
}

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

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */

.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.portfolio-full-item {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: var(--light);
}
.portfolio-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
  display: block;
}
.portfolio-full-item:hover img { transform: scale(1.04); }
.portfolio-full-item .portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-full-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-full-item .portfolio-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: white;
  font-weight: 400;
}
.portfolio-full-item .portfolio-overlay small {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.portfolio-full-item.tall { aspect-ratio: 3/4; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-text { position: static; }
  .about-strip-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-strip-photo img { height: 380px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .main-nav, .header-cta .header-phone { display: none; }
  .header-cta .btn-primary { display: none; }
  .hamburger { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--dark-bg);
    padding: 80px 32px 32px;
    gap: 8px;
    z-index: 999;
  }
  .main-nav.open .nav-link { font-size: 1.5rem; padding: 12px 0; letter-spacing: 0.05em; }

  .hero { flex-direction: column; min-height: 100svh; padding-top: var(--header-h); }
  .hero-content { padding: 48px 20px 32px; max-width: 100%; }
  .hero-photo-wrap { position: relative; width: 100%; height: 300px; }
  .hero-photo-frame { -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 30%); }
  .hero-badge { bottom: 20px; right: 20px; width: 72px; height: 72px; }
  .badge-num { font-size: 1.3rem; }

  .stats-inner { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { width: 50%; flex: none; }

  .intro-features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .portfolio-item.tall { grid-row: span 1; }
  .portfolio-item.wide { grid-column: span 2; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .about-bio-grid { grid-template-columns: 1fr; }
  .credentials-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .portfolio-full-grid { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary.btn-lg, .btn-ghost.btn-lg { width: 100%; justify-content: center; }
  .portfolio-full-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.wide { grid-column: span 1; }
}
