.as-page {
  --as-bg: #0a0a0a;
  --as-surface: #1e1e1e;
  --as-panel: #202020;
  --as-panel-gold: #241f13;
  --as-ink: #f2f0e9;
  --as-muted: #a6a69c;
  --as-line: rgba(255, 255, 255, 0.1);
  --as-accent: #c9a84c;
  --as-accent-soft: rgba(201, 168, 76, 0.14);
  --as-accent-deep: #e3c673;
  --as-radius: 14px;

  min-height: 100vh;
  background: var(--as-bg);
  color: var(--as-ink);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
}

.as-page h1,
.as-page h2,
.as-page h3,
.as-page h4 {
  margin: 0;
  color: var(--as-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

.as-page p { margin: 0; }
.as-page ul { margin: 0; padding: 0; list-style: none; }
.as-page a { color: inherit; }

.as-page a:focus-visible,
.as-page button:focus-visible,
.as-page [tabindex]:focus-visible {
  outline: 2px solid var(--as-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.as-wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

.as-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 72px 0 56px;
}

.as-hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 13px;
  border-radius: 6px;
  background: var(--as-accent-soft);
  color: var(--as-accent-deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.as-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 52px);
}

.as-lead {
  max-width: 52ch;
  color: var(--as-muted);
  font-size: 17px;
}

.as-hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--as-radius);
  object-fit: cover;
  border: 1px solid var(--as-line);
}

.as-img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  aspect-ratio: 4 / 3;
  padding: 20px;
  border: 1.5px dashed rgba(201, 168, 76, 0.35);
  border-radius: var(--as-radius);
  background:
    repeating-linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0 10px, transparent 10px 20px),
    var(--as-panel);
  color: var(--as-accent-deep);
  text-align: center;
}

.as-img-ph svg { opacity: 0.55; }

.as-img-ph-label {
  max-width: 220px;
  color: var(--as-accent-deep);
  font-size: 12.5px;
  font-weight: 600;
}

@media (max-width: 820px) {
  .as-hero { grid-template-columns: 1fr; padding-top: 44px; }
}

.as-block {
  padding: 52px 0;
  border-top: 1px solid var(--as-line);
}

.as-block-head {
  max-width: 640px;
  margin-bottom: 34px;
}

.as-block-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--as-accent-deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.as-block-head h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3.4vw, 34px);
}

.as-block-sub {
  color: var(--as-muted);
  font-size: 15.5px;
}

.as-prose { max-width: 720px; }

.as-prose p,
.as-prose li {
  margin-bottom: 16px;
  color: var(--as-ink);
  font-size: 15.5px;
}

.as-prose p:last-child,
.as-prose li:last-child { margin-bottom: 0; }

.as-rich ul,
.as-rich ol {
  margin-bottom: 16px;
  padding-left: 1.3em;
  list-style: revert;
}

.as-rich strong { color: var(--as-ink); }

.as-rich h1,
.as-rich h2,
.as-rich h3,
.as-rich h4 {
  margin-bottom: 12px;
  font-size: 22px;
}

.as-rich img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.as-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 700px) {
  .as-vm-grid { grid-template-columns: 1fr; }
}

.as-vm-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--as-radius);
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 3px),
    var(--as-panel);
  color: var(--as-ink);
}

.as-vm-card h3 {
  margin-bottom: 10px;
  color: var(--as-ink);
  font-size: 19px;
}

.as-vm-card p,
.as-vm-card li {
  color: #d6d2c4;
  font-size: 14.5px;
}

.as-vm-card.as-alt { background: var(--as-panel-gold); }
.as-vm-card.as-alt h3 { color: var(--as-accent-deep); }
.as-vm-card.as-alt p,
.as-vm-card.as-alt li { color: var(--as-ink); }

.as-vm-card img {
  width: 100%;
  height: 160px;
  margin-top: 16px;
  border-radius: 10px;
  object-fit: cover;
}

.as-grid {
  display: grid;
  gap: 20px;
}

.as-cols-2 { grid-template-columns: 1fr 1fr; }
.as-cols-3 { grid-template-columns: repeat(3, 1fr); }
.as-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .as-cols-3,
  .as-cols-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .as-cols-2,
  .as-cols-3,
  .as-cols-4 { grid-template-columns: 1fr; }
}

.as-card {
  padding: 22px;
  border: 1px solid var(--as-line);
  border-radius: var(--as-radius);
  background: var(--as-surface);
}

.as-card h3 {
  margin-bottom: 8px;
  font-size: 16.5px;
}

.as-card p {
  color: var(--as-muted);
  font-size: 14px;
}

.as-card-wide { grid-column: 1 / -1; }

.as-value-card {
  padding: 22px;
  border: 1px solid var(--as-line);
  border-radius: var(--as-radius);
  background: var(--as-surface);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.as-value-card:hover {
  border-color: var(--as-accent);
  transform: translateY(-2px);
}

.as-value-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  background: var(--as-accent-soft);
  color: var(--as-accent-deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.as-value-card p,
.as-value-card li {
  color: var(--as-muted);
  font-size: 14px;
}

.as-value-spacer {
  display: block;
  height: 6px;
}

.as-ceo {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--as-line);
  border-radius: var(--as-radius);
  background: var(--as-surface);
  text-align: center;
}

.as-ceo img {
  width: 110px;
  height: 110px;
  margin-bottom: 16px;
  border-radius: 50%;
  border: 2px solid var(--as-accent);
  object-fit: cover;
}

.as-ceo h3 {
  color: var(--as-accent-deep);
  font-size: 20px;
}

.as-ceo-position {
  margin: 4px 0 16px;
  color: var(--as-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.as-ceo .as-rich { text-align: left; }

.as-ceo-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.as-ceo-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--as-line);
  border-radius: 50%;
  color: var(--as-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.as-ceo-socials a:hover {
  border-color: var(--as-accent);
  color: var(--as-accent);
}

.as-closing {
  position: relative;
  overflow: hidden;
  margin: 8px 0 0;
  padding: 52px 44px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 60% 70% at 80% 0%, rgba(201, 168, 76, 0.14), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 3px),
    var(--as-panel);
  color: var(--as-ink);
  text-align: center;
}

.as-promise {
  margin-bottom: 18px;
  color: var(--as-accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 3.2vw, 30px);
  font-style: italic;
  font-weight: 500;
}

.as-closing p {
  max-width: 640px;
  margin: 0 auto 14px;
  color: #d6d2c4;
  font-size: 15px;
}

.as-closing p:last-child { margin-bottom: 0; }

.as-service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.as-service-item {
  overflow: hidden;
  border: 1px solid var(--as-line);
  border-radius: var(--as-radius);
  background: var(--as-surface);
}

.as-service-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.as-service-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.as-service-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 6px;
  border: 1px solid var(--as-line);
  border-radius: 10px;
  background: var(--as-bg);
  object-fit: contain;
}

.as-service-tag {
  flex: 0 0 auto;
  padding: 6px 11px;
  border-radius: 6px;
  background: var(--as-accent-soft);
  color: var(--as-accent-deep);
  font-family: "Cinzel", Georgia, serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.as-service-title {
  display: block;
  color: var(--as-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
}

.as-tagline {
  display: block;
  margin-top: 2px;
  color: var(--as-muted);
  font-size: 13.5px;
  font-weight: 500;
}

.as-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--as-muted);
  transition: transform 0.3s ease;
}

.as-service-item.as-open .as-chevron {
  transform: rotate(180deg);
  color: var(--as-accent);
}

.as-service-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.as-service-item.as-open .as-service-panel { max-height: 2400px; }

.as-service-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 22px 26px;
}

@media (max-width: 760px) {
  .as-service-panel-inner { grid-template-columns: 1fr; }
}

.as-service-copy p,
.as-service-copy li {
  margin-bottom: 12px;
  color: var(--as-muted);
  font-size: 14.5px;
}

.as-service-copy ul,
.as-service-copy ol {
  margin-bottom: 12px;
  padding-left: 1.3em;
  list-style: revert;
}

.as-taglist-title {
  margin-top: 16px;
  margin-bottom: 10px;
  color: var(--as-ink);
  font-family: "Cinzel", Georgia, serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.as-taglist-title:first-child { margin-top: 0; }

.as-taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.as-taglist li {
  padding: 6px 11px;
  border: 1px solid var(--as-line);
  border-radius: 7px;
  background: var(--as-bg);
  color: var(--as-ink);
  font-size: 13px;
}

.as-service-side img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  object-fit: cover;
}

.as-read-more {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 20px;
  border: 1px solid var(--as-accent);
  border-radius: 8px;
  color: var(--as-accent-deep) !important;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.as-read-more:hover {
  background: var(--as-accent);
  color: #0a0a0a !important;
}

.as-process-rail {
  position: relative;
  display: flex;
  flex-direction: column;
}

.as-process-rail::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 19px;
  width: 2px;
  background: var(--as-line);
}

.as-process-step {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 18px 0;
}

.as-num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--as-accent);
  color: #0a0a0a;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
}

.as-process-step h3 {
  margin-bottom: 5px;
  font-size: 16.5px;
}

.as-process-step p {
  max-width: 60ch;
  color: var(--as-muted);
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .as-chevron,
  .as-service-panel,
  .as-value-card { transition: none; }
}
