.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background var(--dur-base) var(--ease),
              padding var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}

.site-header.scrolled {
  background: rgba(245, 244, 238, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(41,48,45,0.08);
}

.site-header.header--dark {
  background: transparent;
}

.site-header.header--dark.scrolled {
  background: rgba(245,244,238,0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.header-logo {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--mist);
  letter-spacing: -0.01em;
  transition: color var(--dur-fast) var(--ease);
  flex-shrink: 0;
}

.site-header.scrolled .header-logo {
  color: var(--ink);
}

.header-logo span {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}

.header-logo-link {
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav a {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245,244,238,0.85);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--dur-fast) var(--ease);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-base) var(--ease);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-nav a:hover {
  color: var(--mist);
}

.site-header.scrolled .header-nav a {
  color: var(--stone);
}

.site-header.scrolled .header-nav a:hover {
  color: var(--emerald);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 24px;
  justify-content: center;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--mist);
  transition: all var(--dur-base) var(--ease);
  transform-origin: center;
}

.site-header.scrolled .burger-btn span {
  background: var(--ink);
}

.burger-btn.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-btn.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 120px var(--sp-5) var(--sp-6);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.mobile-menu nav a {
  font-family: var(--ff-display);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: var(--mist);
  padding: 12px 0;
  border-bottom: 1px solid rgba(245,244,238,0.08);
  transition: color var(--dur-fast) var(--ease), padding-left var(--dur-base) var(--ease);
}

.mobile-menu nav a:hover {
  color: var(--gold);
  padding-left: 12px;
}

.mobile-menu-footer {
  padding-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.mobile-menu-footer a {
  font-family: var(--ff-ui);
  font-size: 13px;
  color: rgba(245,244,238,0.45);
  letter-spacing: 0.04em;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(29, 38, 34, 0.88) 0%,
    rgba(29, 38, 34, 0.40) 45%,
    rgba(29, 38, 34, 0.10) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: var(--sp-10);
  padding-top: 160px;
}

.hero-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  font-style: italic;
  color: var(--mist);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 860px;
  margin-bottom: var(--sp-4);
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.4vw, 19px);
  color: rgba(245,244,238,0.72);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,244,238,0.45);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(245,244,238,0.20);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scroll-line 1.8s ease infinite;
}

@keyframes scroll-line {
  0% { top: -100%; }
  100% { top: 100%; }
}

.value-prop {
  background: var(--grad-bg);
}

.vp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--ink-faint);
}

.vp-header-left {
  max-width: 560px;
}

.vp-header-right {
  max-width: 360px;
  text-align: right;
}

.vp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vp-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: var(--sp-6);
  align-items: start;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--ink-faint);
}

.vp-item:last-child {
  border-bottom: none;
}

.vp-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 6px;
}

.vp-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.vp-text {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  padding-top: 4px;
}

.signature {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.signature-bg {
  position: absolute;
  inset: 0;
}

.signature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.signature-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(29,38,34,0.80) 0%,
    rgba(29,38,34,0.30) 60%,
    transparent 100%
  );
}

.signature-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.signature-quote {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--mist);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.signature-quote::before {
  content: '\201C';
  display: block;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: var(--sp-2);
}

.signature-attr {
  display: flex;
  align-items: center;
  gap: 14px;
}

.signature-attr::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.signature-attr span {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,244,238,0.55);
}

.portfolio-section {
  background: var(--mist);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-3);
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  cursor: pointer;
}

.portfolio-item--main {
  grid-row: 1 / 3;
}

.portfolio-item-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform var(--dur-slower) var(--ease);
}

.portfolio-item--main .portfolio-item-img {
  min-height: 580px;
}

.portfolio-item:hover .portfolio-item-img {
  transform: scale(1.05);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(29,38,34,0.85) 0%,
    rgba(29,38,34,0.10) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-4);
  transition: background var(--dur-base) var(--ease);
}

.portfolio-item:hover .portfolio-item-overlay {
  background: linear-gradient(
    to top,
    rgba(29,38,34,0.92) 0%,
    rgba(29,38,34,0.25) 60%,
    transparent 100%
  );
}

.portfolio-item-cat {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.portfolio-item-title {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--mist);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.portfolio-item-sub {
  font-family: var(--ff-body);
  font-size: 13px;
  color: rgba(245,244,238,0.60);
  margin-top: 6px;
  transform: translateY(6px);
  opacity: 0;
  transition: all var(--dur-base) var(--ease);
}

.portfolio-item:hover .portfolio-item-sub {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}

.insight {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.insight::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69,105,90,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.insight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.insight-left {
  position: sticky;
  top: 100px;
}

.insight-pull-quote {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 300;
  font-style: italic;
  color: var(--mist);
  line-height: 1.22;
  letter-spacing: -0.02em;
  border-left: 2px solid var(--gold);
  padding-left: var(--sp-4);
}

.insight-stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}

.insight-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.insight-stat-num {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: var(--mist);
  line-height: 1;
  letter-spacing: -0.03em;
}

.insight-stat-num em {
  font-style: normal;
  color: var(--gold);
}

.insight-stat-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,244,238,0.40);
}

.insight-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.insight-text {
  font-family: var(--ff-body);
  font-size: 15px;
  color: rgba(245,244,238,0.65);
  line-height: 1.78;
}

.insight-text p + p {
  margin-top: var(--sp-3);
}

.insight-highlight {
  background: rgba(69,105,90,0.18);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  border-left: 2px solid var(--emerald);
}

.insight-highlight p {
  font-family: var(--ff-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--sage);
  line-height: 1.65;
}

.services-section {
  background: var(--grad-bg);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: end;
  margin-bottom: var(--sp-7);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--ink-faint);
}

.services-table {
  width: 100%;
  border-collapse: collapse;
}

.services-table thead tr th {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0 var(--sp-3) var(--sp-3) 0;
  text-align: left;
  border-bottom: 1px solid var(--ink-faint);
  font-weight: 400;
}

.services-table tbody tr {
  border-bottom: 1px solid var(--ink-faint);
  transition: background var(--dur-fast) var(--ease);
  cursor: default;
}

.services-table tbody tr:last-child {
  border-bottom: none;
}

.services-table tbody tr:hover {
  background: rgba(69,105,90,0.05);
}

.services-table tbody tr td {
  padding: var(--sp-4) var(--sp-3) var(--sp-4) 0;
  vertical-align: top;
}

.srv-name {
  font-family: var(--ff-display);
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  min-width: 200px;
}

.srv-desc {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
  max-width: 320px;
}

.srv-includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.srv-includes li {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--stone);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.srv-includes li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

.srv-duration {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--emerald);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.srv-arrow {
  color: var(--gold);
  font-size: 18px;
  transition: transform var(--dur-fast) var(--ease);
}

.services-table tbody tr:hover .srv-arrow {
  transform: translateX(6px);
}

.timeline-section {
  background: var(--mist);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--ink-faint);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: var(--sp-7);
  align-items: start;
}

.timeline-item:nth-child(even) .timeline-left {
  order: 3;
  text-align: left;
  padding-left: var(--sp-5);
  padding-right: 0;
}

.timeline-item:nth-child(even) .timeline-center {
  order: 2;
}

.timeline-item:nth-child(even) .timeline-right {
  order: 1;
  text-align: right;
  padding-right: var(--sp-5);
  padding-left: 0;
}

.timeline-item:nth-child(odd) .timeline-left {
  text-align: right;
  padding-right: var(--sp-5);
}

.timeline-item:nth-child(odd) .timeline-right {
  padding-left: var(--sp-5);
}

.timeline-center {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mist);
  border: 1px solid var(--ink-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-dot-num {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 400;
}

.timeline-step {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.timeline-text {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--stone);
  line-height: 1.68;
}

.social-proof {
  background: var(--grad-bg);
}

.sp-main-quote {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--sp-9);
}

.sp-quote-text {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}

.sp-quote-author {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.sp-quote-author::before,
.sp-quote-author::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--ink-faint);
}

.sp-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-7);
  flex-wrap: wrap;
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
  margin-bottom: var(--sp-7);
}

.sp-logo-item {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: rgba(41,48,45,0.25);
  letter-spacing: -0.01em;
  transition: color var(--dur-fast) var(--ease);
}

.sp-logo-item:hover {
  color: var(--stone);
}

.sp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.sp-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}

.sp-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.sp-card-stars {
  display: flex;
  gap: 3px;
}

.sp-card-stars span {
  color: var(--gold);
  font-size: 14px;
}

.sp-card-text {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--stone);
  line-height: 1.68;
  flex: 1;
  font-style: italic;
}

.sp-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.sp-card-name {
  font-family: var(--ff-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.sp-card-location {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--stone);
}

.js-marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  background: var(--ink);
  padding: var(--sp-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.js-mq-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.js-mq-row.fwd {
  animation: mq-fwd 35s linear infinite;
}

.js-mq-row.rev {
  animation: mq-rev 35s linear infinite;
}

@keyframes mq-fwd {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes mq-rev {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0 var(--sp-4);
  font-family: var(--ff-display);
  font-size: var(--fs-marquee);
  font-weight: 300;
  font-style: italic;
  text-transform: uppercase;
  color: rgba(245,244,238,0.10);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.mq-item-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(185,150,87,0.28);
  vertical-align: middle;
  flex-shrink: 0;
}

.cta-block {
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,150,87,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.cta-block::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,244,238,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 20px;
  border: 1px solid rgba(185,150,87,0.35);
  border-radius: var(--r-full);
}

.cta-headline {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4.5vw, 66px);
  font-weight: 300;
  font-style: italic;
  color: var(--mist);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.cta-text {
  font-family: var(--ff-body);
  font-size: 16px;
  color: rgba(245,244,238,0.70);
  line-height: 1.68;
  max-width: 540px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--sp-2);
}

.contact-section {
  background: var(--grad-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-9);
  align-items: start;
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid rgba(41,48,45,0.12);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  line-height: 1.5;
}

.form-control:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(69,105,90,0.12);
}

.form-control::placeholder {
  color: rgba(41,48,45,0.35);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding-top: var(--sp-2);
}

.contact-info-headline {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-detail-value {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.contact-detail-value a:hover {
  color: var(--emerald);
}

.site-footer {
  background: #1E2420;
  padding: var(--sp-9) 0 var(--sp-5);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(245,244,238,0.08);
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: var(--mist);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-3);
}

.footer-logo span {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}

.footer-tagline {
  font-family: var(--ff-body);
  font-size: 13px;
  color: rgba(245,244,238,0.40);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: var(--sp-4);
}

.footer-social {
  display: flex;
  gap: var(--sp-2);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,244,238,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: rgba(245,244,238,0.45);
  transition: all var(--dur-fast) var(--ease);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.footer-col-title {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,244,238,0.30);
  margin-bottom: var(--sp-3);
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-links a {
  font-family: var(--ff-body);
  font-size: 14px;
  color: rgba(245,244,238,0.55);
  transition: color var(--dur-fast) var(--ease);
  line-height: 1.4;
}

.footer-col-links a:hover {
  color: var(--mist);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(245,244,238,0.25);
}

.footer-legal {
  display: flex;
  gap: var(--sp-4);
}

.footer-legal a {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(245,244,238,0.25);
  transition: color var(--dur-fast) var(--ease);
}

.footer-legal a:hover {
  color: rgba(245,244,238,0.55);
}

.page-hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: var(--sp-9);
  background: var(--ink);
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(69,105,90,0.22) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.page-hero-title {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: 300;
  font-style: italic;
  color: var(--mist);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.page-hero-sub {
  font-family: var(--ff-body);
  font-size: 16px;
  color: rgba(245,244,238,0.62);
  line-height: 1.68;
  max-width: 520px;
}

.section-header {
  margin-bottom: var(--sp-7);
}

.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--sp-7);
}

.section-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag--center {
  justify-content: center;
}

.section-tag::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.section-tag--center::before { display: none; }

.section-title {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-title--light {
  color: var(--mist);
}

.section-sub {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  margin-top: var(--sp-3);
  max-width: 520px;
}

.section-sub--light {
  color: rgba(245,244,238,0.62);
}

.faq-section {
  background: var(--mist);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--ink-faint);
}

.faq-item:first-child {
  border-top: 1px solid var(--ink-faint);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  background: none;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-family: var(--ff-heading);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--ink-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur-base) var(--ease);
  color: var(--stone);
  font-size: 18px;
  line-height: 1;
  font-family: var(--ff-ui);
}

.faq-item.is-open .faq-icon {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

.faq-answer-inner {
  padding: 0 0 var(--sp-4);
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--stone);
  line-height: 1.72;
}

.page-map {
  width: 100%;
  height: 420px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: var(--sp-5);
  border: 1px solid var(--ink-faint);
}

.page-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}

.about-story-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slower) var(--ease);
}

.about-story-img:hover img {
  transform: scale(1.04);
}

.about-story-text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.about-story-text p {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--stone);
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.value-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  border: 1px solid var(--ink-faint);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: box-shadow var(--dur-base) var(--ease);
}

.value-card:hover {
  box-shadow: var(--sh-md);
}

.value-card-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.value-card-title {
  font-family: var(--ff-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}

.value-card-text {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--stone);
  line-height: 1.68;
}

.legal-content {
  max-width: 840px;
  margin: 0 auto;
  padding: var(--sp-9) 0;
}

.legal-content h2 {
  font-family: var(--ff-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--ink);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-2);
}

.legal-content h3 {
  font-family: var(--ff-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
}

.legal-content p {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--stone);
  line-height: 1.78;
  margin-bottom: var(--sp-3);
}

.legal-content ul, .legal-content ol {
  margin-bottom: var(--sp-3);
  padding-left: var(--sp-4);
}

.legal-content li {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--stone);
  line-height: 1.72;
  margin-bottom: var(--sp-1);
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-bg);
  padding: var(--sp-7) var(--sp-5);
}

.thanks-inner {
  text-align: center;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(69,105,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
}

.thanks-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--emerald);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thanks-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
}

.thanks-headline {
  font-family: var(--ff-display);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.thanks-text {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--stone);
  line-height: 1.68;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }
  .insight-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
  .insight-left {
    position: static;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .services-table thead tr th:nth-child(n+3),
  .services-table tbody tr td:nth-child(n+3) {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-actions .btn { display: none; }
  .burger-btn { display: flex; }

  .vp-item {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
  }
  .vp-text {
    grid-column: 2;
    margin-top: 8px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-item--main {
    grid-row: auto;
  }
  .portfolio-item--main .portfolio-item-img {
    min-height: 340px;
  }

  .portfolio-bottom-row {
    grid-template-columns: 1fr;
  }

  .services-header {
    grid-template-columns: 1fr;
  }

  .services-table thead { display: none; }
  .services-table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: var(--sp-4) 0;
  }
  .services-table tbody tr td {
    padding: 0;
  }
  .srv-name { font-size: 20px; }

  .timeline::before { left: 20px; }
  .timeline-item {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto;
  }
  .timeline-item:nth-child(even) .timeline-left,
  .timeline-item:nth-child(odd) .timeline-left {
    order: 2;
    text-align: left;
    padding-left: var(--sp-3);
    padding-right: 0;
    grid-column: 2;
    grid-row: 1;
  }
  .timeline-item:nth-child(even) .timeline-center,
  .timeline-item:nth-child(odd) .timeline-center {
    order: 1;
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
  }
  .timeline-item:nth-child(even) .timeline-right,
  .timeline-item:nth-child(odd) .timeline-right {
    order: 3;
    grid-column: 2;
    grid-row: 2;
    text-align: left;
    padding-left: var(--sp-3);
    padding-right: 0;
  }

  .sp-cards {
    grid-template-columns: 1fr;
  }

  .sp-logos {
    gap: var(--sp-4);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: var(--sp-2);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-scroll { display: none; }

  .hero-headline br { display: none; }

  .vp-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .vp-header-right {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-3); }
  .btn { padding: 12px 24px; font-size: 12px; }
  .sp-cards { grid-template-columns: 1fr; }
}

@media (min-width: 1025px) {
  .hero-bg img {
    will-change: transform;
  }
}
