:root {
  --ink: #1c2927;
  --muted: #5b6864;
  --teal: #166855;
  --coral: #c74639;
  --sun: #efc34a;
  --line: #dce2dd;
  --paper: #f5f7f4;
  --display: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --content-max: 1180px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  line-height: 1.6;
}
body.modal-open {
  overflow: hidden;
}
body,
main,
section,
div {
  min-width: 0;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.45;
  cursor: default;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #da763d;
  outline-offset: 4px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.1;
}
h1 {
  font-size: 76px;
  max-width: 800px;
}
h2 {
  font-size: 46px;
}
h3 {
  font-size: 19px;
  line-height: 1.4;
}
svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
button svg {
  pointer-events: none;
}
.wrap {
  width: min(var(--content-max), calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding-block: 88px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  background: white;
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  z-index: 30;
}
.header-inner {
  max-width: 1440px;
  margin: auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.brand span {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 650;
  line-height: 1.15;
}
.brand small {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}
.main-nav a {
  padding: 10px 0;
}
.main-nav a:hover {
  color: var(--teal);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: background 0.2s;
}
.button-dark {
  background: var(--teal);
  color: #fff;
}
.button-dark:hover {
  background: #104c3e;
}
.button-light {
  background: var(--sun);
  color: #172b25;
}
.button-light:hover {
  background: #f6d476;
}
.button-outline {
  border-color: var(--line);
  background: transparent;
}
.button-ghost {
  border-color: #ffffff9c;
  color: #fff;
  background: #11201c33;
}
.icon-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: inherit;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  color: white;
  min-height: 640px;
  height: min(760px, 82svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    0deg,
    rgba(9, 23, 18, 0.86),
    rgba(9, 23, 18, 0.05) 86%
  );
}
.hero-content {
  padding-block: 54px;
}
.hero .eyebrow {
  color: #fff;
  margin-bottom: 14px;
}
.hero h1 {
  max-width: 800px;
}
.hero-subtitle {
  font-size: 19px;
  max-width: 540px;
  margin: 22px 0 28px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.experience-band {
  border-bottom: 1px solid var(--line);
}
.experience-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 25px;
  font-size: 13px;
}
.experience-band strong {
  font-size: 17px;
  color: var(--teal);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 36px;
}
.section-heading > p {
  max-width: 350px;
  color: var(--muted);
  font-size: 15px;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 24px;
}
.project-card {
  border: 0;
  background: none;
  text-align: left;
  padding: 0;
  color: inherit;
  min-width: 0;
}
.project-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: #edf0ec;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.project-card:hover img {
  transform: scale(1.025);
}
.project-image .project-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
}
.project-card .project-meta {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  margin-top: 16px;
}
.project-card h3 {
  font-size: 21px;
  font-family: var(--display);
  font-weight: 500;
}
.project-card p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.project-card .project-count {
  font-size: 12px;
  white-space: nowrap;
  color: var(--muted);
  padding-top: 4px;
}
.section-end {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 36px;
  color: var(--muted);
  font-size: 14px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 800;
  font-size: 14px;
  min-height: 44px;
}
.services-band {
  background: var(--paper);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 32px;
}
.service-item {
  padding: 28px 0;
  border-top: 1px solid #cdd6ce;
}
.service-number {
  font-size: 11px;
  color: var(--coral);
  font-weight: 800;
}
.service-item h3 {
  margin: 15px 0 12px;
}
.service-item p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}
.service-item .service-uses {
  font-size: 12px;
  min-height: 40px;
}
.process-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 0;
}
.process-grid li {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.process-grid span {
  font-size: 13px;
  color: var(--coral);
  font-weight: 800;
}
.process-grid h3 {
  margin: 12px 0 10px;
}
.process-grid p {
  font-size: 14px;
  color: var(--muted);
}
.portfolio-band {
  background: #f0f4f3;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 1px solid #cad7d2;
  padding-bottom: 14px;
  margin-bottom: 24px;
}
.filter {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 10px 13px;
  min-height: 44px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}
.filter.is-active {
  background: var(--teal);
  color: white;
}
.gallery {
  columns: 3;
  column-gap: 12px;
}
.photo-card {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 12px;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
  border: 0;
  border-radius: 4px;
  padding: 0;
  background: #e1e7e1;
  color: #fff;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .photo-card img {
    transition:
      transform 420ms ease,
      filter 420ms ease;
  }
  .photo-card span {
    transition: padding-bottom 260ms ease;
  }
  .photo-card:hover img,
  .photo-card:focus-visible img {
    transform: scale(1.045);
    filter: brightness(1.04);
  }
  .photo-card:hover span,
  .photo-card:focus-visible span {
    padding-bottom: 18px;
  }
}
@media (hover: none) and (prefers-reduced-motion: no-preference) {
  .photo-card:active img {
    transform: scale(1.015);
  }
}
.photo-card.tall {
  aspect-ratio: 4/5;
}
.photo-card.wide {
  aspect-ratio: 3/2;
}
.photo-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: left;
  padding: 38px 14px 12px;
  background: linear-gradient(transparent, #09150cd9);
  font-size: 12px;
  font-weight: 600;
}
.load-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 28px;
}
.load-row span,
.gallery-status {
  font-size: 13px;
  color: var(--muted);
}
.gallery-status {
  margin-bottom: 16px;
}
.trust {
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}
.trust ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  font-family: var(--display);
  font-size: 24px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}
.testimonial-grid blockquote {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial-grid cite {
  display: block;
  font-size: 13px;
  margin-top: 12px;
  color: var(--muted);
}
.faq-section {
  max-width: 860px;
}
.faq-section details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-section summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 0;
}
.faq-section details p {
  padding: 16px 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.contact-band {
  background: #090b0a;
  color: white;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact-band .eyebrow {
  color: #a4cabc;
}
.contact-band h2 {
  font-size: 45px;
}
.photographer {
  display: flex;
  gap: 20px;
  margin: 32px 0;
  align-items: flex-start;
}
.photographer img {
  width: 104px;
  height: 130px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.photographer h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.photographer p {
  font-size: 14px;
  color: #bbc7c1;
}
.contact-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  min-height: 48px;
}
.contact-email,
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bdc9c2;
  min-height: 44px;
  font-size: 14px;
}
.brief-form {
  display: grid;
  gap: 16px;
  border-left: 1px solid #ffffff26;
  padding-left: 40px;
}
.brief-form h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.brief-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  color: #d5ded8;
  font-weight: 700;
}
input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #53615a;
  border-radius: 4px;
  padding: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  min-height: 48px;
}
textarea {
  resize: vertical;
}
.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-note {
  font-size: 12px;
  color: #aab8af;
}
.brief-form [role="status"]:empty {
  display: none;
}
.site-footer {
  padding-block: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-footer p,
.site-footer > a:last-child {
  font-size: 12px;
  color: var(--muted);
}
.mobile-contact {
  display: none;
}
.preview-bar {
  padding: 10px 20px;
  background: #f8d36c;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.preview-bar a {
  text-decoration: underline;
  margin-left: 10px;
}
dialog {
  border: 0;
  padding: 0;
  border-radius: 6px;
  max-height: 92svh;
  width: min(960px, calc(100% - 32px));
  color: var(--ink);
}
dialog::backdrop {
  background: #08120ddd;
}
.dialog-top {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: white;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.project-dialog-content {
  padding: 28px;
}
.project-dialog-content h2 {
  font-size: 36px;
}
.project-dialog-content > p {
  margin-bottom: 20px;
}
.project-dialog-content dl {
  display: grid;
  gap: 12px;
}
.project-dialog-content dt {
  font-weight: 800;
  font-size: 12px;
}
.project-dialog-content dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.project-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.project-photos .photo-card {
  aspect-ratio: auto;
  margin: 0;
}
.project-photos img {
  height: auto;
  object-fit: contain;
}
.lightbox {
  background: #101512;
  color: white;
  width: min(1120px, calc(100% - 24px));
}
.lightbox-toolbar,
.lightbox-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
}
.lightbox-toolbar span,
.lightbox-bottom p {
  font-size: 13px;
}
.lightbox > img {
  width: 100%;
  height: 70svh;
  object-fit: contain;
}
.lightbox .icon-button {
  border-color: #ffffff55;
  flex-shrink: 0;
}
.lightbox-bottom p {
  text-align: center;
}
.service-intro {
  padding-block: 64px 36px;
}
.service-intro h1 {
  font-size: 56px;
}
.service-intro > p {
  max-width: 740px;
  color: var(--muted);
  margin: 24px 0;
}
.service-intro .text-link {
  margin-bottom: 24px;
}
.service-intro .service-hero {
  aspect-ratio: 16/7;
  object-fit: cover;
  width: 100%;
  border-radius: 4px;
  margin-top: 32px;
}
.error-message {
  padding: 20px;
  background: #fff4dd;
  color: #7c3621;
}
.empty-state {
  padding: 24px;
  border: 1px solid var(--line);
}
@media (min-width: 1600px) {
  .hero-content {
    width: 1180px;
  }
  .hero {
    max-height: 760px;
  }
}
@media (max-width: 1000px) {
  .header-inner {
    gap: 20px;
    padding: 14px 24px;
  }
  .main-nav {
    gap: 16px;
    margin-left: auto;
  }
  .header-cta {
    display: none;
  }
  .contact-layout {
    gap: 36px;
  }
  .brief-form {
    padding-left: 28px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-band h2 {
    font-size: 38px;
  }
  .hero h1 {
    font-size: 64px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 86px;
  }
  .wrap {
    width: calc(100% - 36px);
  }
  .section {
    padding-block: 52px;
  }
  .header-inner {
    padding: 12px 18px;
    justify-content: space-between;
  }
  .brand span {
    font-size: 22px;
  }
  .brand small {
    font-size: 9px;
  }
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 12px 18px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 18px #193b1910;
  }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .hero {
    height: auto;
    min-height: 0;
    padding-top: 150px;
  }
  .hero-content {
    padding-block: 32px;
  }
  .hero h1 {
    font-size: 43px;
    max-width: 340px;
  }
  .hero-subtitle {
    font-size: 16px;
    margin: 18px 0 24px;
    max-width: 330px;
  }
  .hero .eyebrow {
    font-size: 11px;
  }
  .hero:after {
    background: linear-gradient(0deg, #061c14ed, rgba(6, 28, 20, 0.14));
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .button {
    flex: 1 1 100%;
    min-height: 48px;
  }
  .experience-band .wrap {
    padding-block: 20px;
    flex-wrap: wrap;
    gap: 6px 16px;
    font-size: 11px;
  }
  .experience-band strong {
    flex: 1 1 100%;
    font-size: 17px;
  }
  h2 {
    font-size: 34px;
  }
  .section-heading {
    display: block;
    margin-bottom: 26px;
  }
  .section-heading > p {
    margin-top: 18px;
    font-size: 14px;
  }
  .section-heading > .text-link {
    margin-top: 14px;
  }
  .eyebrow {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .project-card h3 {
    font-size: 22px;
  }
  .project-image {
    aspect-ratio: 4/3;
  }
  .project-image .project-arrow {
    width: 38px;
    height: 38px;
    bottom: 12px;
    right: 12px;
  }
  .section-end {
    display: block;
    padding-top: 28px;
  }
  .section-end .text-link {
    margin-top: 8px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .service-item {
    padding: 24px 0;
  }
  .service-item .service-uses {
    min-height: 0;
  }
  .service-item h3 {
    margin: 10px 0;
    font-size: 20px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
  .process-grid p {
    font-size: 13px;
  }
  .process-grid h3 {
    font-size: 17px;
  }
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    gap: 6px;
    margin-right: -18px;
    padding-right: 18px;
    position: sticky;
    top: 70px;
    background: #f0f4f3;
    z-index: 10;
    padding-top: 8px;
  }
  .filter {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px 12px;
  }
  .gallery {
    columns: 2;
    column-gap: 8px;
  }
  .photo-card {
    margin-bottom: 8px;
  }
  .photo-card span {
    font-size: 10px;
    padding: 28px 8px 9px;
  }
  .photo-card.tall {
    aspect-ratio: 3/4;
  }
  .photo-card.wide {
    aspect-ratio: 4/3;
  }
  .load-row {
    flex-direction: column;
    gap: 12px;
  }
  .load-row .button {
    width: 100%;
  }
  .faq-section summary {
    font-size: 14px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-band h2 {
    font-size: 35px;
  }
  .photographer {
    gap: 16px;
    margin: 28px 0;
  }
  .photographer img {
    width: 80px;
    height: 106px;
  }
  .photographer p {
    font-size: 13px;
  }
  .contact-phone {
    font-size: 14px;
  }
  .brief-form {
    border-left: 0;
    border-top: 1px solid #ffffff26;
    padding: 28px 0 0;
  }
  .form-two {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding-block: 28px 96px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .mobile-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 12px calc(14px + env(safe-area-inset-bottom));
    background: var(--teal);
    color: white;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 -2px 15px #112d191c;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .project-dialog-content {
    padding: 20px 16px;
  }
  .project-dialog-content h2 {
    font-size: 28px;
  }
  .project-photos {
    grid-template-columns: 1fr;
  }
  .dialog-top {
    padding: 10px 16px;
  }
  .lightbox > img {
    height: 64svh;
  }
  .lightbox-bottom {
    padding: 10px;
  }
  .lightbox-bottom p {
    font-size: 11px;
  }
  .service-intro {
    padding-top: 36px;
  }
  .service-intro h1 {
    font-size: 38px;
  }
  .service-intro .service-hero {
    aspect-ratio: 4/3;
  }
  .service-intro > p {
    font-size: 15px;
  }
  .preview-bar {
    font-size: 11px;
  }
}
@media (max-width: 359px) {
  .hero h1 {
    font-size: 38px;
  }
  .hero {
    padding-top: 110px;
  }
  .gallery {
    columns: 1;
  }
  .photo-card span {
    font-size: 12px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .photographer {
    flex-direction: column;
  }
  .contact-band h2 {
    font-size: 31px;
  }
}

/* Visual technology concept: kept separate so the classic version stays restorable. */
:root {
  --ink: #111714;
  --muted: #5c6963;
  --teal: #0b766b;
  --coral: #ff6047;
  --sun: #ffffff;
  --line: #d8dfdb;
  --paper: #f2f5f1;
  --display: "Bodoni Moda", Georgia, serif;
  --sans: "Space Grotesk", system-ui, sans-serif;
}

body {
  overflow-x: clip;
}

.site-header {
  color: #f8fbf8;
  background: rgba(9, 13, 11, 0.92);
  border-color: #ffffff1f;
  backdrop-filter: blur(16px);
}

.site-header .button-dark {
  color: #101612;
  background: var(--sun);
}

.site-header .icon-button {
  border-color: #ffffff42;
}

.hero {
  min-height: 680px;
  height: min(820px, 88svh);
  background: #090d0b;
  align-items: stretch;
}

.hero-media img {
  transform: scale(1.025);
  animation: hero-breathe 12s ease-in-out infinite alternate;
}

.hero:after {
  background: rgba(4, 9, 7, 0.48);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-inline: 1px solid #ffffff18;
  width: min(var(--content-max), calc(100% - 80px));
  margin-inline: auto;
}

.hero-grid:before,
.hero-grid:after {
  content: "";
  position: absolute;
  background: #ffffff18;
}

.hero-grid:before {
  top: 0;
  bottom: 0;
  left: 58%;
  width: 1px;
}

.hero-grid:after {
  top: 34%;
  left: 0;
  right: 0;
  height: 1px;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 82px 48px;
}

.hero-copy {
  max-width: 850px;
}

.hero h1 {
  font-size: 112px;
  line-height: 0.88;
  max-width: 900px;
}

.hero h1 em {
  color: var(--sun);
  font-weight: 500;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
}

.hero .eyebrow:before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sun);
}

.hero-subtitle {
  max-width: 620px;
  font-size: 18px;
}

.hero-signals {
  position: absolute;
  right: 0;
  bottom: 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 320px;
  border-top: 1px solid #ffffff45;
  border-left: 1px solid #ffffff45;
}

.hero-signals span {
  padding: 13px 14px;
  border-right: 1px solid #ffffff45;
  border-bottom: 1px solid #ffffff45;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  right: 0;
  top: 50%;
  color: #ffffffa8;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.experience-band {
  color: #f4f7f5;
  background: #0b100e;
  border-color: #ffffff1c;
}

.experience-band strong {
  color: var(--sun);
}

.brand-impact {
  position: relative;
  color: #f8fbf8;
  background: #0b100e;
  overflow: hidden;
}

body:not([data-service=""]) .brand-impact,
body:not([data-service=""]) .motion-rail {
  display: none;
}

.brand-impact-inner {
  padding-block: 110px;
}

.brand-impact .eyebrow {
  color: #72dcd2;
}

.impact-statement {
  max-width: 1000px;
  font-family: var(--display);
  font-size: 76px;
  line-height: 1.04;
}

.impact-statement strong {
  color: var(--sun);
  font-weight: 500;
}

.impact-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 70px;
  border-top: 1px solid #ffffff29;
}

.impact-proof span {
  padding-top: 18px;
  font-size: 13px;
  font-weight: 600;
}

.impact-proof b {
  margin-right: 22px;
  color: #72dcd2;
  font-size: 10px;
}

.motion-rail {
  overflow: hidden;
  color: #0a100d;
  background: var(--sun);
  border-block: 1px solid #101612;
  padding-block: 13px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.motion-rail div {
  width: max-content;
  animation: rail-move 22s linear infinite;
}

.motion-rail span {
  padding-inline: 24px;
  color: var(--coral);
}

.section {
  padding-block: 110px;
}

.section-heading h2 {
  font-size: 66px;
  line-height: 1.02;
}

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

.project-grid {
  gap: 58px 18px;
}

.project-image {
  border-radius: 0;
}

.project-image:after {
  content: "Ver projeto";
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  color: #fff;
  background: #0b100ecc;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: 220ms ease;
}

.project-card:hover .project-image:after,
.project-card:focus-visible .project-image:after {
  opacity: 1;
  transform: none;
}

.project-image .project-arrow {
  color: #101612;
  background: var(--sun);
}

.services-band {
  background: #eef2ed;
}

.service-item {
  position: relative;
  padding: 34px 0 40px;
  overflow: hidden;
}

.service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 350ms ease;
}

.service-item:hover:before {
  width: 100%;
}

.service-number,
.process-grid span {
  color: var(--coral);
}

.process-section {
  position: relative;
}

.process-grid li {
  min-height: 210px;
  padding: 22px 14px 16px;
  border: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.process-grid li:hover {
  color: #fff;
  background: #101612;
  transform: translateY(-6px);
}

.process-grid li:hover p {
  color: #c8d2cd;
}

.portfolio-band {
  color: #f5f8f6;
  background: #0a0e0c;
}

.portfolio-band .section-heading,
.portfolio-band .filter-bar {
  border-color: #ffffff29;
}

.portfolio-band .eyebrow,
.portfolio-band .text-link {
  color: #72dcd2;
}

.portfolio-band .filter {
  color: #f5f8f6;
}

.portfolio-band .filter.is-active {
  color: #101612;
  background: var(--sun);
}

.portfolio-band .button-outline {
  color: #fff;
  border-color: #ffffff50;
}

.portfolio-band .load-row span,
.portfolio-band .gallery-status {
  color: #aebbb5;
}

.photo-card {
  border-radius: 0;
  background: #151c18;
}

.photo-card span {
  background: #090d0bc7;
  transform: translateY(100%);
  transition: transform 240ms ease;
}

.photo-card:hover span,
.photo-card:focus-visible span {
  padding-bottom: 12px;
  transform: none;
}

.faq-section details {
  transition: padding 200ms ease;
}

.faq-section details[open] {
  padding-left: 16px;
  border-left: 3px solid var(--coral);
}

.contact-band {
  position: relative;
  background: #070a09;
}

.contact-band:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #ffffff0f;
}

.contact-band .button-light {
  color: #101612;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(34px);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

@keyframes hero-breathe {
  from { transform: scale(1.025); }
  to { transform: scale(1.075); }
}

@keyframes rail-move {
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .hero-signals {
    width: 260px;
  }
  .impact-proof {
    margin-top: 48px;
  }
  .process-grid li {
    min-height: 190px;
  }
}

@media (max-width: 700px) {
  .site-header {
    background: rgba(9, 13, 11, 0.97);
  }
  .main-nav {
    color: #f7faf8;
    background: #0b100e;
    border-color: #ffffff20;
  }
  .hero {
    min-height: 700px;
    height: 88svh;
  }
  .hero-grid {
    width: calc(100% - 36px);
  }
  .hero-grid:before {
    left: 72%;
  }
  .hero h1 {
    font-size: 60px;
    line-height: 0.92;
  }
  .hero-content {
    padding-block: 68px 34px;
  }
  .hero-subtitle {
    max-width: 320px;
    margin: 18px 0 22px;
    font-size: 15px;
  }
  .hero-signals {
    position: static;
    width: 100%;
    margin-top: 34px;
  }
  .hero-scroll {
    display: none;
  }
  .experience-band .wrap {
    align-items: flex-start;
  }
  .brand-impact-inner {
    padding-block: 76px;
  }
  .impact-statement {
    font-size: 42px;
  }
  .impact-proof {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .impact-proof span {
    padding: 14px 0;
    border-bottom: 1px solid #ffffff21;
  }
  .section {
    padding-block: 78px;
  }
  .section-heading h2 {
    font-size: 42px;
  }
  .project-grid {
    gap: 42px;
  }
  .project-image:after {
    display: none;
  }
  .process-grid li {
    min-height: 0;
  }
  .photo-card span {
    transform: none;
  }
  .contact-band:before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .motion-rail div {
    animation: none;
  }
  .reveal-ready,
  .reveal-ready.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* Classic opening, followed by the new portfolio treatment. */
.site-header {
  color: #1c2927;
  background: rgba(255, 255, 255, 0.97);
  border-color: #dce2dd;
}
.site-header .brand span,
.hero-classic h1 { font-family: "Fraunces", Georgia, serif; }
.site-header,
.hero-classic,
.experience-band { font-family: "Manrope", system-ui, sans-serif; }
.site-header .button-dark { color: #fff; background: #111; }
.site-header .icon-button { border-color: #dce2dd; color: #111; }
.hero-classic {
  height: min(760px, 82svh);
  min-height: 640px;
  align-items: flex-end;
}
.hero-classic .hero-media img { transform: none; animation: none; }
.hero-classic:after { background: linear-gradient(0deg, rgba(9,23,18,.86), rgba(9,23,18,.05) 86%); }
.hero-classic .hero-content { display: block; padding-block: 54px; }
.hero-classic h1 { font-size: 76px; line-height: 1.1; max-width: 800px; }
.hero-classic .eyebrow { display: block; font-size: 12px; margin-bottom: 14px; font-family: inherit; }
.hero-classic .eyebrow:before { display: none; }
.hero-classic .hero-subtitle { max-width: 540px; font-size: 19px; margin: 22px 0 28px; }
.experience-band { color: #1c2927; background: white; border-color: #dce2dd; }
.experience-band strong { color: #111; }
.button-light { color: #111; background: #fff; }
.button-light:hover { color: #111; background: #e7e7e7; }
.motion-rail { color: #fff; background: #111; }
.motion-rail span { color: #fff; }
.project-arrow { border: 1px solid #ddd; }
@media (max-width: 1000px) {
  .hero-classic h1 { font-size: 64px; }
}
@media (max-width: 700px) {
  .site-header .main-nav { color: #1c2927; background: #fff; }
  .hero-classic { height: auto; min-height: 0; padding-top: 150px; }
  .hero-classic .hero-content { padding-block: 32px; }
  .hero-classic h1 { font-size: 43px; max-width: 340px; }
  .hero-classic .hero-subtitle { font-size: 16px; margin: 18px 0 24px; max-width: 330px; }
  .hero-classic .eyebrow { font-size: 11px; }
  .hero-classic:after { background: linear-gradient(0deg, #061c14ed, rgba(6,28,20,.14)); }
}
@media (max-width: 359px) {
  .hero-classic h1 { font-size: 38px; }
}
