.sales-page,
.sales-booking-page {
  --company-ink: #101413;
  --company-paper: #f4f6f3;
  --company-white: #ffffff;
  --company-green: #1f5149;
  --company-red: #8b3040;
  --company-muted: #606865;
  --company-line: #cfd5d1;
  color: var(--company-ink);
  background: var(--company-paper);
}

.sales-page *,
.sales-booking-page * {
  letter-spacing: 0;
}

.company-bar {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 6px 20px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--company-ink);
  font-size: 0.72rem;
  font-weight: 700;
}

.company-bar span + span::before {
  content: "·";
  margin-right: 34px;
  color: rgba(255, 255, 255, 0.4);
}

.sales-page .site-header,
.sales-booking-page .site-header {
  top: 34px;
}

.sales-booking-page .site-header-solid {
  position: fixed;
  color: var(--company-ink);
  background: rgba(255, 255, 255, 0.96);
}

.sales-page .site-header.is-scrolled {
  color: var(--company-ink);
  background: rgba(255, 255, 255, 0.96);
}

.sales-page .brand-mark,
.sales-booking-page .brand-mark {
  border-radius: 50%;
}

.sales-page .brand-mark::before,
.sales-booking-page .brand-mark::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 10px;
  right: -3px;
  top: -4px;
  border: 1px solid currentColor;
  border-radius: 50% 0 50% 0;
  transform: rotate(-28deg);
}

.sales-page .brand-copy strong,
.sales-booking-page .brand-copy strong,
.formal-footer .footer-brand strong {
  font-family: var(--sans);
  font-weight: 900;
}

.sales-page .nav-cta,
.sales-booking-page .nav-cta {
  border-radius: 2px;
  color: #fff;
  border-color: var(--company-green);
  background: var(--company-green);
}

.photo-hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--company-ink);
}

.photo-hero-image,
.photo-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.photo-hero-image {
  object-fit: cover;
  object-position: center 34%;
}

.photo-hero-shade {
  background: rgba(7, 12, 11, 0.66);
}

.photo-hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 64px));
  margin: 0 auto 126px max(32px, 7vw);
}

.photo-kicker,
.section-tag {
  margin-bottom: 14px;
  color: var(--company-green);
  font-size: 0.74rem;
  line-height: 1.4;
  font-weight: 900;
  text-transform: uppercase;
}

.section-tag.light,
.photo-hero .photo-kicker {
  color: #b9d8d1;
}

.photo-hero h1 {
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 5.2rem;
  line-height: 1;
  font-weight: 950;
}

.photo-hero-lead {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 800;
}

.photo-hero-content > p:last-of-type {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.8;
}

.photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.photo-button {
  display: inline-flex;
  min-width: 168px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.photo-button:hover,
.photo-button:focus-visible {
  transform: translateY(-2px);
}

.photo-button-primary {
  color: #fff;
  background: var(--company-green);
}

.photo-button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.22);
}

.photo-hero-services {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(7, 12, 11, 0.55);
}

.photo-hero-services span {
  display: grid;
  min-height: 62px;
  place-items: center;
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 800;
}

.photo-hero-services span:last-child {
  border-right: 0;
}

.company-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 80px;
  padding: 104px max(24px, 7vw);
  background: var(--company-white);
}

.company-intro h2,
.photo-heading h2,
.pricing-band h2,
.about-copy h2,
.formal-contact h2,
.quote-hero h1 {
  margin-bottom: 0;
  font-family: var(--sans);
  font-size: 3.45rem;
  line-height: 1.14;
  font-weight: 950;
}

.company-intro > div:last-child {
  color: var(--company-muted);
}

.company-intro > div:last-child p:last-child {
  margin-bottom: 0;
}

.photo-section {
  padding: 108px max(24px, 6vw);
}

.photo-heading {
  width: min(1240px, 100%);
  margin: 0 auto 50px;
}

.photo-heading > p:last-child {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--company-muted);
}

.service-catalog {
  background: var(--company-paper);
}

.photo-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.photo-service {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--company-line);
  border-radius: 4px;
  background: #fff;
}

.photo-service img {
  height: 100%;
  object-fit: cover;
}

.photo-service > div {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.photo-service span,
.quote-prep-grid span {
  color: var(--company-green);
  font-size: 0.76rem;
  font-weight: 900;
}

.photo-service h3,
.formal-process-list h3,
.quote-prep-grid h3 {
  margin: 44px 0 12px;
  font-family: var(--sans);
  font-size: 1.38rem;
  line-height: 1.3;
  font-weight: 900;
}

.photo-service p,
.formal-process-list p,
.quote-prep-grid p {
  color: var(--company-muted);
}

.photo-service a {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--company-ink);
  font-weight: 900;
}

.photo-service-text {
  grid-template-columns: 1fr;
  min-height: 280px;
  color: #fff;
  border-color: var(--company-ink);
  background: var(--company-ink);
}

.photo-service-text p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.66);
}

.photo-service-text a {
  border-top-color: rgba(255, 255, 255, 0.38);
}

.accent-service {
  border-color: var(--company-green);
  background: var(--company-green);
}

.accent-service span {
  color: #d9efe9;
}

.portfolio-proof {
  color: #fff;
  background: var(--company-ink);
}

.split-photo-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 70px;
  align-items: end;
}

.split-photo-heading > div:last-child p {
  color: rgba(255, 255, 255, 0.65);
}

.split-photo-heading > div:last-child a {
  display: inline-flex;
  margin-top: 14px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-weight: 900;
}

.formal-gallery {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.formal-process {
  background: var(--company-white);
}

.formal-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1240px, 100%);
  padding: 0;
  margin: 0 auto;
  border-top: 1px solid var(--company-ink);
  list-style: none;
}

.formal-process-list li {
  min-height: 300px;
  padding: 28px 24px 24px 0;
  border-right: 1px solid var(--company-line);
}

.formal-process-list li + li {
  padding-left: 24px;
}

.formal-process-list li:last-child {
  border-right: 0;
}

.formal-process-list > li > span {
  color: var(--company-red);
  font-size: 0.76rem;
  font-weight: 900;
}

.pricing-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
  padding: 96px max(24px, 7vw);
  color: #fff;
  background: var(--company-green);
}

.pricing-details > p,
.pricing-details li {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-details ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  padding: 0;
  margin: 26px 0 32px;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.pricing-details li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.pricing-band .photo-button-primary,
.formal-contact .photo-button-primary {
  color: var(--company-ink);
  background: #fff;
}

.about-company {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: stretch;
  background: var(--company-paper);
}

.about-image img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.about-copy {
  align-self: center;
  max-width: 670px;
}

.about-copy > p:not(.section-tag) {
  margin: 26px 0 34px;
  color: var(--company-muted);
}

.about-copy dl {
  margin: 0;
  border-top: 1px solid var(--company-line);
}

.about-copy dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--company-line);
}

.about-copy dt {
  font-weight: 900;
}

.about-copy dd {
  margin: 0;
  color: var(--company-muted);
}

.formal-faq {
  background: var(--company-white);
}

.formal-faq .faq-list {
  width: min(1000px, 100%);
  margin: 0 auto;
}

.formal-faq details {
  border-bottom-color: var(--company-line);
}

.formal-contact {
  padding: 98px max(24px, 8vw);
  color: #fff;
  background: var(--company-red);
}

.formal-contact h2 {
  max-width: 900px;
}

.formal-contact > p:not(.section-tag) {
  max-width: 650px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.78);
}

.direct-contact,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.direct-contact {
  margin-top: 24px;
}

.direct-contact a,
.footer-contact a {
  color: inherit;
  text-underline-offset: 4px;
}

.formal-contact .direct-contact a,
.contact-cta .direct-contact a {
  color: rgba(255, 255, 255, 0.88);
}

.formal-footer {
  background: var(--company-ink);
}

.formal-footer .footer-contact {
  margin-top: 4px;
}

.inquiry-contact {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 24px;
  padding-top: 20px;
  border-top: 1px solid var(--company-line);
}

.inquiry-contact p {
  grid-row: 1 / span 2;
  margin: 0;
  font-weight: 900;
}

.inquiry-contact a {
  min-width: 0;
  color: var(--company-ink);
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

/* Quote page */
.quote-hero {
  padding: 190px max(24px, 7vw) 86px;
  color: #fff;
  background: var(--company-ink);
}

.quote-hero > div {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.quote-hero p:last-child {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.quote-prep {
  background: var(--company-paper);
}

.quote-prep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1240px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--company-ink);
}

.quote-prep-grid article {
  min-height: 230px;
  padding: 26px 24px 22px 0;
  border-right: 1px solid var(--company-line);
}

.quote-prep-grid article + article {
  padding-left: 24px;
}

.quote-prep-grid article:last-child {
  border-right: 0;
}

.formal-inquiry {
  background: var(--company-white);
}

.sales-booking-page .inquiry-intro,
.sales-booking-page .inquiry-form,
.sales-booking-page .process-grid article,
.sales-booking-page .button {
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .photo-hero h1 { font-size: 4.2rem; }
  .company-intro,
  .pricing-band,
  .about-company { grid-template-columns: 1fr; gap: 42px; }
  .photo-service-grid { grid-template-columns: 1fr; }
  .formal-process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .formal-process-list li:nth-child(2) { border-right: 0; }
  .about-image img { min-height: 520px; max-height: 720px; }
}

@media (max-width: 760px) {
  .company-bar {
    min-height: 30px;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 0.66rem;
  }
  .company-bar span + span::before { margin-right: 12px; }
  .sales-page .site-header,
  .sales-booking-page .site-header { top: 30px; }
  .photo-hero { min-height: 90svh; }
  .photo-hero-content { width: calc(100% - 36px); margin: 0 18px 124px; }
  .photo-hero h1 { font-size: 3.1rem; }
  .photo-hero-lead { font-size: 1.2rem; }
  .photo-hero-services { grid-template-columns: repeat(5, minmax(88px, 1fr)); overflow-x: auto; }
  .photo-hero-services span { min-height: 56px; font-size: 0.72rem; }
  .company-intro,
  .photo-section { padding: 76px 18px; }
  .company-intro { gap: 28px; }
  .company-intro h2,
  .photo-heading h2,
  .pricing-band h2,
  .about-copy h2,
  .formal-contact h2,
  .quote-hero h1 { font-size: 2.35rem; }
  .photo-service { grid-template-columns: 1fr; }
  .photo-service img { height: 300px; }
  .photo-service h3 { margin-top: 34px; }
  .photo-service-text { min-height: 300px; }
  .split-photo-heading { grid-template-columns: 1fr; gap: 24px; }
  .formal-process-list { grid-template-columns: 1fr; }
  .formal-process-list li,
  .formal-process-list li + li { min-height: 0; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--company-line); }
  .formal-process-list h3 { margin-top: 28px; }
  .pricing-band { padding: 76px 18px; }
  .pricing-details ul { grid-template-columns: 1fr; }
  .about-company { padding: 0; gap: 0; }
  .about-image img { min-height: 440px; }
  .about-copy { padding: 68px 18px; }
  .formal-contact { padding: 76px 18px; }
  .inquiry-contact { grid-template-columns: 1fr; }
  .inquiry-contact p { grid-row: auto; }
  .quote-hero { padding: 164px 18px 68px; }
  .quote-prep-grid { grid-template-columns: 1fr; }
  .quote-prep-grid article,
  .quote-prep-grid article + article { min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--company-line); }
  .quote-prep-grid h3 { margin-top: 24px; }
}

@media (max-width: 430px) {
  .photo-hero h1 { font-size: 2.7rem; }
  .photo-actions { display: grid; width: 100%; }
  .photo-button { width: 100%; }
  .photo-service img { height: 260px; }
  .photo-service > div { padding: 22px; }
  .about-copy dl div { grid-template-columns: 1fr; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .photo-button { transition: none; }
}
