:root {
  --navy: #3d2f26;
  --navy-2: #5c4738;
  --red: #875134;
  --red-2: #6d3f27;
  --sand: #f4ebde;
  --sand-2: #e4d4be;
  --cream: #fbf6ee;
  --ink: #2f241d;
  --muted: #6e6155;
  --brass: #b08d63;
  --wood: #8d6544;
  --wood-2: #62452f;
  --shadow: 0 22px 50px rgba(61, 47, 38, 0.14);
  --shadow-dark: 0 28px 70px rgba(45, 31, 22, 0.28);
  --radius: 24px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Trebuchet MS", "Gill Sans", sans-serif;
  line-height: 1.65;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(180deg, #f8f1e7 0%, #eee2d1 48%, #e7d7c2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    repeating-linear-gradient(0deg, rgba(61, 47, 38, 0.018) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(135, 81, 52, 0.012) 0 1px, transparent 1px 7px);
}

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -999px;
  z-index: 500;
  background: var(--navy);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(248, 241, 231, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61, 47, 38, 0.08);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(61, 47, 38, 0.14);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--ink);
  font-family: Rockwell, Cambria, Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0.18rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.96);
}

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

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.site-nav {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.site-nav a {
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  color: rgba(47, 36, 29, 0.82);
  font-size: 0.96rem;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(61, 47, 38, 0.16);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
}

.section {
  padding: clamp(4.6rem, 8vw, 7.2rem) 0;
  position: relative;
  scroll-margin-top: 90px;
}

.light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

.dark {
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(176, 141, 99, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(135, 81, 52, 0.18), transparent 26%),
    linear-gradient(180deg, #5a4537 0%, #3b2d24 100%);
}

.hero {
  padding: clamp(5.2rem, 8vw, 7.8rem) 0 5rem;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(176, 141, 99, 0.18), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(135, 81, 52, 0.14), transparent 24%),
    linear-gradient(180deg, #f7efe4 0%, #eadcc9 56%, #e3d1b8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 38%),
    repeating-linear-gradient(90deg, rgba(98, 69, 47, 0.05) 0 1px, transparent 1px 88px);
}

.hero-grid,
.split,
.cta-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow,
.kicker,
.tag,
.pill,
.step,
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
}

.eyebrow {
  padding: 0.55rem 0.9rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(176, 141, 99, 0.26);
  color: var(--red);
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: currentColor;
}

h1,
h2,
h3,
.quote blockquote {
  font-family: Rockwell, Cambria, Georgia, serif;
  line-height: 1.08;
  margin: 0;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(3.1rem, 7vw, 5.5rem);
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.hero .lede {
  margin: 1rem 0 0;
  max-width: 58ch;
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  color: rgba(47, 36, 29, 0.84);
}

.hero .lede + .lede {
  color: rgba(47, 36, 29, 0.7);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.hero-points li {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(61, 47, 38, 0.08);
  font-size: 0.94rem;
  color: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #8f5f3f, #6c4128);
  color: #fff;
  box-shadow: 0 16px 34px rgba(98, 69, 47, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  border-color: rgba(61, 47, 38, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 31rem;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% 4% 4%;
  border-radius: 2rem;
  border: 1px solid rgba(61, 47, 38, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.46), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.14)),
    linear-gradient(135deg, #eadcc9, #dcc5a6 78%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 30px 60px rgba(61, 47, 38, 0.14);
}

.hero-note {
  position: absolute;
  left: 8%;
  top: 8%;
  z-index: 4;
  max-width: 15rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(252, 247, 238, 0.94);
  color: var(--ink);
  border: 1px solid rgba(141, 101, 68, 0.14);
  box-shadow: var(--shadow);
}

.hero-note strong {
  display: block;
  font-family: Rockwell, Cambria, Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.25;
}

.hero-note span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-brand-card {
  position: relative;
  z-index: 2;
  width: min(84%, 29rem);
  margin: 0 0 2.5rem auto;
  padding: 1.2rem;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(252, 247, 238, 0.76);
  border: 1px solid rgba(61, 47, 38, 0.08);
  box-shadow: var(--shadow);
}

.hero-logo-panel {
  padding: 1.3rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 233, 217, 0.86));
  border: 1px solid rgba(61, 47, 38, 0.08);
}

.hero-logo-panel img {
  width: min(100%, 14rem);
  margin: 0 auto;
  object-fit: contain;
}

.hero-brand-copy {
  margin-top: 1rem;
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(61, 47, 38, 0.06);
}

.hero-brand-copy .tag {
  background: rgba(135, 81, 52, 0.08);
  border: 1px solid rgba(135, 81, 52, 0.12);
  color: var(--red);
}

.hero-brand-copy strong {
  display: block;
  margin-top: 0.55rem;
  font-family: Rockwell, Cambria, Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.22;
}

.hero-brand-copy span:last-child {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.stack-card {
  position: absolute;
  overflow: hidden;
  border-radius: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #122438;
  box-shadow: var(--shadow-dark);
}

.card-a {
  top: 0.5rem;
  right: 0;
  width: min(76%, 27rem);
  transform: rotate(6deg);
}

.card-b {
  left: 0;
  bottom: 4.5rem;
  width: min(70%, 24rem);
  transform: rotate(-7deg);
}

.card-c {
  right: 10%;
  bottom: 0;
  width: min(58%, 18rem);
  transform: rotate(2deg);
}

.art,
.thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.art img,
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art::after,
.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(16, 34, 53, 0.14));
}

.art-flag,
.thumb-flag {
  background:
    linear-gradient(180deg, rgba(16, 34, 53, 0.12), rgba(16, 34, 53, 0.36)),
    repeating-linear-gradient(180deg, #a16a44 0 20px, #8d5938 20px 40px, #774a2f 40px 60px);
}

.art-flag::before,
.thumb-flag::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 12%;
  width: 38%;
  height: 34%;
  border-radius: 1rem;
  background: linear-gradient(180deg, #19324e, #10243b);
  box-shadow: 0 0 0 10px rgba(16, 34, 53, 0.4);
}

.art-flag .year {
  position: absolute;
  right: 1.2rem;
  bottom: 0.95rem;
  font-family: Rockwell, Cambria, Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: 0.08em;
  color: rgba(252, 248, 240, 0.9);
}

.art-plaque,
.thumb-plaque {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.14)),
    linear-gradient(135deg, #a46e48, #6a4229);
}

.art-plaque::before,
.thumb-plaque::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 1rem;
  border: 2px solid rgba(244, 237, 225, 0.36);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.05);
}

.art-plaque::after,
.thumb-responder::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 46%;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.96) 0 42%, #a22f2c 42% 58%, rgba(18, 18, 18, 0.96) 58% 100%);
}

.art-gear,
.thumb-gear {
  background:
    radial-gradient(circle at 25% 18%, rgba(182, 144, 93, 0.24), transparent 24%),
    linear-gradient(135deg, #263748, #111b28 70%);
}

.art-gear::before,
.thumb-gear::before {
  content: "";
  position: absolute;
  left: 16%;
  bottom: 14%;
  width: 28%;
  height: 58%;
  border-radius: 1.4rem 1.4rem 1rem 1rem;
  background: linear-gradient(180deg, #d8ccc0, #a49686);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.04);
}

.art-gear::after,
.thumb-gear::after {
  content: "";
  position: absolute;
  right: 18%;
  top: 24%;
  width: 34%;
  height: 44%;
  background: linear-gradient(180deg, #7a2b29, #42566b);
  clip-path: polygon(12% 0, 88% 0, 100% 18%, 82% 100%, 18% 100%, 0 18%);
}

.thumb-drink {
  background:
    radial-gradient(circle at 28% 24%, rgba(182, 144, 93, 0.2), transparent 24%),
    linear-gradient(135deg, #f2ebdf, #d9ccbb);
}

.thumb-drink::before,
.thumb-drink::after {
  content: "";
  position: absolute;
  bottom: 16%;
  width: 18%;
  height: 48%;
  border-radius: 1rem 1rem 0.85rem 0.85rem;
  background: linear-gradient(180deg, #fef9f1, #b5a695);
  box-shadow: 0 8px 25px rgba(16, 34, 53, 0.12);
}

.thumb-drink::before {
  left: 24%;
}

.thumb-drink::after {
  left: 52%;
}

.thumb-responder {
  background:
    linear-gradient(180deg, rgba(16, 34, 53, 0.12), rgba(16, 34, 53, 0.42)),
    linear-gradient(135deg, #2a3543, #111b28 68%);
}

.thumb-display {
  background:
    linear-gradient(135deg, rgba(244, 237, 225, 0.08), rgba(16, 34, 53, 0.08)),
    linear-gradient(135deg, #223343, #101823 72%);
}

.thumb-display::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 1rem;
  border: 2px solid rgba(244, 237, 225, 0.48);
}

.thumb-family {
  background: linear-gradient(135deg, #f4ebdc, #d6c4ac);
}

.thumb-family::before {
  content: "";
  position: absolute;
  inset: 24%;
  border-radius: 999px;
  background: linear-gradient(135deg, #b18a55, #8c603c);
  box-shadow:
    -48px 18px 0 -18px rgba(122, 43, 41, 0.86),
    48px 18px 0 -18px rgba(16, 34, 53, 0.72);
}

.thumb-community {
  background:
    linear-gradient(135deg, rgba(16, 34, 53, 0.08), rgba(16, 34, 53, 0.22)),
    linear-gradient(135deg, #f1e5d2, #cab79f);
}

.thumb-community::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 34%;
  height: 20%;
  border-radius: 999px;
  background: linear-gradient(90deg, #111 0 18%, #c79d60 18% 36%, #8f2c2b 36% 54%, #f1e6d5 54% 72%, #193149 72% 100%);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08);
}

.caption {
  padding: 1rem 1.1rem 1.15rem;
  background: linear-gradient(180deg, rgba(14, 23, 34, 0), rgba(14, 23, 34, 0.94));
  color: #fff;
}

.tag {
  padding: 0.32rem 0.68rem;
  background: rgba(244, 237, 225, 0.14);
  border: 1px solid rgba(244, 237, 225, 0.16);
  color: #f8e9cb;
}

.caption strong {
  display: block;
  font-family: Rockwell, Cambria, Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.2;
  margin-top: 0.45rem;
}

.caption span:last-child {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.logo-thumb {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f6efe2, #e7d5bb);
}

.logo-thumb::after {
  background: none;
}

.logo-thumb img {
  object-fit: contain;
  padding: 1.15rem;
}

.section-head {
  max-width: 48rem;
  margin-bottom: 2.4rem;
}

.kicker {
  color: var(--red);
  margin-bottom: 0.9rem;
}

.kicker-light {
  color: #f2c681;
}

.dark .kicker {
  color: #f2c681;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.04rem;
}

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

.section-head::after {
  content: "";
  display: block;
  width: 5.5rem;
  height: 0.4rem;
  margin-top: 1.15rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #362921 0 24%, #b08d63 24% 52%, #875134 52% 76%, #f1e6d5 76% 100%);
}

.quote {
  padding: 1.45rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(61, 47, 38, 0.08);
  box-shadow: var(--shadow);
}

.quote .label {
  padding: 0.34rem 0.7rem;
  background: rgba(122, 43, 41, 0.08);
  color: var(--red);
}

.quote blockquote {
  margin: 1rem 0 0;
  font-size: 1.32rem;
  color: var(--navy);
}

.quote p {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.copy p {
  margin: 0;
  font-size: 1.05rem;
  color: #56483e;
}

.copy p + p {
  margin-top: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.badge-grid {
  margin-top: 2rem;
}

.badge,
.panel,
.gallery-card,
.contact-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(61, 47, 38, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.badge {
  padding: 1.15rem 1rem;
}

.badge strong {
  display: block;
  font-family: Rockwell, Cambria, Georgia, serif;
  font-size: 1rem;
  color: var(--navy);
}

.badge span {
  display: block;
  margin-top: 0.34rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel {
  padding: 1.5rem;
}

.dark .panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.panel p,
.dark .panel p {
  margin: 0.75rem 0 0;
}

.dark .panel p {
  color: rgba(255, 255, 255, 0.78);
}

.icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  margin-bottom: 1rem;
  font-family: Rockwell, Cambria, Georgia, serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #f7dfb8;
  background: linear-gradient(135deg, rgba(176, 141, 99, 0.2), rgba(135, 81, 52, 0.18));
  border: 1px solid rgba(176, 141, 99, 0.22);
}

.gallery-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 65px rgba(61, 47, 38, 0.14);
}

.gallery-copy {
  padding: 1.1rem 1.15rem 1.25rem;
}

.pill {
  padding: 0.34rem 0.68rem;
  background: rgba(122, 43, 41, 0.08);
  color: var(--red);
}

.gallery-copy p {
  margin: 0.72rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.audience .panel::before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.32rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #e6c18d, #875134);
}

.value-number {
  display: inline-flex;
  width: 2.45rem;
  height: 2.45rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--red));
  color: #fff;
  font-family: Rockwell, Cambria, Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(61, 47, 38, 0.16);
}

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

.step {
  padding: 0.35rem 0.72rem;
  background: rgba(242, 198, 129, 0.14);
  border: 1px solid rgba(242, 198, 129, 0.2);
  color: #f7dfb8;
  margin-bottom: 1rem;
}

.cta-shell {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at top right, rgba(176, 141, 99, 0.22), transparent 30%),
    radial-gradient(circle at bottom left, rgba(135, 81, 52, 0.18), transparent 26%),
    linear-gradient(135deg, #5b4738, #3a2c24 72%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
}

.cta-shell h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.cta-shell p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-card {
  padding: 1.2rem 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  color: #fff;
}

.contact-card p {
  margin: 0.72rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.contact-card h3 {
  font-size: 1.05rem;
  line-height: 1.28;
}

.contact-card a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  word-break: break-word;
}

.contact-email {
  font-size: 0.98rem;
  word-break: normal;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: #f4d49d;
}

.label {
  padding: 0.32rem 0.65rem;
  background: rgba(242, 198, 129, 0.1);
  color: #f4d49d;
  margin-bottom: 0.6rem;
}

.site-footer {
  padding: 2rem 0 2.6rem;
  background: #34271f;
  color: #efe3d0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand {
  font-family: Rockwell, Cambria, Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
}

.footer-copy {
  margin: 0.4rem 0 0;
  max-width: 50ch;
  color: rgba(239, 227, 208, 0.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 249, 241, 0.9);
  transition: 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: rgba(239, 227, 208, 0.68);
}

.brand-banner {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(61, 47, 38, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.brand-banner img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.brand-banner figcaption {
  padding: 1.25rem 1.2rem 1.35rem;
}

.brand-banner h3 {
  margin-top: 0.6rem;
  font-size: 1.32rem;
}

.brand-banner p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.note {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.dark .note {
  color: rgba(255, 255, 255, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.4rem;
    padding: 0.9rem;
    border-radius: 1.2rem;
    background: rgba(248, 241, 231, 0.98);
    border: 1px solid rgba(61, 47, 38, 0.08);
    box-shadow: 0 20px 48px rgba(61, 47, 38, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero-grid,
  .split,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 27rem;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.2rem, 100%);
  }

  .hero {
    padding-top: 4.6rem;
  }

  .hero-visual {
    min-height: 22rem;
  }

  .hero-note {
    position: static;
    max-width: none;
    margin-bottom: 1rem;
  }

  .hero-brand-card {
    width: 100%;
    margin: 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .gallery-grid,
  .process-grid,
  .values,
  .services,
  .audience {
    grid-template-columns: 1fr;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
