/* ══════════════════════════════════════════════════════════
   sections.css
   hero · about · services · reviews · contact
   one rule-block per named section
   ══════════════════════════════════════════════════════════ */

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ivory);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-tag-sigil {
  width: 28px;
  height: 20px;
  overflow: visible;
  flex-shrink: 0;
  opacity: 0.7;
}

.hero-tag-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-tag .overline {
  font-size: 0.85rem;
}

.hero-title {
  margin-bottom: 0;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 64px;
}

.hero-divider {
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 0;
}

.hero-stat {
  padding: 28px 40px 28px 0;
  border-right: 1px solid var(--border-lt);
  margin-right: 40px;
}

.hero-stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: "Graphik", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.stat-num sup {
  font-size: 1.2rem;
  color: inherit;
  vertical-align: super;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* hero image column */
.hero-img-col {
  position: relative;
  align-self: start;
}

.hero-img-frame {
  position: relative;
  background: var(--ivory2);
}

.hero-img-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.5;
  z-index: 0;
}

.hero-img-frame::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 40%;
  height: 40%;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.5;
  z-index: 0;
}

.hero-portrait {
  width: 100%;
  max-width: 520px;
  display: block;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 3/4;
  position: relative;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  bottom: 48px;
  left: -32px;
  z-index: 3;
  background: var(--navy);
  color: var(--ivory);
  padding: 20px 28px;
  box-shadow: 0 16px 48px rgba(28, 35, 51, 0.2);
}

.hero-badge-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.2;
}

.hero-badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 246, 240, 0.6);
  margin-top: 4px;
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about {
  background: var(--white);
  overflow: hidden;
  isolation: isolate;
  clip-path: inset(0);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 100px;
  align-items: start;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: 32px;
  bottom: 32px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: 0;
}

.about-portrait {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3/4;
  position: relative;
  z-index: 1;
}

.about-caption {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(28, 35, 51, 0.85) 0%, transparent 100%);
  padding: 40px 24px 24px;
}

.about-caption-name {
  font-family: "Graphik", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

.about-caption-role {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-top: 4px;
}

.about-content {
  padding-top: 8px;
}

.about-heading {
  margin-bottom: 32px;
}

.about-body p {
  font-size: 0.98rem;
  color: #4A5060;
  line-height: 1.85;
  margin-bottom: 22px;
  font-weight: 300;
}

.about-body p strong {
  color: var(--text);
  font-weight: 500;
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services {
  background: var(--ivory);
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

.services-header {
  max-width: 640px;
  margin-bottom: 80px;
}

.services-header p {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.75;
  font-weight: 300;
}

/* desktop radial */
.radial-wrap {
  display: block;
}

.radial-outer {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 56px;
  align-items: start;
}

.radial-stage {
  position: relative;
  width: 100%;
  padding-bottom: 78%;
}

.radial-svg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.radial-center-el {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 152px;
  height: 152px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 12px 48px rgba(28, 35, 51, 0.22);
}

.radial-center-el::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(224, 231, 239, 0.3);
  pointer-events: none;
}

.radial-center-text {
  font-family: "Graphik", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.3;
  padding: 0 14px;
}

.radial-center-text small {
  display: block;
  font-family: "Graphik", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-top: 4px;
  font-weight: 600;
  font-style: normal;
}

.radial-node {
  position: absolute;
  width: 130px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  text-align: center;
  transition: transform 0.22s ease;
}

.radial-node:hover {
  transform: translate(-50%, -50%) translateY(-4px);
}

.node-ring {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  background: var(--white);
  transition: all var(--tr);
  position: relative;
}

.node-ring svg {
  stroke: var(--muted);
  transition: stroke var(--tr);
}

.radial-node:hover .node-ring,
.radial-node.active .node-ring {
  border-color: var(--gold);
  background: var(--navy);
}

.radial-node:hover .node-ring svg,
.radial-node.active .node-ring svg {
  stroke: var(--gold-pale);
}

.node-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
  line-height: 1.35;
  transition: color var(--tr);
  text-transform: uppercase;
}

.radial-node.active .node-label,
.radial-node:hover .node-label {
  color: var(--text);
}

/* Detail panel */
.service-detail {
  margin-top: 0;
  display: none;
  border-top: none;
  padding-top: 0;
  animation: fadeIn 0.3s ease;
}

.service-detail.active {
  display: block;
}

.radial-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  min-height: 360px;
}

.detail-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-left {}

.detail-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}

.detail-icon-sq {
  width: 48px;
  height: 48px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon-sq svg {
  stroke: var(--gold-pale);
}

.detail-title {
  font-family: "Graphik", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.detail-desc {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.detail-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.83rem;
  line-height: 1.45;
  color: var(--text);
  padding: 7px 12px;
  background: var(--ivory);
  border-left: 2px solid transparent;
  transition: border-color var(--tr), background var(--tr);
}

.detail-item:hover {
  border-left-color: var(--gold);
  background: var(--gold-pale);
}

.detail-item-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

/* Accordion mobile */
.services-accordion {
  display: none;
}

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

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  background: none;
}

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

.acc-icon-sq {
  width: 40px;
  height: 40px;
  background: var(--ivory2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--tr);
}

.acc-icon-sq svg {
  stroke: var(--muted);
  transition: stroke var(--tr);
}

.acc-item.open .acc-icon-sq {
  background: var(--navy);
}

.acc-item.open .acc-icon-sq svg {
  stroke: var(--gold-pale);
}

.acc-name {
  font-family: "Graphik", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.acc-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.acc-arrow svg {
  stroke: var(--muted);
}

.acc-item.open .acc-arrow {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-item.open .acc-body {
  max-height: 700px;
}

.acc-body-inner {
  padding: 0 0 28px 56px;
}

.acc-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}

.acc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.acc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.acc-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ══════════════════════════════
   REVIEWS
══════════════════════════════ */
.reviews {
  background: var(--navy);
  overflow: hidden;
}

.reviews-header {
  margin-bottom: 64px;
}

/* Safe zone for carousel — same 24 px indent as the header */
.reviews .carousel-wrap {
  padding-left: 24px;
}

.reviews-header .overline {
  color: var(--gold-pale);
}

.reviews-header h2 {
  color: var(--ivory);
  margin-top: 12px;
}

.reviews-header p {
  font-size: 0.95rem;
  color: rgba(249, 246, 240, 0.45);
  margin-top: 14px;
  font-weight: 300;
}

.carousel-wrap {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact {
  background: var(--ivory2);
}

.contact-header {
  margin-bottom: 64px;
}

.contact-header p {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 14px;
  max-width: 480px;
  font-weight: 300;
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ══════════════════════════════
   SIGIL RULE — headline / description divider
   Sits at z-index: 0 (behind z-index: 1 content). overflow: visible
   lets the vertical beam render above and below its 28 px height.

   SAFE ZONE: .hero-content / .services-header / .reviews-header carry
   padding-left: 24px so no content can be closer than ~10 px to the
   vertical beam (beam sits at ≈ 9/740 × container-width ≈ 8–14 px).
   The SVG compensates with margin-left: -24px + width: calc(100%+24px)
   so the horizontal line still bleeds to the full container edge.
══════════════════════════════ */
svg.sigil-rule {
  display: block;
  width: calc(100% + 24px);
  margin-left: -24px;
  height: 28px;
  overflow: visible;
  position: relative;
  z-index: 0;
  pointer-events: none;
  opacity: 0.25;
  margin-top: 16px;
  margin-bottom: 24px;
}

/* Reviews section — dark navy bg; invert to near-white */
.reviews svg.sigil-rule {
  filter: brightness(0) invert(1);
  opacity: 0.18;
}



/* Safe-zone containers — push all content 24 px from the left edge */
.hero-content,
.services-header,
.reviews-header {
  padding-left: 24px;
}
