:root {
  --ink: #102a43;
  --ink-soft: #28435a;
  --paper: #f7f3ea;
  --paper-deep: #eee7d9;
  --white: #fffdf8;
  --amber: #f3a72b;
  --amber-dark: #d88909;
  --teal: #166f73;
  --coral: #d95f45;
  --plum: #72506f;
  --line: rgba(16, 42, 67, 0.16);
  --shadow: 0 24px 60px rgba(16, 42, 67, 0.14);
  --radius: 1.35rem;
  --shell: min(1180px, calc(100% - 2rem));
  font-family: Manrope, Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 6% 16%, rgba(243, 167, 43, 0.09), transparent 24rem),
    var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.preview-note {
  position: relative;
  z-index: 30;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-note__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 2rem;
}

.preview-note__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0.25rem rgba(243, 167, 43, 0.16);
}

.preview-note__detail::before {
  content: "•";
  margin-right: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(16, 42, 67, 0.09);
  background: rgba(247, 243, 234, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border-radius: 0.75rem 0.75rem 0.75rem 0.2rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand__name {
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav__links > a:not(.button) {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.nav__links > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav__links > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 0.8rem;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.3rem auto;
  background: white;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.2rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.2rem) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--small {
  min-height: 2.75rem;
  padding-inline: 1.1rem;
  font-size: 0.84rem;
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--primary {
  background: var(--amber);
  box-shadow: 0 10px 24px rgba(216, 137, 9, 0.25);
  color: #172b3d;
}

.button--primary:hover {
  background: #f7b63f;
  box-shadow: 0 14px 30px rgba(216, 137, 9, 0.32);
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(5rem, 9vw, 7rem);
}

.hero::before {
  position: absolute;
  top: 8%;
  left: -8rem;
  width: 16rem;
  height: 16rem;
  border: 1px solid rgba(16, 42, 67, 0.09);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(26rem, 0.95fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  margin-inline: 0.3rem;
  color: var(--amber-dark);
}

.hero h1,
.section-heading h2,
.approach h2,
.contact h2 {
  margin: 0;
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.5rem, 7vw, 6.6rem);
}

.hero h1 em {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero__lead {
  max-width: 38rem;
  margin: 1.8rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.text-link {
  font-size: 0.92rem;
  font-weight: 800;
  text-underline-offset: 0.35rem;
}

.text-link span {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(0.18rem, -0.18rem);
}

.hero__values {
  display: flex;
  gap: 0.65rem;
  margin-top: 2.4rem;
}

.hero__values span {
  padding: 0.38rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-height: 34rem;
}

.hero__halo {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(16, 42, 67, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero__halo::before,
.hero__halo::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero__halo::before {
  inset: 3rem;
  border: 1px dashed rgba(16, 42, 67, 0.13);
}

.hero__halo::after {
  inset: 8rem;
  background: rgba(243, 167, 43, 0.12);
}

.moment-card {
  position: absolute;
  z-index: 2;
  display: flex;
  width: min(20rem, 73%);
  min-height: 9rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: 1.15rem;
  box-shadow: var(--shadow);
}

.moment-card__number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: rgba(16, 42, 67, 0.42);
  font-family: Georgia, serif;
  font-style: italic;
}

.moment-card__label {
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.moment-card strong {
  max-width: 11rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.05;
}

.moment-card--notary {
  top: 1rem;
  left: 0;
  background: var(--white);
  transform: rotate(-4deg);
}

.moment-card--events {
  z-index: 3;
  top: 10rem;
  right: 0;
  background: var(--coral);
  color: var(--white);
  transform: rotate(3deg);
}

.moment-card--events .moment-card__number {
  color: rgba(255, 255, 255, 0.58);
}

.moment-card--audio {
  bottom: 1.8rem;
  left: 1rem;
  background: var(--teal);
  color: var(--white);
  transform: rotate(-2deg);
}

.moment-card--audio .moment-card__number {
  color: rgba(255, 255, 255, 0.55);
}

.hero__seal {
  position: absolute;
  z-index: 5;
  right: 0.35rem;
  bottom: 0;
  display: grid;
  width: 8.4rem;
  height: 8.4rem;
  place-content: center;
  border: 0.4rem solid var(--paper);
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  text-align: center;
  transform: rotate(7deg);
}

.hero__seal span {
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__seal strong {
  font-family: Georgia, serif;
  font-size: 2.55rem;
  font-style: italic;
  line-height: 0.9;
}

.service-ribbon {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--ink);
  color: var(--white);
}

.service-ribbon__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.3vw, 2.2rem);
  padding: 1rem 1.5rem;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-ribbon i {
  color: var(--amber);
  font-size: 0.45rem;
  font-style: normal;
}

.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.section-heading h2,
.approach h2,
.contact h2 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.section-heading > p,
.approach__intro > p,
.contact__copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card {
  --card-accent: var(--teal);
  position: relative;
  display: flex;
  min-height: 34rem;
  flex-direction: column;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.67);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 11rem;
  height: 11rem;
  border: 1.5rem solid color-mix(in srgb, var(--card-accent) 9%, transparent);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  box-shadow: 0 22px 45px rgba(16, 42, 67, 0.1);
  transform: translateY(-0.4rem);
}

.service-card--events {
  --card-accent: var(--coral);
}

.service-card--audio {
  --card-accent: var(--plum);
}

.service-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card__index {
  color: var(--card-accent);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
}

.service-card__tag {
  padding: 0.3rem 0.65rem;
  border: 1px solid color-mix(in srgb, var(--card-accent) 30%, transparent);
  border-radius: 999px;
  color: var(--card-accent);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card__symbol {
  position: relative;
  display: grid;
  width: 5.1rem;
  height: 5.1rem;
  margin: 2rem 0 2.5rem;
  place-items: center;
  border-radius: 1.25rem 1.25rem 1.25rem 0.3rem;
  background: color-mix(in srgb, var(--card-accent) 12%, var(--white));
  transform: rotate(-4deg);
}

.service-card__symbol::before {
  width: 2.25rem;
  height: 2.7rem;
  border: 2px solid var(--card-accent);
  border-radius: 0.15rem;
  content: "";
}

.document-lines,
.document-lines::before,
.document-lines::after {
  position: absolute;
  width: 1.25rem;
  height: 2px;
  background: var(--card-accent);
  content: "";
}

.document-lines::before {
  top: -0.42rem;
}

.document-lines::after {
  top: 0.42rem;
}

.service-card__symbol--lens {
  border-radius: 50%;
  transform: rotate(0);
}

.service-card__symbol--lens::before {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
}

.lens-dot {
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--card-accent);
}

.service-card__symbol--sound {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  transform: rotate(4deg);
}

.service-card__symbol--sound::before {
  display: none;
}

.service-card__symbol--sound span {
  width: 0.23rem;
  border-radius: 999px;
  background: var(--card-accent);
}

.service-card__symbol--sound span:nth-child(1),
.service-card__symbol--sound span:nth-child(5) {
  height: 1.1rem;
}

.service-card__symbol--sound span:nth-child(2),
.service-card__symbol--sound span:nth-child(4) {
  height: 2.1rem;
}

.service-card__symbol--sound span:nth-child(3) {
  height: 3rem;
}

.service-card h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.service-card > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.service-card ul {
  display: grid;
  gap: 0.5rem;
  margin: 1.45rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.83rem;
  font-weight: 700;
}

.service-card li::before {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--card-accent);
  content: "";
}

.service-card__link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--card-accent);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.service-card__link span {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.service-card__link:hover span {
  transform: translateX(0.25rem);
}

.approach {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.approach::before {
  position: absolute;
  top: -18rem;
  left: -8rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.approach__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(4rem, 9vw, 8rem);
}

.eyebrow--light {
  color: var(--amber);
}

.approach__intro > p {
  max-width: 32rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.68);
}

.steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.55rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.steps > li > span {
  color: var(--amber);
  font-family: Georgia, serif;
  font-style: italic;
}

.steps h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.contact {
  background:
    linear-gradient(135deg, rgba(243, 167, 43, 0.12), transparent 36%),
    var(--paper-deep);
}

.contact__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.contact__copy > p {
  max-width: 33rem;
  margin-top: 1.5rem;
}

.contact__accent {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.contact__accent span {
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.35rem, 4vw, 2.25rem);
  border: 1px solid rgba(16, 42, 67, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.inquiry-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(16, 42, 67, 0.18);
  border-radius: 0.72rem;
  outline: 0;
  background: #fbfaf6;
  color: var(--ink);
  font-size: 0.9rem;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(22, 111, 115, 0.12);
}

.form-note {
  margin: -0.2rem 0 0;
  color: #627386;
  font-size: 0.7rem;
  text-align: center;
}

.form-note.is-confirmation {
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  padding: 2rem 0;
  background: #0a2033;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  font-size: 0.72rem;
}

.site-footer__inner p {
  margin: 0;
}

.site-footer__inner p:last-child {
  text-align: right;
}

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

.brand--footer .brand__mark {
  background: var(--amber);
  color: var(--ink);
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 46rem;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero__visual {
    width: min(100%, 38rem);
    margin: 1rem auto 0;
  }

  .service-ribbon__track {
    justify-content: flex-start;
  }

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

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

  .service-card__symbol {
    margin-bottom: 1.8rem;
  }
}

@media (max-width: 760px) {
  .preview-note__detail {
    display: none;
  }

  .nav {
    min-height: 4.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav__links {
    position: fixed;
    z-index: 10;
    top: 6.5rem;
    right: 1rem;
    left: 1rem;
    display: grid;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: var(--ink);
    box-shadow: var(--shadow);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.7rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__links > a:not(.button) {
    padding: 0.8rem;
    color: var(--white);
  }

  .nav__links .button {
    margin-top: 0.5rem;
    background: var(--amber);
    color: var(--ink);
  }

  .hero {
    padding-top: 3.8rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__visual {
    min-height: 29rem;
  }

  .hero__halo {
    width: 23rem;
    height: 23rem;
  }

  .moment-card {
    min-height: 7.8rem;
  }

  .moment-card--events {
    top: 8.5rem;
  }

  .moment-card strong {
    font-size: 1.2rem;
  }

  .hero__seal {
    width: 7rem;
    height: 7rem;
  }

  .section-heading,
  .approach__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .site-footer__inner p:last-child {
    text-align: center;
  }
}

@media (max-width: 420px) {
  :root {
    --shell: min(100% - 1.2rem, 1180px);
  }

  .hero__values {
    flex-wrap: wrap;
  }

  .hero__visual {
    min-height: 27rem;
  }

  .moment-card {
    width: 79%;
  }

  .hero__seal {
    right: -0.15rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

