:root {
  --graphite: #232323;
  --ink: #353332;
  --muted: #756f6a;
  --gray-900: #666461;
  --gray-700: #aaa7a3;
  --gray-500: #d1cfcb;
  --gray-300: #dcdad6;
  --gray-100: #eceae6;
  --surface: #f5f3ef;
  --charcoal: #3d4446;
  --charcoal-deep: #2f3436;
  --charcoal-soft: #4c5355;
  --neutral-mid: #bfc0bd;
  --neutral-light: #d7d7d4;
  --rose: #e7b7c3;
  --rose-deep: #b8798a;
  --taupe: #beb6ae;
  --white: #ffffff;
  --portfolio-tab-active: #b8798a;
  --contact-bg: #3d4446;
  --contact-card-bg: #e7b7c3;
  --contact-info: #e7b7c3;
  --soft-rose-shadow: rgba(217, 197, 200, 0.78);
  --hero-title-size: 85px;
  --section-title-size: 55px;
  --body-text-size: 16px;
  --section-y: 104px;
  --compact-section-y: 88px;
  --contact-section-y: 92px;
  --card-gap: 16px;
  --method-card-height: 270px;
  --border: rgba(35, 35, 35, 0.12);
  --shadow: 0 22px 70px rgba(35, 35, 35, 0.11);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

body {
  position: relative;
  margin: 0;
  color: var(--graphite);
  background: var(--charcoal);
  font-family: var(--font-sans);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 18% 22%, rgba(245, 243, 239, 0.045) 0 0.8px, transparent 1.6px),
    radial-gradient(circle at 76% 48%, rgba(35, 35, 35, 0.12) 0 0.9px, transparent 1.8px),
    linear-gradient(135deg, rgba(245, 243, 239, 0.014), transparent 45%, rgba(35, 35, 35, 0.04));
  background-size: 13px 13px, 17px 17px, 100% 100%;
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.2;
  pointer-events: none;
}

body > * {
  position: relative;
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 6vw;
  background: rgba(47, 52, 54, 0.9);
  border-bottom: 1px solid rgba(245, 243, 239, 0.12);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-grid;
  gap: 0.18rem;
  align-items: start;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1;
  color: var(--surface);
}

.brand-mark::before {
  display: none;
}

.brand-name {
  font-size: 1.34rem;
}

.brand-name::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0.26rem;
  background: linear-gradient(90deg, rgba(231, 183, 195, 0.95), rgba(231, 183, 195, 0));
  content: "";
}

.brand-seal {
  color: var(--rose);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.82rem, 1.45vw, 1.7rem);
  color: rgba(245, 243, 239, 0.86);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  content: "";
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 1.25rem;
  border: 1px solid rgba(231, 183, 195, 0.95);
  border-radius: 999px;
  background: rgba(231, 183, 195, 0.94);
  color: var(--graphite);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(231, 183, 195, 0.18), 0 10px 28px rgba(231, 183, 195, 0.18);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(231, 183, 195, 1);
  background: rgba(231, 183, 195, 1);
  box-shadow: 0 0 0 1px rgba(231, 183, 195, 0.26), 0 14px 34px rgba(231, 183, 195, 0.24);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(245, 243, 239, 0.18);
  border-radius: 999px;
  background: rgba(245, 243, 239, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--surface);
}

.section-shell {
  width: min(1180px, calc(100% - 10vw));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  gap: 4vw;
  align-items: center;
  width: 100%;
  max-width: none;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height) - 180px);
  padding: 3rem max(5vw, calc((100vw - 1180px) / 2)) 2.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.08)),
    var(--charcoal);
  border-bottom: 1px solid rgba(35, 35, 35, 0.12);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(61, 68, 70, 1) 0%,
    rgba(61, 68, 70, 0.98) 36%,
    rgba(61, 68, 70, 0.62) 49%,
    rgba(61, 68, 70, 0.08) 63%,
    rgba(61, 68, 70, 0) 74%
  );
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.05rem;
  color: rgba(231, 183, 195, 0.92);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.42;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(231, 183, 195, 0.92);
}

.hero h1,
.about h2,
.method h2,
.services h2,
.portfolio h2,
.trust h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 0.98;
}

.hero h1 {
  max-width: 520px;
  color: var(--surface);
  font-size: var(--hero-title-size);
}

.hero-subtitle {
  max-width: 520px;
  margin: 1.25rem 0 0;
  color: rgba(245, 243, 239, 0.95);
  font-size: 1.18rem;
  font-weight: 600;
}

.hero-text {
  max-width: 510px;
  margin: 1.1rem 0 0;
  color: rgba(245, 243, 239, 0.72);
  font-size: var(--body-text-size);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.35rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button::after,
.text-link::after {
  margin-left: 0.7rem;
  content: "→";
}

.button.primary {
  border: 1px solid var(--rose-deep);
  background: var(--rose-deep);
  color: var(--white);
}

.button.ghost {
  border: 1px solid rgba(245, 243, 239, 0.3);
  background: rgba(245, 243, 239, 0.1);
  color: var(--surface);
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary:hover {
  background: #a96b7b;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(62vw, 820px);
  min-height: 0;
  padding: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 4%;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(0.92) contrast(1.02);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.48) 11%, #000 25%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.48) 11%, #000 25%, #000 100%);
}

.hero-note {
  position: absolute;
  right: max(5vw, calc((100vw - 1180px) / 2));
  bottom: 3rem;
  z-index: 2;
  display: grid;
  grid-template-columns: 1px minmax(120px, 160px);
  gap: 0.85rem;
  align-items: end;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero-note span {
  display: block;
  width: 1px;
  height: 154px;
  background: linear-gradient(var(--rose-deep), rgba(184, 121, 138, 0.12));
}

.hero-note p {
  margin: 0;
  color: rgba(245, 243, 239, 0.94);
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.1;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.42);
}

.hero-note:has(p:empty) {
  display: none;
}

.pillars-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(2.8rem, 5.8vw, 6rem);
  align-items: stretch;
  padding: clamp(4.2rem, 6.8vw, 7rem) 0 clamp(3rem, 5vw, 4.8rem);
  color: var(--surface);
}

.pillars-heading h2 {
  max-width: 520px;
  margin: 0;
  color: var(--surface);
  font-family: var(--font-serif);
  font-size: clamp(4rem, 6.4vw, 5.9rem);
  font-weight: 600;
  line-height: 0.93;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pillar-item {
  position: relative;
  display: grid;
  grid-template-rows: 132px auto 1fr;
  align-items: start;
  min-height: 330px;
  padding: 0.35rem clamp(1.25rem, 2vw, 2rem) 0;
  border-left: 1px solid rgba(231, 183, 195, 0.38);
  text-align: left;
}

.pillar-item span {
  display: block;
  align-self: start;
  margin-bottom: 0;
  color: rgba(231, 183, 195, 0.92);
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 0.82;
  text-align: center;
}

.pillar-item strong {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--surface);
  font-size: 1rem;
  line-height: 1.2;
  text-align: left;
}

.pillar-item p {
  max-width: 250px;
  margin: 0;
  color: rgba(245, 243, 239, 0.68);
  font-size: 0.93rem;
  text-align: left;
}

.about,
.method,
.portfolio,
.trust {
  position: relative;
  padding: var(--section-y) 0;
  clip-path: inset(0 -100vmax);
}

.about::before,
.about::after,
.method::before,
.portfolio::before,
.portfolio::after,
.trust::before {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.about::before {
  right: 2vw;
  top: 7rem;
  width: min(420px, 48vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 183, 195, 0), rgba(231, 183, 195, 0.28), rgba(231, 183, 195, 0));
  transform: rotate(-11deg);
}

.about::after {
  left: -5vw;
  bottom: 7rem;
  width: min(300px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 183, 195, 0), rgba(231, 183, 195, 0.2), rgba(231, 183, 195, 0));
  transform: rotate(24deg);
}

.method::before {
  left: -18vw;
  bottom: 4rem;
  width: min(720px, 76vw);
  height: 230px;
  border-top: 1px solid rgba(231, 183, 195, 0.16);
  border-radius: 50% 50% 0 0;
  transform: rotate(7deg);
}

.portfolio::before {
  right: 0;
  top: 8rem;
  width: min(760px, 82vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 183, 195, 0), rgba(231, 183, 195, 0.18), rgba(231, 183, 195, 0));
  transform: rotate(-6deg);
}

.portfolio::after {
  right: -12vw;
  top: 13rem;
  width: min(520px, 62vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 183, 195, 0), rgba(231, 183, 195, 0.12), rgba(231, 183, 195, 0));
  transform: rotate(18deg);
}

.photo-portfolio::before {
  right: -7vw;
  top: 4rem;
  width: min(420px, 56vw);
  height: 180px;
  border-bottom: 1px solid rgba(231, 183, 195, 0.15);
  border-left: 1px solid rgba(231, 183, 195, 0.1);
  border-radius: 0 0 0 80%;
  background: none;
  transform: rotate(-8deg);
}

.photo-portfolio::after {
  left: 8vw;
  top: 11rem;
  width: min(280px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 183, 195, 0), rgba(231, 183, 195, 0.2), rgba(231, 183, 195, 0));
  transform: rotate(-18deg);
}

.trust::before {
  left: 6vw;
  bottom: 5rem;
  width: min(360px, 52vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 183, 195, 0), rgba(231, 183, 195, 0.16), rgba(231, 183, 195, 0));
  transform: rotate(15deg);
}

.about > *,
.method > *,
.portfolio > *,
.trust > * {
  position: relative;
  z-index: 1;
}

.about {
  background: var(--charcoal);
  box-shadow: 0 0 0 100vmax var(--charcoal);
  color: var(--surface);
}

.method {
  background: var(--charcoal);
  box-shadow: 0 0 0 100vmax var(--charcoal);
  color: var(--surface);
}

.portfolio {
  background: var(--charcoal);
  box-shadow: 0 0 0 100vmax var(--charcoal);
  color: var(--surface);
}

.trust {
  background: var(--charcoal);
  box-shadow: 0 0 0 100vmax var(--charcoal);
  color: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 4.5rem;
  align-items: center;
}

.about-copy h2,
.method h2,
.services h2,
.portfolio h2,
.trust h2,
.contact h2 {
  font-size: var(--section-title-size);
}

.about-copy p,
.contact-copy p {
  max-width: 590px;
  margin: 1.25rem 0 0;
  color: rgba(245, 243, 239, 0.7);
}

.contact-copy p {
  color: rgba(245, 243, 239, 0.7);
}

.about-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 0.85rem;
  align-items: stretch;
}

.about-collage img {
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  border: 1px solid rgba(231, 183, 195, 0.48);
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(184, 121, 138, 0.12), -6px 6px 14px var(--soft-rose-shadow);
  filter: saturate(0.82) brightness(0.86);
}

.about-collage .collage-small {
  min-height: 260px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2.2rem;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  border: 0;
}

.method-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: var(--method-card-height);
  padding: 2rem 1.6rem;
  text-align: center;
  border: 1px solid rgba(245, 243, 239, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(245, 243, 239, 0.1), rgba(245, 243, 239, 0.02)),
    rgba(245, 243, 239, 0.055);
  box-shadow: 0 0 5px var(--soft-rose-shadow);
}

.method-card::after {
  position: absolute;
  right: 50%;
  bottom: -58px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(231, 183, 195, 0.14);
  border-radius: 8px;
  transform: translateX(50%) rotate(12deg);
  content: "";
}

.method-card-top {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.method-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(231, 183, 195, 0.35);
  border-radius: 8px;
  background: rgba(231, 183, 195, 0.12);
}

.method-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--rose);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.method-card span,
.service-item span {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: rgba(231, 183, 195, 0.9);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.method-card span {
  margin-bottom: 0;
  color: rgba(231, 183, 195, 0.9);
}

.method-card h3,
.service-item h3,
.portfolio-card h3,
.photo-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--graphite);
  font-size: 1.05rem;
}

.service-item h3 {
  color: var(--surface);
}

.method h2,
.portfolio h2 {
  color: var(--surface);
}

.about h2,
.trust h2 {
  color: var(--surface);
}

.method-card h3 {
  color: var(--surface);
}

.method-card p,
.service-item p {
  position: relative;
  z-index: 1;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.method-card p {
  max-width: 270px;
  color: rgba(245, 243, 239, 0.7);
}

.service-item p {
  color: rgba(245, 243, 239, 0.66);
}

.services {
  position: relative;
  overflow: hidden;
  padding: var(--compact-section-y) 0;
  background: var(--charcoal);
  color: var(--surface);
  border-top: 0;
  border-bottom: 1px solid rgba(245, 243, 239, 0.08);
}

.services::before {
  position: absolute;
  right: 7vw;
  bottom: 5rem;
  width: min(380px, 54vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 183, 195, 0), rgba(231, 183, 195, 0.18), rgba(231, 183, 195, 0));
  transform: rotate(20deg);
  content: "";
  pointer-events: none;
}

.services-inner {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
  margin-top: 2.5rem;
  border: 0;
}

.service-item {
  min-height: 220px;
  padding: 1.6rem;
  border: 1px solid rgba(245, 243, 239, 0.14);
  border-radius: 8px;
  background: rgba(245, 243, 239, 0.055);
}

.portfolio-top,
.trust {
  display: grid;
  grid-template-columns: 0.62fr 0.38fr;
  gap: 2rem;
  align-items: end;
}

.text-link {
  justify-self: end;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2.1rem 0 1.6rem;
}

.filter-tab {
  min-height: 40px;
  padding: 0 1rem;
  border: 1px solid rgba(245, 243, 239, 0.16);
  border-radius: 999px;
  background: rgba(245, 243, 239, 0.08);
  color: rgba(245, 243, 239, 0.9);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.filter-tab:hover,
.filter-tab.is-active {
  border-color: rgba(231, 183, 195, 0.75);
  background: rgba(184, 121, 138, 0.36);
  transform: translateY(-1px);
}

.filter-tab.is-active {
  border-color: rgba(231, 183, 195, 0.95);
  background: var(--portfolio-tab-active);
  color: var(--white);
}

.portfolio-grid,
.photo-grid {
  display: grid;
  gap: var(--card-gap);
}

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

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

.portfolio-card,
.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(231, 183, 195, 0.36);
  border-radius: 8px;
  background: var(--gray-500);
  box-shadow: -6px 6px 14px var(--soft-rose-shadow);
  transition: transform 240ms ease, opacity 180ms ease, border-color 220ms ease;
}

.portfolio-card {
  aspect-ratio: 9 / 16;
}

.photo-card {
  aspect-ratio: 4 / 5;
}

.portfolio-card.is-hidden,
.photo-card.is-hidden {
  display: none;
}

.portfolio-card:hover,
.photo-card:hover {
  border-color: rgba(231, 183, 195, 0.62);
  transform: translateY(-4px);
}

.portfolio-card img,
.photo-card img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82);
  transition: transform 320ms ease;
}

.photo-card img {
  object-position: center center;
}

.portfolio-card:hover img,
.photo-card:hover img {
  transform: scale(1.03);
}

.portfolio-card::after,
.photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(35, 35, 35, 0.68));
  content: "";
}

.portfolio-card div,
.photo-card div {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  color: var(--white);
}

.portfolio-card p,
.photo-card p {
  margin: 0 0 0.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-card h3,
.photo-card h3 {
  color: var(--white);
}

.play-dot {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(231, 183, 195, 0.86);
  box-shadow: 0 10px 30px rgba(35, 35, 35, 0.18);
}

.play-dot::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--white);
  transform: translate(-50%, -50%);
  content: "";
}

.trust {
  align-items: center;
  padding-top: var(--section-y);
}

.trust-list {
  display: grid;
  gap: 0.9rem;
  background: transparent;
  border: 0;
}

.trust-list div {
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(245, 243, 239, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 243, 239, 0.075), rgba(245, 243, 239, 0.035)),
    rgba(245, 243, 239, 0.045);
  box-shadow: 0 0 5px rgba(217, 197, 200, 0.3);
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list strong {
  margin-bottom: 0.35rem;
}

.trust-list span {
  color: rgba(245, 243, 239, 0.66);
  font-size: 0.92rem;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: var(--contact-section-y) 0;
  background: var(--contact-bg);
  color: var(--surface);
  border-top: 1px solid rgba(245, 243, 239, 0.12);
}

.contact::before {
  position: absolute;
  right: 11vw;
  bottom: 5rem;
  width: 1px;
  height: 230px;
  background: linear-gradient(180deg, rgba(231, 183, 195, 0), rgba(231, 183, 195, 0.24), rgba(231, 183, 195, 0));
  transform: rotate(-8deg);
  content: "";
  pointer-events: none;
}

.contact .section-kicker {
  color: var(--contact-info);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.8fr);
  gap: 4rem;
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 1.05rem;
  width: min(100%, 470px);
  margin: 2rem auto 0;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.95rem;
  width: 100%;
  color: var(--contact-info);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.contact-links span {
  overflow-wrap: anywhere;
}

.contact-links svg {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--contact-info);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-form {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: clamp(1.1rem, 2.35vw, 1.8rem);
  overflow: hidden;
  padding: clamp(1.2rem, 2.25vw, 1.7rem);
  border: 3px solid rgba(184, 121, 138, 0.72);
  border-radius: 14px;
  background: rgba(190, 145, 156, 0.78);
  color: var(--surface);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
  backdrop-filter: blur(12px) saturate(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 70px rgba(20, 22, 23, 0.22);
}

.contact-form::before,
.contact-form::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.contact-form::before {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 34%, rgba(184, 121, 138, 0.14));
  opacity: 0.55;
}

.contact-form::after {
  display: none;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.contact-form label {
  display: grid;
  gap: 0;
  color: rgba(245, 243, 239, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.field-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: rgba(245, 243, 239, 0.84);
  color: var(--graphite);
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(35, 35, 35, 0.46);
  font-weight: 600;
}

.contact-form input {
  min-height: clamp(56px, 5.2vw, 66px);
  padding: 0 1.05rem;
}

.contact-form textarea {
  min-height: clamp(132px, 13vw, 170px);
  padding: 1rem 1.05rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(231, 183, 195, 0.28);
}

.contact .button.primary {
  border-color: var(--charcoal-deep);
  background: var(--charcoal-deep);
  color: var(--surface);
}

.contact .button.primary:hover {
  background: var(--charcoal);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 6vw;
  background: #282d2f;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer .brand-mark {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  font-size: 0.8rem;
}

.site-footer nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 6vw 1.4rem;
    background: rgba(47, 52, 54, 0.98);
    border-bottom: 1px solid rgba(245, 243, 239, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(245, 243, 239, 0.12);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .about-grid,
  .pillars-band,
  .section-heading,
  .portfolio-top,
  .trust,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2.8rem;
    min-height: auto;
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: 4.15rem;
  }

  .hero-media {
    position: absolute;
    inset: 0 0 0 auto;
    width: 58vw;
    min-height: 0;
  }

  .hero-media img {
    height: 100%;
  }

  .pillars-grid,
  .method-grid,
  .services-grid,
  .portfolio-grid,
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .text-link {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .site-header,
  .site-footer {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .brand-mark {
    gap: 0.14rem;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-name::after {
    margin-top: 0.22rem;
  }

  .brand-seal {
    font-size: 0.52rem;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.9rem;
  }

  .section-shell {
    width: min(100% - 8vw, 1180px);
  }

  .hero {
    padding-top: 1.55rem;
    padding-bottom: 0;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(61, 68, 70, 1) 0%,
      rgba(61, 68, 70, 0.98) 52%,
      rgba(61, 68, 70, 0.5) 78%,
      rgba(61, 68, 70, 0.08) 100%
    );
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .about-copy h2,
  .method h2,
  .services h2,
  .portfolio h2,
  .trust h2,
  .contact h2 {
    font-size: 2.55rem;
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: calc(100% + 10vw);
    height: 250px;
    margin: 1.2rem -5vw 0;
    padding-right: 0;
  }

  .hero-media img {
    height: 100%;
    min-height: 0;
    object-position: center 23%;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  }

  .hero-note {
    display: none;
  }

  .hero-actions {
    gap: 0.6rem;
    margin-top: 1.45rem;
  }

  .button {
    min-height: 44px;
    padding: 0 1rem;
    font-size: 0.78rem;
  }

  .pillars-grid,
  .method-grid,
  .services-grid,
  .portfolio-grid,
  .photo-grid,
  .about-collage {
    grid-template-columns: 1fr;
  }

  .pillars-band {
    padding-top: 3.2rem;
  }

  .pillar-item {
    min-height: auto;
    padding-bottom: 1.6rem;
  }

  .pillar-item span {
    margin-bottom: 1.2rem;
  }

  .about,
  .method,
  .portfolio,
  .trust {
    padding-bottom: 4.5rem;
  }

  .about-collage img,
  .about-collage .collage-small {
    min-height: 320px;
  }

  .portfolio-card,
  .photo-card {
    min-height: 0;
    height: auto;
  }

  .portfolio-card {
    aspect-ratio: 9 / 16;
  }

  .photo-card {
    aspect-ratio: 4 / 5;
  }

  .portfolio-card img,
  .photo-card img {
    height: 100%;
  }

  .contact {
    padding: 4.4rem 0;
  }

  .contact-grid {
    gap: 2rem;
  }

  .contact-links a {
    font-size: 1rem;
  }

  .contact-links svg {
    width: 28px;
    height: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
