:root {
  --bg: #fbfaf7;
  --paper: #ffffff;
  --cream: #f2eee7;
  --ink: #111111;
  --muted: #5f5a52;
  --line: #d8d0c4;
  --accent: #b7a17d;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px 42px;
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(216, 208, 196, 0.55);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  gap: 0;
  line-height: 1;
  letter-spacing: 9px;
  text-transform: uppercase;
}

.brand-main {
  font-size: 38px;
  font-weight: 300;
}

.brand-sub {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 7px;
}

.brand-type {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  content: "";
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 4px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.button.dark {
  background: var(--ink);
  color: var(--paper);
}

.button.dark:hover {
  background: transparent;
  color: var(--ink);
}

.hero-copy .button {
  align-self: flex-start;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(360px, 47%) 1fr;
  align-items: stretch;
  background: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 86px 0 86px 58px;
  background: linear-gradient(90deg, #fbfaf7 0%, rgba(251, 250, 247, 0.96) 67%, rgba(251, 250, 247, 0) 100%);
}

.hero h1,
.page-hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 82px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.rule {
  width: 56px;
  height: 2px;
  margin: 30px 0 24px;
  background: var(--accent);
}

.hero p,
.page-hero p {
  max-width: 430px;
  margin: 0 0 30px;
  color: #28241f;
  font-size: 18px;
}

.hero-image {
  min-height: 690px;
  background: linear-gradient(90deg, rgba(251, 250, 247, 0.25), rgba(251, 250, 247, 0)), url("../images/hero-commercial.jpg") center / cover no-repeat;
}

.section {
  padding: 66px 44px;
}

.section.tight {
  padding-top: 42px;
}

.section-title {
  margin: 0 0 28px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.section-title::after {
  display: block;
  width: 68px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--accent);
  content: "";
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 1220px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #222;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
  content: "";
}

.service-card:hover img {
  transform: scale(1.045);
  filter: saturate(0.95);
}

.service-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 32px 30px;
  color: var(--paper);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 28px;
  font-family: var(--serif);
}

.service-content h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-content p {
  max-width: 260px;
  margin: 0;
}

.card-arrow {
  position: absolute;
  right: 28px;
  bottom: 26px;
  font-size: 32px;
}

.portfolio-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 4px;
  max-width: 1440px;
  margin: 0 auto 28px;
}

.portfolio-strip img,
.image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.center {
  text-align: center;
}

.page-hero {
  padding: 96px 44px 62px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  text-align: center;
}

.page-hero h1,
.page-hero p {
  margin-right: auto;
  margin-left: auto;
}

.page-hero .rule {
  margin-right: auto;
  margin-left: auto;
}

.content-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

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

.split h2,
.copy-block h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.split p,
.copy-block p {
  color: var(--muted);
  font-size: 17px;
}

.split img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.detail-item {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.detail-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  text-transform: uppercase;
}

.detail-item p {
  margin: 0;
  color: var(--muted);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.category-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-link {
  border-top: 1px solid var(--ink);
  padding: 18px 0;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-box {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.contact-box label {
  display: block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.contact-box input,
.contact-box textarea,
.contact-box select {
  width: 100%;
  margin-top: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
}

.contact-box textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-box button:disabled { cursor: wait; opacity: .65; transform: none; }
.form-error { margin: 18px 0 0; padding: 13px 15px; border-left: 3px solid #9b573f; background: #f4e8e2; color: #6f2f20; font-size: 14px; }
.form-error a { font-weight: 700; text-decoration: underline; }
.modal-open { overflow: hidden; }
.success-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; }
.success-modal[hidden] { display: none; }
.success-modal-backdrop { position: absolute; inset: 0; background: rgba(7,9,8,.78); backdrop-filter: blur(8px); }
.success-modal-dialog { position: relative; width: min(520px,100%); padding: clamp(38px,7vw,64px); background: #111513; border: 1px solid rgba(212,174,117,.48); box-shadow: 0 30px 90px rgba(0,0,0,.5); color: #f2eee5; text-align: center; }
.success-modal-accent { display: block; width: 58px; height: 2px; margin: 0 auto 26px; background: #d4ae75; }
.success-modal-dialog h2 { margin: 0 0 16px; color: #f2eee5; font: 400 clamp(38px,8vw,56px)/1 var(--serif); letter-spacing: 0; text-transform: uppercase; }
.success-modal-lead { margin: 0 0 12px; color: #d8b57e; font-size: 14px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.success-modal-dialog p:last-of-type { margin: 0 0 30px; color: rgba(242,238,229,.78); }
.success-modal-dialog .button { min-width: 150px; }

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 42px;
  padding: 48px 56px;
}

.footer-heading {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.footer-links {
  columns: 2;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
}

.footer-cta p {
  max-width: 320px;
  margin: 0 0 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 56px;
  background: #dfd5c8;
  color: #211f1d;
  font-size: 13px;
}

.location span {
  margin: 0 14px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 20px 24px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 20px;
  }

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

@media (max-width: 940px) {

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 70px 28px 46px;
    background: var(--bg);
  }

  .hero-image {
    min-height: 430px;
  }

  .services-grid,
  .detail-list,
  .category-links,
  .image-grid,
  .contact-panel,
  .footer-main,
  .split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .brand-main {
    font-size: 32px;
  }

  .brand-sub {
    font-size: 11px;
    letter-spacing: 5px;
  }

  .brand-type {
    font-size: 10px;
  }

  .section,
  .page-hero {
    padding-right: 22px;
    padding-left: 22px;
  }

  .service-card {
    min-height: 350px;
  }

  .portfolio-strip {
    grid-template-columns: 1fr;
  }

  .footer-main,
  .footer-bottom {
    padding-right: 24px;
    padding-left: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .location span {
    display: none;
  }
}


/* Commercial launch polish */
.eyebrow { margin: 0 0 16px; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; }
.hero-actions,.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button.ghost { background: rgba(255,255,255,.58); }
.proof-strip { display: flex; justify-content: center; gap: clamp(18px,4vw,62px); padding-top: 22px; padding-bottom: 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream); color: #3b352d; font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.home-about { background: var(--paper); }
.real-estate-work-grid img { aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.real-estate-work-grid img:nth-child(5n),.real-estate-work-grid img:nth-child(7n) { aspect-ratio: 3 / 4; }
.contact-actions { margin-top: 26px; }
@media (max-width: 940px) { .proof-strip { flex-wrap: wrap; justify-content: flex-start; } }
@media (max-width: 560px) { .hero-actions,.contact-actions { flex-direction: column; align-items: stretch; } .proof-strip { padding-right: 22px; padding-left: 22px; } }


/* Content package sections */
.content-package-teaser { background: var(--cream); }
.package-intro { background: var(--paper); }
.package-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.package-card { padding: 34px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 16px 50px rgba(17, 17, 17, 0.05); }
.package-card h2,
.package-card h3 { margin: 0 0 16px; font-family: var(--serif); font-size: clamp(28px, 2.6vw, 42px); font-weight: 400; line-height: 1.12; text-transform: uppercase; }
.package-card p { color: var(--muted); margin: 0 0 20px; }
.package-list { display: grid; gap: 10px; margin: 24px 0 28px; padding: 0; list-style: none; color: var(--muted); }
.package-list li { border-top: 1px solid var(--line); padding-top: 10px; }
.compact-packages .package-card h3 { font-size: clamp(24px, 2vw, 34px); }
@media (max-width: 940px) { .package-grid { grid-template-columns: 1fr; } }

/* Commercial service and pricing experience */
.commercial-refresh { background: #f5f1e9; }
.dark-header { background: rgba(11, 13, 12, .94); border-color: rgba(214, 179, 125, .26); color: #fff; }
.dark-header .brand-type { color: #d6b37d; }
.dark-header .site-nav a::after { background: #d6b37d; }
.dark-header .nav-toggle { border-color: rgba(255,255,255,.6); }
.dark-header .nav-toggle span,.dark-header .nav-toggle::before,.dark-header .nav-toggle::after { background: #fff; }
.gold-button { border-color: #d6b37d; background: #d6b37d; color: #111; }
.gold-button:hover { border-color: #f0d6ab; background: #f0d6ab; color: #111; }
.light-button { border-color: rgba(255,255,255,.7); color: #fff; }
.light-button:hover { background: #fff; color: #111; }
.commercial-hero { position: relative; min-height: 720px; display: flex; align-items: flex-end; overflow: hidden; background: #111; color: #fff; }
.hero-gallery,.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-gallery { z-index: 0; background: #111; }
.hero-slide { object-fit: cover; object-position: var(--desktop-position,center); opacity: 0; transition: opacity 1.3s ease-in-out; }
.hero-slide.is-active { opacity: 1; }
.commercial-hero-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg,rgba(8,9,8,.92) 0%,rgba(8,9,8,.7) 40%,rgba(8,9,8,.2) 76%),linear-gradient(0deg,rgba(8,9,8,.68),transparent 56%); pointer-events: none; }
.commercial-hero-copy { position: relative; z-index: 2; width: min(760px,100%); padding: 100px 6vw; }
.hero-dots { position: absolute; z-index: 3; right: 6vw; bottom: 32px; display: flex; gap: 10px; }
.hero-dot { width: 28px; height: 28px; display: grid; place-items: center; padding: 0; border: 0; background: transparent; cursor: pointer; }
.hero-dot::before { width: 6px; height: 6px; border: 1px solid rgba(255,255,255,.78); border-radius: 50%; background: transparent; content: ""; transition: background .2s ease,border-color .2s ease,transform .2s ease; }
.hero-dot:hover::before,.hero-dot:focus-visible::before { border-color: #e2c394; transform: scale(1.35); }
.hero-dot[aria-pressed="true"]::before { border-color: #e2c394; background: #e2c394; }
.hero-dot:focus-visible { outline: 1px solid #e2c394; outline-offset: 1px; }
.commercial-hero h1,.service-page-hero h1 { margin: 0 0 22px; max-width: 800px; font-size: clamp(48px,7vw,104px); line-height: .94; text-transform: uppercase; letter-spacing: 0; }
.commercial-hero-copy>p:not(.eyebrow) { max-width: 620px; margin: 0 0 34px; color: rgba(255,255,255,.82); font-size: 20px; }
.service-intro { max-width: 900px; margin: 0 auto; padding: 100px 28px 70px; text-align: center; }
.service-intro h2,.pricing-summary h2,.pricing-sheet-section h2,.work-samples h2,.service-cta h2,.brand-statement h2 { margin: 0 0 22px; font: 400 clamp(38px,5vw,68px)/1.04 var(--serif); text-transform: uppercase; }
.service-intro .lead { max-width: 700px; margin: 0 auto; color: var(--muted); font-size: 18px; }
.commercial-services { max-width: 1320px; margin: 0 auto; padding: 0 44px 110px; }
.commercial-service-card { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 570px; background: #fff; border-top: 1px solid #c8b898; }
.commercial-service-card.reverse { grid-template-columns: .75fr 1.25fr; }
.commercial-service-card.reverse .service-visual { order: 2; }
.service-visual { position: relative; overflow: hidden; min-height: 500px; }
.service-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-visual:hover img { transform: scale(1.025); }
.service-visual>span { position: absolute; left: 28px; bottom: 20px; color: rgba(255,255,255,.8); font-size: 13px; letter-spacing: 2px; }
.service-details { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px,6vw,84px); }
.service-details h2 { margin: 0 0 18px; font: 400 clamp(34px,4vw,58px)/1.03 var(--serif); text-transform: uppercase; }
.service-details>p:not(.eyebrow):not(.starting-price) { color: var(--muted); }
.service-details .service-tagline { margin: 0 0 10px; color: #8a6c42; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.starting-price { margin: 22px 0; color: #54432e; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.starting-price strong { display: block; color: #111; font-size: 28px; letter-spacing: 0; }
.text-link { width: fit-content; padding-bottom: 5px; border-bottom: 1px solid #b89560; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; }
.brand-statement,.service-cta { padding: 100px 28px; background: #101211; color: #fff; text-align: center; }
.brand-statement>p,.service-cta>p { color: #d6b37d; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.brand-statement h2,.service-cta h2 { max-width: 880px; margin: 18px auto 34px; }
.dark-footer { background: #080908; border: 0; color: #fff; }
.dark-footer .brand-type,.dark-footer .footer-cta p { color: #d6b37d; }
.dark-footer .footer-bottom { background: #111311; color: #aaa; border-top: 1px solid rgba(255,255,255,.1); }
.service-page-hero { position: relative; min-height: 650px; display: flex; align-items: flex-end; padding: 90px 6vw; overflow: hidden; background-color: #111; background-size: cover; background-position: center; color: #fff; }
.service-page-hero::before { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(8,9,8,.94),rgba(8,9,8,.62) 46%,rgba(8,9,8,.12)); content: ""; }
.service-page-hero>div { position: relative; z-index: 1; max-width: 820px; }
.service-page-hero p:not(.eyebrow) { max-width: 640px; margin: 0 0 32px; color: rgba(255,255,255,.82); font-size: 20px; }
.headshot-hero { background-image: url("../images/headshots/headshot-03.jpg"); background-position: center 30%; }
.content-hero { background-image: url("../images/lifestyle/lifestyle-02.jpg"); }
.realty-hero { background-image: url("../images/pak-work/pak-studios-phoenix-real-estate-photography-05.jpg"); }
.pricing-summary { padding: 100px 44px; text-align: center; }
.section-lead { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 18px; }
.benefit-band { display: grid; grid-template-columns: repeat(4,1fr); background: #111311; color: #fff; border-top: 1px solid rgba(214,179,125,.3); border-bottom: 1px solid rgba(214,179,125,.3); }
.benefit-band article { min-height: 140px; display: flex; flex-direction: column; justify-content: center; padding: 26px 30px; border-right: 1px solid rgba(255,255,255,.12); text-align: center; }
.benefit-band article:last-child { border-right: 0; }
.benefit-band strong { color: #e2c394; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; }
.benefit-band span { margin-top: 6px; color: rgba(255,255,255,.7); font-size: 14px; }
.price-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; max-width: 1200px; margin: 44px auto 0; text-align: left; }
.price-card-grid.four-up { grid-template-columns: repeat(4,minmax(0,1fr)); }
.price-card { position: relative; padding: 34px; background: #fff; border: 1px solid #d8d0c4; }
.price-card.featured { border-color: #b89560; box-shadow: inset 0 4px 0 #b89560; }
.price-label { position: absolute; top: 0; right: 0; padding: 7px 10px; background: #6b5031; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.price-card>p { min-height: 44px; margin: 0 0 12px; font-size: 16px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }
.price-card>p small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }
.price-card>strong { display: block; color: #4e3926; font-size: clamp(38px,4vw,56px); line-height: 1; }
.price-card>strong small { font-size: 12px; text-transform: uppercase; }
.price-card ul { display: grid; gap: 10px; margin: 25px 0 0; padding: 22px 0 0; border-top: 1px solid #d8d0c4; list-style: none; color: #4e4a45; }
.price-card li::before { margin-right: 9px; color: #b89560; content: "✓"; }
.monthly-note { margin: 30px auto 0; color: var(--muted); }
.monthly-section { padding: 100px 44px; background: #181a19; color: #fff; }
.monthly-section .price-card { color: #111; }
.section-heading { max-width: 850px; margin: 0 auto 42px; text-align: center; }
.section-heading h2,.addons-section h2,.express-section h2 { margin: 0; font: 400 clamp(38px,5vw,66px)/1.04 var(--serif); text-transform: uppercase; }
.card-note { margin-top: 24px; padding: 14px; background: #eee1ce; color: #4e3926; font-size: 13px; text-align: center; }
.addons-section { padding: 100px 44px; background: #eee7db; }
.addons-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; max-width: 1200px; margin: 0 auto; background: #cdbf9e; border: 1px solid #cdbf9e; }
.addons-grid article { min-height: 150px; padding: 28px; background: #fbfaf7; }
.addons-grid h3 { margin: 0 0 18px; font-size: 13px; letter-spacing: .8px; text-transform: uppercase; }
.addons-grid strong { color: #5c422a; font-size: 20px; }
.addons-grid p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.express-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 590px; background: #fff; }
.express-section>article { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px,7vw,100px); }
.express-photo img { width: 100%; height: 100%; object-fit: cover; }
.express-price { display: flex; align-items: baseline; gap: 18px; margin: 24px 0; }
.express-price strong { color: #5c422a; font-size: 60px; line-height: 1; }
.express-price span { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.contact-inline { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 34px; margin-top: 34px; color: #d8c7ab; font-size: 13px; letter-spacing: .5px; }
.included-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 1100px; margin: 28px auto 0; }
.included-row span { padding: 10px 14px; border: 1px solid #cdbf9e; background: rgba(255,255,255,.55); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.pricing-sheet-section { display: grid; grid-template-columns: minmax(260px,.55fr) minmax(500px,1.45fr); gap: 54px; align-items: start; padding: 100px max(44px,6vw); background: #131514; color: #fff; }
.pricing-sheet-section>div { position: sticky; top: 150px; }
.pricing-sheet-section>div>p:not(.eyebrow) { color: #bfb9ae; }
.pricing-sheet-section img { width: 100%; border: 1px solid rgba(214,179,125,.25); box-shadow: 0 28px 70px rgba(0,0,0,.38); }
.work-samples { padding: 100px 44px; text-align: center; }
.work-samples .image-grid { max-width: 1280px; margin: 42px auto 0; grid-template-columns: repeat(4,1fr); }
.work-samples .image-grid img { height: 100%; aspect-ratio: 4/5; }
.work-samples .real-estate-work-grid { grid-template-columns: repeat(3,1fr); }
.work-samples .real-estate-work-grid img { aspect-ratio: 4/3; }
.rotating-gallery-frame { position: relative; overflow: hidden; aspect-ratio: 4/5; background: #d8d0c4; }
.real-estate-work-grid .rotating-gallery-frame { aspect-ratio: 4/3; }
.work-samples .rotating-gallery-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: opacity 1s ease; }
.rotating-gallery-frame .gallery-image-next { z-index: 1; opacity: 0; }
.rotating-gallery-frame.is-transitioning>img:first-child { opacity: 0; }
.rotating-gallery-frame.is-transitioning .gallery-image-next { opacity: 1; }
@media (max-width: 940px) {
  .dark-header .site-nav { width: 100%; }
  .commercial-hero { min-height: 660px; }
  .commercial-service-card,.commercial-service-card.reverse { grid-template-columns: 1fr; }
  .commercial-service-card.reverse .service-visual { order: 0; }
  .service-visual { min-height: 440px; }
  .price-card-grid,.price-card-grid.four-up { grid-template-columns: repeat(2,1fr); }
  .benefit-band { grid-template-columns: repeat(2,1fr); }
  .benefit-band article:nth-child(2) { border-right: 0; }
  .addons-grid { grid-template-columns: repeat(2,1fr); }
  .express-section { grid-template-columns: 1fr; }
  .express-photo { min-height: 440px; }
  .pricing-sheet-section { grid-template-columns: 1fr; }
  .pricing-sheet-section>div { position: static; }
  .work-samples .image-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .commercial-hero { min-height: 620px; }
  .commercial-hero-copy { padding: 76px 22px; }
  .commercial-hero-shade { background: linear-gradient(0deg,rgba(8,9,8,.95),rgba(8,9,8,.35) 82%); }
  .hero-slide { object-position: var(--mobile-position,var(--desktop-position,center)); }
  .hero-dots { right: auto; bottom: 20px; left: 22px; }
  .commercial-hero h1,.service-page-hero h1 { font-size: 48px; }
  .commercial-services { padding: 0 18px 70px; }
  .service-visual { min-height: 340px; }
  .service-details { padding: 38px 26px 48px; }
  .service-page-hero { min-height: 580px; padding: 74px 22px 58px; }
  .price-card-grid,.price-card-grid.four-up { grid-template-columns: 1fr; }
  .pricing-summary,.pricing-sheet-section,.work-samples,.monthly-section,.addons-section { padding: 72px 20px; }
  .benefit-band { grid-template-columns: 1fr; }
  .benefit-band article { min-height: 120px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .benefit-band article:last-child { border-bottom: 0; }
  .addons-grid { grid-template-columns: 1fr; }
  .express-photo { min-height: 310px; }
  .express-section>article { padding: 52px 22px; }
  .pricing-sheet-section { gap: 30px; }
  .work-samples .image-grid,.work-samples .real-estate-work-grid { grid-template-columns: 1fr; }
  .work-samples .rotating-image-grid,.work-samples .real-estate-work-grid.rotating-image-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-dot::before { transition: none; }
  .work-samples .rotating-gallery-frame img { transition: none; }
}

/* Homepage reconstructed from the supplied Pak Studios commercial mockup */
.home-page { background: #111513; }
.home-header { min-height: 88px; padding: 12px 30px; background: rgba(13,17,15,.97); }
.home-header .brand { min-width: 165px; padding-right: 28px; border-right: 1px solid rgba(212,174,117,.22); }
.home-header .brand-main { font-size: 36px; }
.home-header .site-nav { gap: clamp(16px,2vw,30px); font-size: 11px; }
.home-header .site-nav .button { min-height: 42px; padding: 0 18px; }
.home-hero { min-height: calc(100vh - 88px); max-height: 790px; }
.home-hero .commercial-hero-copy { width: min(680px,100%); padding: 92px 5.2vw 96px; }
.home-hero .commercial-hero-copy .eyebrow { margin-bottom: 22px; color: #d8b57e; }
.home-hero h1 { max-width: 620px; font-family: var(--sans); font-size: clamp(52px,6.1vw,88px); font-weight: 800; line-height: .91; }
.home-hero h1 span { display: block; }
.hero-title-white { color: #fff; }
.hero-title-gold { margin-top: 8px; color: #d8b57e; }
.home-hero .commercial-hero-copy>p:not(.eyebrow) { max-width: 510px; font-size: 17px; }
.home-hero .commercial-hero-shade { background: linear-gradient(90deg,rgba(8,11,9,.96) 0%,rgba(8,11,9,.78) 35%,rgba(8,11,9,.22) 70%),linear-gradient(0deg,rgba(8,11,9,.65),transparent 58%); }
.home-hero .hero-dots { right: auto; bottom: 30px; left: 5.2vw; gap: 18px; }
.home-hero .hero-dot { width: auto; height: 28px; color: rgba(255,255,255,.62); font: 700 11px/1 var(--sans); letter-spacing: 1px; }
.home-hero .hero-dot::before { display: none; }
.home-hero .hero-dot[aria-pressed="true"] { color: #d8b57e; }
.home-hero .hero-dot[aria-pressed="true"]::after { display: inline-block; width: 24px; height: 1px; margin-left: 8px; background: #d8b57e; vertical-align: middle; content: ""; }

.home-services { width: 100%; }
.editorial-service { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); min-height: clamp(540px,44vw,680px); }
.editorial-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(54px,6.5vw,105px); }
.cream-panel { background: #f2eee5; color: #171717; }
.dark-panel { background: #111513; color: #fff; }
.editorial-kicker { display: flex; align-items: center; gap: 16px; margin: 0 0 28px; font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.editorial-kicker strong { font-size: 15px; }
.editorial-kicker>span { width: clamp(54px,8vw,126px); height: 1px; background: #d4ae75; }
.dark-panel .editorial-kicker { color: #e2c394; }
.editorial-copy h2 { margin: 0 0 24px; font: 400 clamp(43px,5vw,72px)/.96 var(--serif); letter-spacing: 0; text-transform: uppercase; }
.editorial-description { max-width: 560px; margin: 0; font-size: 18px; line-height: 1.55; }
.dark-panel .editorial-description { color: rgba(255,255,255,.76); }
.editorial-features { display: grid; gap: 16px; margin: 32px 0 36px; padding: 0; list-style: none; }
.editorial-features li { display: grid; grid-template-columns: 32px 1fr; align-items: center; font-size: 16px; }
.editorial-features li>span { font-size: 24px; line-height: 1; text-align: center; }
.dark-panel .editorial-features li>span { color: #e2c394; }
.editorial-copy .button { align-self: flex-start; }
.editorial-image { min-height: 540px; overflow: hidden; background: #222; }
.editorial-image picture { display: block; width: 100%; height: 100%; }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.editorial-service:hover .editorial-image img { transform: scale(1.018); }
.content-service .editorial-image img { object-position: center 42%; }
.real-estate-service .editorial-image img { object-position: center; }
.headshot-service .editorial-image img { object-position: center 24%; }

.home-final-cta { position: relative; min-height: 360px; display: grid; grid-template-columns: minmax(0,1.5fr) minmax(240px,.5fr); gap: 60px; align-items: center; padding: 72px 6vw; overflow: hidden; background: #111513 url("../images/hero-commercial.jpg") center 58%/cover no-repeat; color: #fff; }
.home-final-cta::before { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(8,11,9,.98),rgba(8,11,9,.88) 58%,rgba(8,11,9,.62)); content: ""; }
.home-final-cta>div { position: relative; z-index: 1; }
.home-final-cta h2 { margin: 0 0 18px; font: 400 clamp(43px,5vw,70px)/.96 var(--serif); text-transform: uppercase; }
.home-final-cta>div>p:not(.eyebrow) { max-width: 660px; margin: 0; color: rgba(255,255,255,.74); font-size: 17px; }
.home-final-actions { display: grid; gap: 12px; justify-self: end; width: min(220px,100%); }

.home-footer { background: #0b0e0c; color: #fff; border-top: 1px solid rgba(255,255,255,.09); }
.home-footer-main { display: grid; grid-template-columns: 190px 1fr auto; gap: 40px; align-items: center; padding: 30px 4vw 22px; }
.home-footer .brand-main { font-size: 31px; }
.home-footer nav { display: flex; justify-content: center; gap: clamp(14px,2vw,28px); font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.home-social { display: flex; gap: 10px; }
.home-social a { min-width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); font-size: 9px; font-weight: 800; }
.home-footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 17px 4vw; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.54); font-size: 10px; letter-spacing: .5px; text-transform: uppercase; }
.home-footer-bottom span:last-child { color: #d4ae75; }

@media (max-width: 1180px) {
  .home-header { min-height: 78px; }
  .home-header .brand { border-right: 0; }
  .home-header .nav-toggle { position: absolute; top: 18px; right: 20px; }
  .home-header .site-nav { padding: 24px 0 14px; border-top: 1px solid rgba(255,255,255,.1); }
  .home-hero { min-height: calc(100vh - 78px); }
  .editorial-service { min-height: 560px; }
  .editorial-copy { padding: 56px 42px; }
}

@media (max-width: 820px) {
  .home-final-cta { grid-template-columns: 1fr; gap: 36px; }
  .home-final-actions { justify-self: start; }
  .home-footer-main { grid-template-columns: 1fr; text-align: center; }
  .home-footer .brand { justify-self: center; }
  .home-footer nav { flex-wrap: wrap; }
  .home-social { justify-content: center; }
}

@media (max-width: 767px) {
  .editorial-service { grid-template-columns: 1fr; min-height: 0; }
  .editorial-copy { order: 1; min-height: 0; padding: 48px 24px; }
  .editorial-image { order: 2; height: clamp(280px,75vw,350px); min-height: 0; }
  .editorial-copy h2 { font-size: clamp(2.5rem,11vw,4rem); }
  .editorial-kicker { margin-bottom: 20px; }
  .editorial-description { margin-bottom: 0; }
  .editorial-features { gap: 12px; margin: 24px 0 28px; }
  .content-service .editorial-image img { object-position: 58% 45%; }
  .real-estate-service .editorial-image img { object-position: center 48%; }
  .headshot-service .editorial-image img { object-position: center 20%; }
}

@media (max-width: 560px) {
  .home-header { padding: 10px 18px; }
  .home-header .nav-toggle { display: block !important; z-index: 10; border-color: #d8b57e !important; }
  .home-header .nav-toggle span,.home-header .nav-toggle::before,.home-header .nav-toggle::after { background: #fff !important; }
  .home-header .brand-main { font-size: 30px; }
  .home-hero { min-height: 680px; }
  .home-hero .commercial-hero-copy { padding: 76px 22px 110px; }
  .home-hero .commercial-hero-copy { min-width: 0; max-width: 100%; }
  .home-hero .commercial-hero-copy .eyebrow { max-width: 310px; font-size: 9px; line-height: 1.8; letter-spacing: 1.4px; }
  .home-hero h1 { width: calc(100vw - 44px); max-width: calc(100vw - 44px); font-size: 40px; }
  .home-hero .commercial-hero-copy>p:not(.eyebrow),.home-hero .hero-actions { width: calc(100vw - 44px); max-width: calc(100vw - 44px); }
  .home-hero .commercial-hero-shade { background: linear-gradient(0deg,rgba(8,11,9,.97) 0%,rgba(8,11,9,.72) 58%,rgba(8,11,9,.34) 100%); }
  .home-hero .hero-dots { bottom: 22px; left: 22px; gap: 13px; }
  .home-hero .hero-dot[aria-pressed="true"]::after { width: 15px; margin-left: 5px; }
  .editorial-kicker { gap: 10px; font-size: 9px; }
  .editorial-kicker>span { width: 42px; }
  .editorial-features li { font-size: 15px; }
  .home-final-cta { min-height: 480px; padding: 66px 24px; }
  .home-final-actions { width: 100%; }
  .home-footer-bottom { flex-direction: column; text-align: center; }
}
