:root {
  --red: #782236;
  --red-dark: #560204;
  --red-soft: #f3dde3;
  --ink: #19171a;
  --ink-soft: #4c474b;
  --muted: #6d676b;
  --paper: #f4f3ef;
  --paper-2: #e8e7e2;
  --white: #ffffff;
  --line: rgba(25, 23, 26, 0.14);
  --line-red: rgba(120, 34, 54, 0.22);
  --shadow-soft: 0 24px 70px rgba(25, 23, 26, 0.13);
  --shadow-red: 0 22px 60px rgba(120, 34, 54, 0.2);
  --display: "Fraunces", Georgia, serif;
  --body: "Source Sans 3", "Trebuchet MS", sans-serif;
  --tap-target: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 2%, rgba(120, 34, 54, 0.09), transparent 24rem),
    linear-gradient(180deg, #faf9f6, var(--paper));
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

p,
h2,
h3,
span,
li {
  overflow-wrap: anywhere;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 99;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--red);
  border: 1px solid var(--line-red);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(120, 34, 54, 0.12);
  background: rgba(232, 232, 228, 0.92);
  backdrop-filter: blur(18px) saturate(1.1);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand,
.footer-brand {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: clamp(156px, 17vw, 292px);
  height: auto;
  flex: 0 0 auto;
}

.main-nav {
  justify-self: end;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(25, 23, 26, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
}

.main-nav a,
.site-footer nav a {
  text-decoration: none;
}

.main-nav a {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--tap-target);
  min-width: var(--tap-target);
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  background: var(--red-soft);
  color: var(--red);
  transform: translateY(-1px);
}

.main-nav .nav-contact {
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.main-nav .nav-contact:hover {
  background: var(--red-dark);
  color: var(--white);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: imageDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 10, 13, 0.91), rgba(12, 10, 13, 0.66) 44%, rgba(12, 10, 13, 0.24)),
    linear-gradient(0deg, rgba(12, 10, 13, 0.52), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(112px, 12vh, 122px);
  padding-bottom: clamp(54px, 10vh, 96px);
}

.kicker {
  margin: 0 0 14px;
  color: var(--red-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker.dark {
  color: var(--red);
}

.section-title .kicker,
.section-head .kicker {
  font-size: 0.95rem;
  line-height: 1.1;
}

h1,
h2,
h3,
blockquote {
  font-family: var(--display);
  line-height: 1.04;
}

h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(3.4rem, 7.3vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -0.048em;
  hyphens: manual;
}

.hero-title {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  line-height: 1.04;
}

.hero-title-first,
.hero-title-second {
  display: inline;
}

.hero-title-second::before {
  content: "";
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5.2vw, 4.9rem);
  font-weight: 760;
  letter-spacing: -0.042em;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: max(48px, var(--tap-target));
  min-width: 172px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.button-light:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: 10px auto 0;
  background: var(--red);
  animation: cuePulse 1.8s ease-in-out infinite;
}

.statement,
.section,
.profile-section,
.contact-section {
  padding: clamp(72px, 10vw, 136px) 0;
}

.statement {
  background: var(--white);
}

.statement-grid,
.profile-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.section-title,
.section-head {
  position: relative;
}

.section-title::before,
.section-head::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0.28em;
  width: 4px;
  height: 74px;
  border-radius: 999px;
  background: var(--red);
}

.statement-copy p,
.profile-copy p,
.contact-section p,
.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

blockquote {
  margin: 30px 0 0;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.section-head {
  margin-bottom: 40px;
  max-width: 760px;
}

.section-head p {
  margin: 18px 0 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 322px;
  padding: 26px;
  display: grid;
  grid-template-rows: 56px 1fr;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(243, 221, 227, 0.34)),
    var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(120, 34, 54, 0.28);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card h3 {
  min-height: 2.1em;
}

.profile-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(120, 34, 54, 0.1), transparent 20rem),
    var(--paper-2);
}

.profile-media {
  position: relative;
}

.profile-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--red);
  border-radius: 22px;
}

.profile-media img {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.facts div {
  padding: 18px;
  border-top: 3px solid var(--red);
  border-radius: 0 0 14px 14px;
  background: rgba(255, 255, 255, 0.68);
}

.facts strong {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.95rem;
  line-height: 1;
}

.facts span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  background:
    radial-gradient(circle at 16% 10%, rgba(120, 34, 54, 0.46), transparent 26rem),
    linear-gradient(135deg, var(--ink), var(--red-dark));
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(243, 221, 227, 0.3);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-red);
  backdrop-filter: blur(10px);
}

.contact-label {
  margin: 0 0 8px;
  color: var(--red-soft) !important;
  font-size: 0.82rem !important;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: 22px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin-top: 12px;
  color: var(--red-soft);
  font-family: var(--body);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.contact-method svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.contact-method:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--red-soft);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translateY(-2px);
}

.site-footer {
  padding: 30px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--display);
  font-size: 1rem;
}

.site-footer p {
  margin: 2px 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.54);
  text-decoration: none;
  font-weight: 600;
}

.site-footer nav a:hover {
  color: var(--red-soft);
}

.legal-page {
  min-height: 100vh;
  padding: 150px 0 82px;
  background: var(--paper);
}

.legal-shell {
  max-width: 840px;
}

.legal-shell h1 {
  margin: 0;
  color: var(--red);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.legal-card {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 780ms ease forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 240ms;
}

.delay-3 {
  animation-delay: 360ms;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageDrift {
  to {
    transform: scale(1.09) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes cuePulse {
  50% {
    transform: translateY(8px);
    opacity: 0.45;
  }
}

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

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .container {
    width: min(1180px, calc(100vw - 40px));
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-self: center;
    width: fit-content;
    max-width: 100%;
  }

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

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 25;
    width: 100%;
  }

  .header-inner,
  .statement-grid,
  .profile-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px 0 8px;
    min-height: 0;
  }

  .brand-logo {
    width: min(210px, 56vw);
  }

  .brand {
    flex: 0 0 auto;
    min-width: 0;
    justify-content: center;
  }

  .main-nav {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
    padding: 5px 0 5px 2px;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: center;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .button {
    min-height: max(48px, var(--tap-target));
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .hero-content {
    padding-top: clamp(112px, 18dvh, 156px);
    padding-bottom: clamp(48px, 8dvh, 62px);
  }

  .scroll-cue {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: auto;
    align-self: center;
    display: inline-block;
  }

  .scroll-cue::after {
    margin-top: 8px;
  }

  .section-title::before,
  .section-head::before {
    left: 0;
    top: -18px;
    width: 56px;
    height: 4px;
  }

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

@media (max-width: 768px) {
  .hero {
    min-height: calc(100dvh - 2px);
  }

  .hero-content {
    padding-top: clamp(112px, 16dvh, 132px);
    padding-bottom: clamp(48px, 6dvh, 56px);
  }

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

  .contact-method {
    min-height: var(--tap-target);
  }
}

@media (max-width: 580px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 26px, 1180px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 12.5vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8.4vw, 2.3rem);
  }

  .brand-logo {
    width: min(168px, 52vw);
  }

  .brand {
    flex: 0 0 auto;
  }

  .main-nav {
    width: 100%;
    padding: 2px 0 2px 2px;
  }

  .main-nav a {
    font-size: 0.82rem;
    padding: 0 8px;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .statement,
  .section,
  .profile-section,
  .contact-section {
    padding: 68px 0;
  }

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

  .service-card {
    min-height: 0;
    gap: 24px;
    padding: 23px;
  }

  .profile-media::before {
    inset: 12px -8px -12px 8px;
    border-radius: 18px;
  }

  .profile-media img,
  .contact-card,
  .legal-card {
    border-radius: 18px;
  }

  .contact-method {
    overflow-wrap: anywhere;
    font-size: 1rem;
  }

  .social-links {
    display: flex;
  }

  .social-links a {
    width: var(--tap-target);
    height: var(--tap-target);
  }

  .site-footer nav {
    flex-direction: column;
    gap: 10px;
  }

  .legal-page {
    padding-top: 170px;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .hero-content {
    padding-top: clamp(102px, 18vw, 118px);
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(1.95rem, 13vw, 2.45rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-title {
    display: inline;
    flex-wrap: wrap;
  }

  .hero-title-first {
    display: block;
  }

  .hero-title-second {
    display: block;
  }

  .hero-title-second::before {
    content: "-";
    margin-right: 0.12ch;
  }

  .service-card,
  .contact-card,
  .legal-card {
    padding: 19px;
  }

  .main-nav a {
    font-size: 0.81rem;
    padding: 0 7px;
  }
}
