@charset "UTF-8";

/* ==========================================================================
   Base styles (layout, components, color tokens)
   Responsive breakpoint overrides live in responsive.css.
   ========================================================================== */

:root {
  --ink: #272117;
  --ink-soft: #4e473d;
  --muted: #756d61;
  --paper: #fffefa;
  --ivory: #faf8f2;
  --wash: #f3eee4;
  --wash-deep: #ebe3d2;
  --gold: #a8862f;
  --gold-deep: #795f1d;
  --gold-soft: #c9b277;
  --line: #d8cfbd;
  --line-light: #e9e3d7;
  --white: #ffffff;
  --serif: "Iowan Old Style", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", Georgia, serif;
  --sans: "Avenir Next", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --shadow: 0 24px 60px rgba(62, 49, 24, 0.12);
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.035em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

h3 {
  font-size: 1.15rem;
}

.shell {
  width: min(1280px, calc(100% - 72px));
  margin-inline: auto;
}

.shell-narrow {
  width: min(1120px, calc(100% - 72px));
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-140%);
  color: var(--white);
  background: var(--ink);
  border-radius: 3px;
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(255, 254, 250, 0.94);
  border-color: rgba(216, 207, 189, 0.7);
  box-shadow: 0 10px 30px rgba(46, 39, 25, 0.05);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  flex: 0 0 auto;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.75vw, 1.8rem);
  letter-spacing: 0.01em;
}

.brand-name em {
  color: var(--gold);
  font-style: normal;
}

.brand-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.7vw, 28px);
  margin-left: 36px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.global-nav > a {
  position: relative;
  padding-block: 10px;
  white-space: nowrap;
}

.global-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.global-nav > a:hover::after,
.global-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-download {
  padding: 10px 12px;
  color: var(--gold-deep);
  background: transparent;
  border: 1px solid var(--gold-soft);
  cursor: pointer;
  white-space: nowrap;
}

.header-tel {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  margin-left: 24px;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-tel-icon {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  gap: 14px;
  color: var(--white);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 1px;
  box-shadow: 0 10px 24px rgba(168, 134, 47, 0.16);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  box-shadow: 0 14px 32px rgba(90, 68, 17, 0.2);
  transform: translateY(-2px);
}

.button-small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.68rem;
  box-shadow: none;
}

.button-outline {
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--gold-soft);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
  margin-top: 14px;
  padding: 15px 18px;
  justify-content: space-between;
  color: var(--gold-deep);
  border: 1px solid var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 0.25s ease, background 0.25s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ivory);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 254, 250, 1) 0%, rgba(255, 254, 250, 0.98) 35%, rgba(255, 254, 250, 0.55) 53%, rgba(255, 254, 250, 0) 69%);
  content: "";
  pointer-events: none;
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 64%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.hero-seal {
  position: absolute;
  top: 22%;
  right: clamp(6%, 9vw, 18%);
  display: grid;
  width: 154px;
  height: 154px;
  place-content: center;
  color: var(--ink);
  background: rgba(255, 254, 250, 0.68);
  border: 1px solid rgba(121, 95, 29, 0.75);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(255, 254, 250, 0.4);
  text-align: center;
  backdrop-filter: blur(7px);
}

.hero-seal::before,
.hero-seal::after {
  position: absolute;
  width: 28px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero-seal::before {
  top: 36px;
  left: 18px;
  transform: rotate(38deg);
}

.hero-seal::after {
  right: 18px;
  bottom: 36px;
  transform: rotate(38deg);
}

.hero-seal span,
.hero-seal strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.79rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: clamp(190px, 20vh, 230px);
  padding-bottom: 110px;
}

.hero-copy h1 {
  max-width: 670px;
  margin-bottom: 30px;
  font-size: clamp(3.1rem, 5.4vw, 5.7rem);
  line-height: 1.36;
  letter-spacing: 0.08em;
}

.hero-copy h1 span {
  color: #a5432d;
  white-space: nowrap;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 35px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 2.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section-wash {
  background: var(--wash);
}

.pain-section {
  padding: 62px 0 74px;
}

.section-heading-center {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.pain-card {
  position: relative;
  min-height: 230px;
  padding: 34px 22px 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 207, 189, 0.7);
  box-shadow: 0 12px 28px rgba(64, 51, 26, 0.035);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 96px;
  height: 96px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  content: "";
}

.pain-card:hover {
  box-shadow: 0 18px 38px rgba(64, 51, 26, 0.08);
  transform: translateY(-5px);
}

.card-number {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
}

.pain-card h3 {
  margin-bottom: 15px;
  font-size: clamp(0.93rem, 1.15vw, 1.08rem);
}

.pain-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.8;
}

.concept-section {
  position: relative;
  padding: 126px 0 136px;
  overflow: hidden;
  background: var(--paper);
}

.concept-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(500px, 1.35fr) minmax(230px, 0.75fr);
  align-items: center;
  gap: 48px;
}

.concept-copy h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.concept-copy > p:not(.eyebrow) {
  max-width: 480px;
  color: var(--muted);
}

.hub-diagram {
  position: relative;
  width: 100%;
  max-width: 570px;
  aspect-ratio: 1;
  margin-inline: auto;
  background-image:
    linear-gradient(90deg, transparent calc(50% - 0.5px), var(--line-light) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), var(--line-light) 50%, transparent calc(50% + 0.5px));
  border-radius: 50%;
}

.hub-diagram::before,
.hub-diagram::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 82%;
  height: 1px;
  background: var(--line-light);
  content: "";
  transform-origin: center;
}

.hub-diagram::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.hub-diagram::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hub-core,
.hub-item {
  position: absolute;
  z-index: 2;
  display: grid;
  place-content: center;
  aspect-ratio: 1;
  background: rgba(255, 254, 250, 0.96);
  border: 1px solid var(--line);
  border-radius: 50%;
  text-align: center;
}

.hub-core {
  top: 50%;
  left: 50%;
  width: 28%;
  color: var(--ink);
  background: #c4ad78;
  border-color: #b69a5b;
  box-shadow: 0 15px 35px rgba(112, 84, 29, 0.18);
  transform: translate(-50%, -50%);
}

.hub-core strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.hub-core span {
  font-family: var(--serif);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.hub-item {
  width: 22%;
  min-width: 96px;
  padding: 10px;
  box-shadow: 0 10px 24px rgba(56, 46, 28, 0.035);
}

.hub-item span {
  font-family: var(--serif);
  font-size: clamp(0.66rem, 0.9vw, 0.83rem);
  font-weight: 600;
  line-height: 1.5;
}

.hub-item small {
  margin-top: 2px;
  color: var(--gold-deep);
  font-size: 0.48rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hub-item-1 { top: 0; left: 39%; }
.hub-item-2 { top: 12%; right: 7%; }
.hub-item-3 { top: 39%; right: 0; }
.hub-item-4 { right: 7%; bottom: 7%; }
.hub-item-5 { bottom: 0; left: 39%; }
.hub-item-6 { bottom: 7%; left: 7%; }
.hub-item-7 { top: 39%; left: 0; }
.hub-item-8 { top: 12%; left: 7%; }

.team-list {
  padding-left: 32px;
  border-left: 1px solid var(--gold-soft);
}

.team-list h3 {
  margin-bottom: 22px;
  color: var(--gold-deep);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
}

.team-list ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.team-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 4px;
  border-bottom: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  content: "";
  transform: rotate(-45deg);
}

.botanical {
  position: absolute;
  z-index: 0;
  width: 230px;
  height: 230px;
  opacity: 0.36;
  pointer-events: none;
}

.botanical-one {
  top: 25px;
  right: -45px;
  background:
    radial-gradient(ellipse at 72% 24%, transparent 0 8px, #8a9573 9px 10px, transparent 11px),
    radial-gradient(ellipse at 52% 42%, transparent 0 9px, #8a9573 10px 11px, transparent 12px),
    radial-gradient(ellipse at 80% 58%, transparent 0 8px, #8a9573 9px 10px, transparent 11px),
    linear-gradient(124deg, transparent 48.8%, #8a9573 49% 49.8%, transparent 50%);
  transform: rotate(-12deg);
}

.multiuse-section {
  padding: 112px 0 100px;
}

.multiuse-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(650px, 1.85fr);
  align-items: center;
  gap: 70px;
}

.multiuse-copy h2 {
  font-size: clamp(1.95rem, 3vw, 3.1rem);
}

.multiuse-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(115px, 1fr));
  align-items: stretch;
  gap: 10px;
}

.output-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 250px;
  padding: 22px 15px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--ink);
  background: #dfd2b5;
  border: 1px solid rgba(194, 179, 147, 0.7);
}

.output-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(33, 29, 22, 0.7));
  content: "";
  opacity: 0;
}

.output-card span,
.output-card strong,
.output-card small {
  position: relative;
  z-index: 2;
}

.output-card span {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 0.65rem;
}

.output-card strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 600;
}

.output-card small {
  color: var(--muted);
  font-size: 0.55rem;
}

.output-image {
  padding: 0;
}

.output-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.output-image > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 45px 14px 14px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(36, 29, 18, 0.72));
}

.output-image span {
  color: rgba(255, 255, 255, 0.75);
}

.output-image > div small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
}

.output-card:hover img {
  transform: scale(1.04);
}

.output-tone {
  background:
    linear-gradient(145deg, transparent 0 40%, rgba(255,255,255,0.32) 40% 42%, transparent 42%),
    #cdbd99;
}

.output-light {
  background: #eee7d8;
}

.output-phone {
  background:
    linear-gradient(var(--ink-soft), var(--ink-soft)) center 38px / 54% 1px no-repeat,
    linear-gradient(90deg, transparent 43%, rgba(255,255,255,.5) 43% 57%, transparent 57%) center 70px / 64% 90px no-repeat,
    #d7c7a5;
}

.output-line {
  position: relative;
  height: 72px;
  margin: 0 26px;
  border-right: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  border-left: 1px solid var(--gold-soft);
}

.output-line::before {
  position: absolute;
  top: 26px;
  left: 50%;
  height: 22px;
  border-left: 1px solid var(--gold-soft);
  content: "";
}

.output-line span {
  position: absolute;
  bottom: -17px;
  left: 50%;
  padding: 6px 24px;
  background: var(--paper);
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(51, 42, 23, 0.06);
  font-family: var(--serif);
  font-size: 0.85rem;
  white-space: nowrap;
  transform: translateX(-50%);
}

.works-section {
  padding: 120px 0 126px;
  overflow: hidden;
}

.works-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.works-heading h2 {
  margin-bottom: 0;
}

.works-heading > p {
  max-width: 470px;
  margin-bottom: 7px;
  color: var(--muted);
}

.carousel {
  --visible: 3;
  --gap: 22px;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: var(--gap);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.work-card {
  display: grid;
  flex: 0 0 calc((100% - (var(--visible) - 1) * var(--gap)) / var(--visible));
  grid-template-columns: 43% 57%;
  min-height: 300px;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line-light);
}

.work-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card-copy {
  display: flex;
  padding: 28px 24px;
  flex-direction: column;
  justify-content: center;
}

.work-card-copy > p {
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-size: 0.65rem;
  font-weight: 700;
}

.work-card-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(0.93rem, 1.2vw, 1.17rem);
}

.work-card-copy ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
}

.work-card-copy li {
  color: var(--muted);
  font-size: 0.57rem;
}

.work-card-copy li:not(:last-child)::after {
  margin-left: 4px;
  content: "/";
}

.work-card-quote {
  display: flex;
  padding: 42px;
  flex-direction: column;
  justify-content: center;
  background: #343027;
  color: var(--white);
}

.quote-mark {
  color: var(--gold-soft);
  font-family: Georgia, serif;
  font-size: 4.6rem;
  line-height: 0.7;
}

.work-card-quote blockquote {
  margin: 18px 0 24px;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.9;
}

.work-card-quote p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 0.64rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 28px;
}

.carousel-controls > button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, opacity .25s ease;
}

.carousel-controls > button:hover:not(:disabled),
.carousel-controls > button:focus-visible:not(:disabled) {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.carousel-controls > button:disabled {
  cursor: default;
  opacity: .32;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.carousel-dots button {
  width: 18px;
  height: 3px;
  padding: 0;
  background: var(--line);
  border: 0;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.carousel-dots button.is-active {
  width: 36px;
  background: var(--gold);
}

.flow-section {
  padding: 102px 0;
}

.flow-layout {
  display: grid;
  grid-template-columns: 0.65fr 2fr;
  align-items: center;
  gap: 70px;
}

.flow-heading h2 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.flow-heading > p:last-child {
  color: var(--muted);
}

.flow-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.flow-list li {
  position: relative;
  display: flex;
  min-height: 190px;
  padding: 20px 18px;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.flow-list li:nth-child(1) { z-index: 5; }
.flow-list li:nth-child(2) { z-index: 4; }
.flow-list li:nth-child(3) { z-index: 3; }
.flow-list li:nth-child(4) { z-index: 2; }
.flow-list li:nth-child(5) { z-index: 1; }

.flow-list li:last-child {
  border-right: 1px solid var(--line);
}

.flow-list li::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 8px;
  height: 8px;
  background: var(--wash);
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.flow-list li:last-child::after {
  display: none;
}

.flow-list span {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
}

.flow-list h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.7;
}

.pricing-section {
  position: relative;
  padding: 122px 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(201, 178, 119, .16), transparent 26%),
    linear-gradient(180deg, #fbf9f4, #f6f1e7);
}

.pricing-section::before {
  position: absolute;
  top: 78px;
  right: -105px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(168, 134, 47, .16);
  border-radius: 50%;
  content: "";
}

.pricing-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

.pricing-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.25vw, 3.5rem);
}

.pricing-heading-note {
  padding-bottom: 8px;
}

.pricing-heading-note p {
  margin-bottom: 15px;
  color: var(--muted);
}

.pricing-heading-note span {
  display: inline-block;
  padding: 5px 12px;
  color: var(--gold-deep);
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--gold-soft);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 610px;
  padding: 42px 36px 34px;
  flex-direction: column;
  background: rgba(255, 254, 250, .92);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(61, 49, 25, .045);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.price-card:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 24px 55px rgba(61, 49, 25, .095);
  transform: translateY(-5px);
}

.price-card-featured {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 8%, rgba(255,255,255,.13), transparent 25%),
    #343027;
  border-color: #343027;
  box-shadow: 0 26px 60px rgba(38, 32, 21, .18);
}

.price-card-featured:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 30px 70px rgba(38, 32, 21, .24);
}

.price-card-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  padding: 7px 15px 8px;
  color: var(--white);
  background: var(--gold);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.price-card-top {
  min-height: 162px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-light);
}

.price-card-featured .price-card-top {
  border-color: rgba(255,255,255,.16);
}

.price-plan-number {
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.price-card-featured .price-plan-number {
  color: var(--gold-soft);
}

.price-card h3 {
  margin-bottom: 11px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.price-plan-lead {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.8;
}

.price-card-featured .price-plan-lead {
  color: rgba(255,255,255,.62);
}

.price-amount {
  display: flex;
  align-items: flex-start;
  margin: 31px 0 0;
  font-family: var(--serif);
  line-height: 1;
  letter-spacing: 0;
}

.price-amount span {
  margin-top: 8px;
  margin-right: 4px;
  color: var(--gold-deep);
  font-size: 1rem;
}

.price-card-featured .price-amount span {
  color: var(--gold-soft);
}

.price-amount strong {
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 400;
}

.price-amount small {
  align-self: flex-end;
  margin: 0 0 5px 5px;
  font-family: var(--sans);
  font-size: .72rem;
}

.price-unit {
  margin: 7px 0 24px;
  color: var(--muted);
  font-size: .62rem;
}

.price-card-featured .price-unit {
  color: rgba(255,255,255,.52);
}

.price-features {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.price-features li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: .75rem;
  line-height: 1.65;
}

.price-features li::before {
  position: absolute;
  top: .55em;
  left: 1px;
  width: 8px;
  height: 4px;
  border-bottom: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  content: "";
  transform: rotate(-45deg);
}

.price-card-featured .price-features li {
  color: rgba(255,255,255,.78);
}

.price-button {
  width: 100%;
  margin-top: auto;
  box-shadow: none;
}

.price-card-featured .price-button {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.price-card-featured .price-button:hover,
.price-card-featured .price-button:focus-visible {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.pricing-footnote {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
  padding: 24px 28px;
  gap: 38px;
  background: rgba(255,255,255,.65);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-footnote p {
  margin: 0;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.8;
}

.pricing-footnote strong {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: .88rem;
  font-weight: 600;
}

.faq-section {
  padding: 116px 0;
}

.faq-section .section-heading {
  margin-bottom: 36px;
}

.faq-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  position: relative;
  width: 100%;
  padding: 28px 56px 28px 20px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-align: left;
  cursor: pointer;
}

.faq-q::before,
.faq-q::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 16px;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: transform .25s ease;
}

.faq-q::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-q::after {
  transform: rotate(0deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  max-width: 850px;
  margin: 0 56px 0 20px;
  padding-bottom: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  transition: grid-template-rows .3s ease, padding-bottom .3s ease;
}

.faq-a > p {
  margin: 0;
  min-height: 0;
}

.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
  padding-bottom: 28px;
}

.cta-section {
  padding: 92px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 10%, rgba(255,255,255,.15), transparent 25%),
    linear-gradient(110deg, #8d6e24, #b69646 55%, #8b6b20);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-section .eyebrow {
  color: rgba(255,255,255,.7);
}

.cta-section h2 {
  margin-bottom: 10px;
}

.cta-section p:last-child {
  margin-bottom: 0;
  color: rgba(255,255,255,.78);
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.button-light {
  color: var(--gold-deep);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--gold-deep);
  background: #f5efe1;
  border-color: #f5efe1;
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255,255,255,.6);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--gold-deep);
  background: var(--white);
  border-color: var(--white);
}

.site-footer {
  padding: 65px 0 45px;
  color: rgba(255,255,255,.8);
  background: #2d2a24;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 45px;
}

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

.brand-footer .brand-note {
  color: rgba(255,255,255,.55);
}

.footer-inner > p {
  margin: 0;
  font-size: 0.68rem;
}

.footer-inner > p:not(.copyright) {
  color: rgba(255,255,255,.55);
}

.copyright {
  letter-spacing: .08em;
}

.contact-dialog {
  width: min(630px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-dialog::backdrop {
  background: rgba(32, 28, 21, .6);
  backdrop-filter: blur(5px);
}

.contact-panel {
  position: relative;
  display: grid;
  padding: 52px;
  gap: 18px;
}

.contact-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.contact-panel > p:not(.eyebrow):not(.form-status) {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: .76rem;
}

.contact-panel label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 700;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
}

.contact-panel fieldset {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
}


.contact-panel fieldset legend {
  padding: 0 4px;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 700;
}

.contact-panel fieldset label {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.contact-panel fieldset input {
  width: auto;
  margin: 0;
}

.contact-panel fieldset[data-slots-field] {
  display: block;
  min-width: 0;
}

.contact-panel fieldset[data-slots-field] legend {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  margin-bottom: 12px;
  white-space: normal;
  overflow-wrap: normal;
}

.contact-panel fieldset[data-slots-field] .slot-row + .slot-row {
  margin-top: 12px;
}

.contact-panel fieldset[data-slots-field] .slot-row {
  display: grid;
  grid-template-columns: 4.5em 1fr 9em;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.contact-panel fieldset[data-slots-field] .slot-row span {
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 700;
}

.contact-panel fieldset[data-slots-field] input,
.contact-panel fieldset[data-slots-field] select {
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  font-size: .82rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
}

.slot-date-field,
.slot-time-field {
  width: 100%;
}

.slot-row-heading span {
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 700;
}

.contact-panel fieldset[data-slots-field][hidden] {
  display: none;
}

.contact-panel input:focus,
.contact-panel textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(168, 134, 47, .12);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--gold-deep);
  font-size: .72rem;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  max-width: min(360px, calc(100% - 48px));
  padding: 14px 18px;
  color: var(--white);
  background: #2d2a24;
  box-shadow: var(--shadow);
  font-size: .74rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .25s ease, transform .25s ease;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
}

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

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* 2026 LP content expansion */
.section-lead {
  max-width: 720px;
  margin: -8px auto 32px;
  color: var(--muted);
}

.hero-points {
  display: grid;
  max-width: 660px;
  margin: 0 0 28px;
  padding: 0;
  gap: 7px;
  list-style: none;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 600;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
}

.hero-points li::before {
  position: absolute;
  top: .72em;
  left: 2px;
  width: 8px;
  height: 4px;
  border-bottom: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  content: "";
  transform: rotate(-45deg);
}

.hero-microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .62rem;
}

.trust-bar {
  padding: 30px 0;
  background: #302d27;
  color: var(--white);
}

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

.trust-grid > div {
  display: grid;
  min-height: 72px;
  place-content: center;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, .15);
  text-align: center;
}

.trust-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.trust-grid strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.trust-grid span {
  color: rgba(255, 255, 255, .65);
  font-size: .63rem;
}

.quick-section {
  padding: 112px 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quick-card {
  min-height: 280px;
  padding: 42px 36px;
  background: var(--ivory);
  border: 1px solid var(--line-light);
}

.quick-card > span,
.service-card > span,
.assurance-grid article > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: .9rem;
}

.quick-card h3 {
  margin: 22px 0 16px;
  font-size: 1.35rem;
}

.quick-card p {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
}

.pain-section {
  padding-block: 104px;
}

.industry-tabs {
  overflow: hidden;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.tab-list button {
  min-height: 64px;
  padding: 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
}

.tab-list button:last-child {
  border-right: 0;
}

.tab-list button[aria-selected="true"] {
  color: var(--white);
  background: var(--gold);
}

.tab-panel {
  min-height: 310px;
  padding: 45px 52px;
}

.tab-panel h3 {
  margin-bottom: 25px;
  color: var(--gold-deep);
  font-size: 1.45rem;
}

.tab-panel ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  gap: 16px 38px;
  list-style: none;
}

.tab-panel li {
  position: relative;
  padding: 15px 15px 15px 28px;
  border-bottom: 1px solid var(--line-light);
  font-size: .78rem;
}

.tab-panel li::before {
  position: absolute;
  top: 24px;
  left: 6px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.comparison-section {
  padding: 118px 0;
}

.comparison-table {
  border-top: 1px solid var(--line);
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.comparison-table span,
.comparison-table strong {
  padding: 20px 28px;
  font-size: .78rem;
  font-weight: 500;
}

.comparison-table span {
  color: var(--muted);
  background: var(--ivory);
}

.comparison-table strong {
  color: var(--gold-deep);
  background: #f4edda;
}

.comparison-head span {
  color: var(--white);
  background: #4a463e;
  font-weight: 700;
  text-align: center;
}

.comparison-head span:last-child {
  background: var(--gold);
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
  padding: 28px 34px;
  gap: 28px;
  background: var(--wash);
  border: 1px solid var(--line);
}

.mid-cta > div:first-child {
  display: grid;
}

.mid-cta strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.mid-cta span {
  color: var(--muted);
  font-size: .7rem;
}

.mid-cta > div:last-child {
  display: flex;
  gap: 10px;
}

.mid-cta.compact {
  margin-top: 34px;
}

.reasons-section {
  padding: 120px 0;
}

.reason-list {
  border-top: 1px solid var(--line);
}

.reason-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 45px 20px;
  border-bottom: 1px solid var(--line);
}

.reason-card > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.reason-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.reason-card p {
  max-width: 850px;
  margin-bottom: 18px;
  color: var(--muted);
}

.reason-card small {
  display: inline-block;
  padding: 8px 12px;
  color: var(--gold-deep);
  background: var(--wash);
  font-size: .64rem;
}

.services-section {
  padding: 112px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-card {
  min-height: 220px;
  padding: 30px 26px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line);
}

.service-card h3 {
  margin: 26px 0 12px;
  font-size: 1.08rem;
}

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

.case-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: .65rem;
}

.price-fit {
  margin: auto 0 18px;
  padding-top: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line-light);
  font-size: .65rem;
}

.price-fit strong {
  display: block;
  color: var(--gold-deep);
}

.price-card-featured .price-fit {
  color: rgba(255, 255, 255, .65);
  border-color: rgba(255, 255, 255, .16);
}

.price-card-featured .price-fit strong {
  color: var(--gold-soft);
}

.inline-button {
  margin-top: 8px;
  padding: 0;
  color: var(--gold-deep);
  background: transparent;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.assurance-section {
  padding: 105px 0;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.assurance-grid article {
  min-height: 210px;
  padding: 30px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line);
}

.assurance-grid h3 {
  margin: 24px 0 10px;
}

.assurance-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .7rem;
}

.final-cta {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.final-cta-copy {
  position: sticky;
  top: calc(var(--header-h) + 30px);
}

.final-cta-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .75);
}

.conversion-options {
  display: grid;
  margin-top: 30px;
  gap: 8px;
}

.conversion-options button,
.conversion-options a {
  display: flex;
  padding: 15px 17px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .25);
  cursor: pointer;
}

.conversion-options strong {
  font-family: var(--serif);
  font-size: .9rem;
}

.conversion-options span {
  color: rgba(255, 255, 255, .62);
  font-size: .62rem;
}

.inline-form {
  display: grid;
  padding: 38px;
  gap: 16px;
  color: var(--ink);
  background: var(--paper);
}

.inline-form label {
  display: grid;
  gap: 6px;
  font-size: .67rem;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.inline-form input,
.inline-form textarea,
.inline-form select,
.contact-panel select {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
}

.inline-form fieldset {
  display: flex;
  margin: 0;
  padding: 12px 14px;
  gap: 22px;
  border: 1px solid var(--line);
}

.inline-form fieldset legend {
  padding: 0 4px;
  font-size: .65rem;
  font-weight: 700;
}

.inline-form fieldset label {
  display: flex;
  align-items: center;
}

.inline-form fieldset input {
  width: auto;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: .58rem;
}

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

.footer-meta p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .55);
  font-size: .65rem;
}

.footer-nav {
  display: flex;
  grid-column: 2 / 4;
  justify-content: flex-end;
  gap: 20px;
  color: rgba(255, 255, 255, .7);
  font-size: .62rem;
}

.copyright {
  grid-column: 3;
}

.mobile-cta {
  display: none;
}

/* Multi-use showcase: keep every deliverable readable at each viewport. */
.multiuse-grid {
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.7fr);
  gap: clamp(42px, 5vw, 76px);
}

.multiuse-copy h2 {
  font-size: clamp(1.9rem, 2.5vw, 2.65rem);
}

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

.output-card {
  min-height: 0;
  aspect-ratio: 4 / 5;
  isolation: isolate;
  border-radius: 2px;
  box-shadow: 0 16px 34px rgba(62, 49, 24, .1);
}

.output-card::after {
  z-index: 1;
  background: linear-gradient(180deg, transparent 34%, rgba(20, 27, 23, .82) 100%);
  opacity: 1;
}

.output-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.output-image > div {
  padding: 64px 18px 17px;
  background: none;
  line-height: 1.35;
}

.output-image span,
.output-image strong,
.output-image > div small {
  display: block;
}

.output-image span {
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
}

.output-image strong {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(.9rem, 1.15vw, 1.08rem);
  font-weight: 600;
  letter-spacing: .02em;
}

.output-image > div small {
  margin-top: 4px;
  font-size: .6rem;
  line-height: 1.35;
  letter-spacing: .015em;
}

.output-line {
  width: auto;
  margin-inline: 32px;
}

/* Visual breathing room for text-dense sections. */
.quick-card-visual {
  display: grid;
  min-height: 0;
  padding: 0;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.quick-card-visual > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.88) contrast(.98);
}

.quick-card-visual > div {
  padding: 25px 28px 30px;
}

.quick-card-visual > div > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: .72rem;
}

.quick-card-visual h3 {
  margin: 13px 0 12px;
}

.tab-list button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tab-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--gold-deep);
  background: rgba(168, 134, 47, .08);
  border: 1px solid rgba(168, 134, 47, .34);
  border-radius: 50%;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.tab-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tab-list button[aria-selected="true"] .tab-icon {
  color: var(--white);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .48);
}

.service-card,
.assurance-grid article {
  position: relative;
  overflow: hidden;
}

.icon-badge,
.assurance-grid article::before {
  position: absolute;
  top: 22px;
  right: 22px;
  display: flex;
  box-sizing: border-box;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(168, 134, 47, .08);
  border: 1px solid rgba(168, 134, 47, .38);
  border-radius: 50%;
}

.service-icon {
  display: block;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: .9rem;
  font-style: normal;
  line-height: 1;
  text-align: center;
  position: absolute;
  left: 36%;
  top: 36%;
}

.assurance-grid article::before {
  width: 52px;
  height: 52px;
  content: attr(data-symbol);
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: .68rem;
  font-style: normal;
  line-height: 1;
  text-align: center;
  letter-spacing: .04em;
}

.reason-card-visual {
  grid-template-columns: 72px minmax(190px, 250px) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.reason-card-visual > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.86) contrast(.98);
}

