:root {
  --charcoal: #0e0e0e;
  --graphite: #2c2c2c;
  --ivory: #f5f1e8;
  --ivory-soft: #ece6d8;
  --white: #ffffff;
  --gold: #d4a63a;
  --gold-dark: #b78a24;
  --gold-ink: #8a6200;
  --wood: #8a6447;
  --line: rgba(14, 14, 14, 0.16);
  --line-light: rgba(245, 241, 232, 0.22);
  --muted: #565349;
  --muted-dark: #cfc8b8;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(14, 14, 14, 0.08);
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--graphite);
  background: var(--ivory);
}

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

h1,
h2,
h3 {
  font-family: var(--font-serif);
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0 0 0.75em;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.9rem, 3.6vw + 0.9rem, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 2.2vw + 0.9rem, 2.1rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--gold-ink);
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--charcoal);
}

ul {
  padding-left: 1.2em;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
  box-shadow: 0 0 0 6px rgba(14, 14, 14, 0.6);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

.container {
  width: min(1100px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--soft {
  background: var(--ivory-soft);
}

.section--dark {
  background: var(--charcoal);
  color: var(--muted-dark);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section-head {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-ink);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.35rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section--dark .eyebrow {
  color: var(--gold);
}

.site-header {
  background: var(--charcoal);
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
  min-width: 0;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  padding: 0.6rem 0.9rem;
  color: var(--ivory);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--gold);
  background: rgba(245, 241, 232, 0.06);
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.site-nav a[aria-current="page"]:hover {
  color: var(--gold);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--gold-dark);
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font: inherit;
}

.nav-toggle .icon-open,
.nav-toggle .icon-close {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-inner--compact {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--gold);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  min-height: 44px;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--charcoal);
}

.btn--ghost {
  background: transparent;
  border-color: currentColor;
}

.btn--ghost.on-dark,
.section--dark .btn--ghost {
  color: var(--white);
}

.btn--ghost.on-dark:hover,
.section--dark .btn--ghost:hover {
  color: var(--gold);
  background: transparent;
  border-color: var(--gold);
}

.btn--ghost:not(.on-dark):hover {
  color: var(--charcoal);
  background: rgba(14, 14, 14, 0.05);
  border-color: var(--charcoal);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero {
  background: var(--charcoal);
  color: var(--muted-dark);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.hero h1 {
  color: var(--white);
}

.hero p.lead {
  font-size: 1.15rem;
  max-width: 34rem;
}

.hero .btn-row {
  margin-top: 1.5rem;
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-light);
}

.hero-media img {
  width: 100%;
  object-fit: cover;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
}

.card .icon {
  color: var(--gold-ink);
  margin-bottom: 0.9rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

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

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

.portfolio-grid figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portfolio-grid figcaption {
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
}

.areas li {
  border: 1.5px solid var(--gold);
  color: var(--charcoal);
  background: var(--white);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.section--dark .areas li {
  background: transparent;
  color: var(--ivory);
}

.cta-band {
  text-align: center;
}

.cta-band .section-head {
  margin-inline: auto;
}

.services-list {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.service-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}

.service-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.media-pair img {
  aspect-ratio: 3 / 4;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.5rem 1.4rem;
}

.service-card .icon {
  color: var(--gold-ink);
  margin-bottom: 0.25rem;
}

.service-card h2 {
  font-size: 1.35rem;
  margin: 0;
}

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

.service-card .note {
  background: var(--ivory);
  margin: 0.35rem 0 0;
  padding: 0.7rem 0.85rem;
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold-ink);
}

.service-card .text-link .arrow {
  transition: transform 0.18s ease;
}

.service-card .text-link:hover,
.service-card .text-link:focus-visible {
  color: var(--charcoal);
}

.service-card .text-link:hover .arrow,
.service-card .text-link:focus-visible .arrow {
  transform: translateX(4px);
}

.service-body .icon {
  color: var(--gold-ink);
  margin-bottom: 0.75rem;
}

.service-cta {
  margin-top: 0.9rem;
}

.service:nth-of-type(even) .service-media {
  order: -1;
}

.note {
  border-left: 3px solid var(--gold);
  background: var(--white);
  padding: 0.9rem 1.1rem;
  border-radius: 0 10px 10px 0;
  font-size: 0.95rem;
  color: var(--graphite);
  margin: 1rem 0 0;
}

.claims {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.claims li {
  background: var(--ivory);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  color: var(--graphite);
}

.claims strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-ink);
  margin-bottom: 0.3rem;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.channel-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-decoration: none;
  color: var(--graphite);
  box-shadow: var(--shadow);
}

.channel-card:hover {
  border-color: var(--gold);
  color: var(--graphite);
}

.channel-card .icon {
  color: var(--gold-ink);
  flex: none;
  margin-top: 0.15rem;
}

.channel-card h3 {
  margin-bottom: 0.2rem;
}

.channel-card p {
  margin: 0;
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.channel-card .channel-action {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--gold-ink);
}

.site-footer {
  background: var(--charcoal);
  color: var(--muted-dark);
  padding: 3rem 0 2rem;
  font-size: 0.95rem;
}

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

.site-footer h2 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.site-footer a {
  color: var(--muted-dark);
  text-decoration: none;
  padding: 0.2rem 0;
  display: inline-block;
}

.site-footer a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-brand .brand-name {
  color: var(--white);
  white-space: normal;
  font-size: 1.2rem;
}

.footer-base {
  border-top: 1px solid var(--line-light);
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

.icon {
  display: inline-block;
  width: 28px;
  height: 28px;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.breadcrumb-note {
  font-size: 0.9rem;
}

.text-link {
  font-weight: 600;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

.site-nav .mobile-cta {
  display: none;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    border-top: 1px solid var(--line-light);
    box-shadow: 0 18px 30px rgba(14, 14, 14, 0.35);
    padding: 0.75rem 1.25rem 1.25rem;
    display: none;
    z-index: 50;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.2rem;
  }

  .site-nav a {
    font-size: 1.1rem;
    padding: 0.9rem 0.75rem;
  }

  .site-nav .mobile-cta {
    display: inline-flex;
    margin: 0.75rem 0.75rem 0.25rem;
  }

  .site-header {
    position: relative;
  }
}

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

  .hero-media {
    order: 2;
  }

  .service,
  .service:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .service:nth-of-type(even) .service-media {
    order: 0;
  }

  .service-media {
    order: 2;
  }

  .media-pair {
    grid-template-columns: 1fr;
  }

  .media-pair img {
    aspect-ratio: 4 / 3;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

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

  .btn-row .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-nav,
  .btn,
  .header-cta,
  .channel-card,
  .portfolio-grid img,
  a {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .btn:active,
  .header-cta:active {
    transform: translateY(1px);
  }
}

.claims + .btn-row {
  margin-top: 2.5rem;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  html.js [data-reveal] {
    opacity: 0;
    translate: 0 26px;
    transition:
      opacity 0.65s ease,
      translate 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease;
  }

  html.js [data-reveal].is-visible {
    opacity: 1;
    translate: 0 0;
  }

  .btn:hover,
  .header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(14, 14, 14, 0.22);
  }

  .section--dark .btn:hover {
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
  }

  .btn:active,
  .header-cta:active {
    transform: translateY(0);
  }

  .card,
  .service-card,
  .claims li,
  .channel-card,
  .portfolio-grid figure {
    transition:
      opacity 0.65s ease,
      translate 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease;
  }

  .card:hover,
  .service-card:hover,
  .claims li:hover,
  .channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(14, 14, 14, 0.12);
  }

  .claims li:hover,
  .channel-card:hover {
    border-color: var(--gold);
  }

  .portfolio-grid img {
    transition: transform 0.6s ease;
  }

  .portfolio-grid figure:hover img {
    transform: scale(1.045);
  }
}
