@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./cormorant-garamond-latin-400-normal-B-1hWBU7.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./cormorant-garamond-latin-400-italic-Dc_OZ8oc.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./cormorant-garamond-latin-500-normal-BsRWmXhO.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("./cormorant-garamond-latin-500-italic-Y14P-dkT.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./cormorant-garamond-latin-600-normal-Co1r35X9.woff2") format("woff2");
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./manrope-latin-400-normal-PaqtzbVb.woff2") format("woff2");
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./manrope-latin-500-normal-BYYD-dBL.woff2") format("woff2");
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./manrope-latin-600-normal-4f0koTD-.woff2") format("woff2");
}

:root {
  --ink: #172f33;
  --teal: #35565b;
  --teal-dark: #223f43;
  --ivory: #f8f5ef;
  --paper: #fffdf8;
  --gold: #b48a55;
  --line: rgba(23, 47, 51, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Manrope, "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

@media (min-width: 1024px) {
  .footer .footer__grid {
    grid-template-columns: 1.1fr 0.7fr 1fr 0.9fr;
  }
}

.inner-page {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}

.inner-motion .inner-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.inner-motion .inner-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.inner-motion .inner-hero__image {
  animation: inner-hero-image-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes inner-hero-image-in {
  from {
    opacity: 0.72;
    transform: scale(1.045);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.inner-page *,
.inner-page *::before,
.inner-page *::after {
  box-sizing: border-box;
}

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

.inner-page a {
  color: inherit;
  text-decoration: none;
}

.inner-page a:focus-visible,
.inner-page summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.inner-skip {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  translate: 0 -120%;
  background: var(--paper);
  padding: 0.75rem 1rem;
  color: var(--ink);
  transition: translate 150ms ease;
}

.inner-skip:focus {
  translate: 0 1rem;
}

.inner-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.inner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid currentColor;
  padding: 0.7rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

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

.inner-hero {
  min-height: 680px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--teal-dark);
  color: #fff;
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 29, 32, 0.88) 0%, rgba(16, 40, 43, 0.55) 52%, rgba(16, 40, 43, 0.18) 100%);
}

.inner-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-block: 170px 84px;
}

.inner-kicker {
  margin: 0 0 1rem;
  color: #f0d6b5;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.inner-hero h1,
.inner-section h2,
.inner-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
}

.inner-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  text-wrap: balance;
}

.inner-hero__lead {
  max-width: 680px;
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.inner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.inner-page .inner-button--solid {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.inner-page .inner-button--solid:hover {
  background: transparent;
  color: #fff;
}

.inner-breadcrumbs {
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.inner-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inner-breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--gold);
}

.inner-section {
  padding-block: clamp(64px, 9vw, 112px);
}

.inner-section--paper {
  background: var(--paper);
}

.inner-intro,
.inner-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.inner-section h2,
.inner-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  text-wrap: balance;
}

.inner-prose > *:first-child {
  margin-top: 0;
}

.inner-prose p {
  margin: 1.1rem 0 0;
}

.inner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2rem, 5vw, 4rem);
  background: var(--line);
  border: 1px solid var(--line);
}

.inner-card {
  min-height: 230px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--ivory);
}

.inner-card span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.inner-card h3 {
  margin: 1rem 0 0.7rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.05;
}

.inner-card p {
  margin: 0;
  font-size: 0.94rem;
}

.inner-card address {
  margin: 0;
  font-size: 0.94rem;
  font-style: normal;
}

.inner-service-card {
  display: block;
  transition: background-color 180ms ease, color 180ms ease;
}

.inner-service-card:hover {
  background: var(--teal);
  color: #fff;
}

.inner-service-card:hover span {
  color: #f0d6b5;
}

.inner-checklist {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.inner-checklist li {
  position: relative;
  padding-left: 1.75rem;
}

.inner-checklist li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.7rem;
  height: 1px;
  background: var(--gold);
}

.inner-photo {
  position: sticky;
  top: 1.5rem;
}

.inner-photo img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.inner-faq {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.inner-faq details {
  border-bottom: 1px solid var(--line);
}

.inner-faq summary {
  cursor: pointer;
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.inner-faq details p {
  max-width: 850px;
  margin: 0;
  padding: 0 2rem 1.5rem 0;
}

.inner-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.inner-related a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.inner-related a:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.inner-cta {
  padding-block: clamp(72px, 10vw, 120px);
  background: var(--teal-dark);
  color: #fff;
  text-align: center;
}

.inner-cta p {
  max-width: 650px;
  margin: 1.2rem auto 0;
}

.inner-cta .inner-hero__actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .inner-intro,
  .inner-split {
    grid-template-columns: 1fr;
  }

  .inner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inner-photo {
    position: static;
  }
}

@media (max-width: 600px) {
  .inner-shell {
    width: min(100% - 28px, 1160px);
  }

  .inner-hero {
    min-height: 620px;
  }

  .inner-hero::after {
    background: linear-gradient(0deg, rgba(11, 29, 32, 0.9) 0%, rgba(16, 40, 43, 0.35) 100%);
  }

  .inner-grid {
    grid-template-columns: 1fr;
  }

  .inner-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .inner-motion .inner-reveal {
    opacity: 1;
    transform: none;
  }

  .inner-motion .inner-hero__image {
    animation: none;
  }
}

/* Homepage SEO links remain in the initial HTML while preserving the service timeline. */
.service-row__page-link {
  width: max-content;
  margin: -13px 0 22px 58px;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
  text-underline-offset: 4px;
  text-decoration-color: color-mix(in srgb, currentColor 38%, transparent);
}

.service-row__page-link::after {
  content: " →";
  display: inline-block;
  margin-left: 0.35rem;
  transition: transform 0.25s ease;
}

.service-row__page-link:hover::after,
.service-row__page-link:focus-visible::after {
  transform: translateX(4px);
}

.service-row__page-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.work-card > span .work-card__title {
  overflow: hidden;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.5vw, 1.42rem);
  font-weight: 400;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work__controls > i [data-gallery-progress] {
  position: absolute;
  inset: 0;
  background: var(--color-primary-mist);
  transform: scaleX(0);
  transform-origin: 0;
  transition: transform 0.5s var(--ease-standard);
}

@media (max-width: 1023px) {
  .service-row__page-link {
    margin-left: 62px;
  }
}

@media (max-width: 767px) {
  .service-row__page-link {
    margin: -8px 0 20px 46px;
    font-size: 0.64rem;
  }

  .work-card > span .work-card__title {
    font-size: 1.1rem;
  }
}

@media (max-width: 479px) {
  .service-row__page-link {
    margin-left: 39px;
  }
}
