.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--t-base) var(--easing), box-shadow var(--t-base) var(--easing), padding var(--t-base) var(--easing);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  transition: padding var(--t-base) var(--easing);
}

.site-header.scrolled {
  background: rgba(242, 245, 240, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border), var(--sh-sm);
}

.site-header.scrolled .header-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  cursor: default;
}

.logo a {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-mark {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: -0.01em;
}

.hero .logo-mark,
.hero .logo-sub {
  color: var(--c-white);
}

.site-header:not(.scrolled) .logo-mark {
  color: var(--c-white);
}

.site-header:not(.scrolled) .logo-sub {
  color: rgba(255,255,255,0.65);
}

.site-header.scrolled .logo-mark {
  color: var(--c-primary);
}

.site-header.scrolled .logo-sub {
  color: var(--c-accent2);
}

.logo-sub {
  font-family: var(--f-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-family: var(--f-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--t-base) var(--easing);
}

.site-header.scrolled .nav-link {
  color: var(--c-text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-accent);
  transition: width var(--t-base) var(--easing);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--c-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all var(--t-base) var(--easing);
  transform-origin: center;
}

.site-header.scrolled .burger-btn span {
  background: var(--c-text);
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(40, 48, 45, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all var(--t-base) var(--easing);
  overflow-y: auto;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 100px 2rem 3rem;
  gap: 2rem;
  text-align: center;
}

.mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu nav a {
  font-family: var(--f-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 500;
  color: var(--c-white);
  display: block;
  padding: 0.4rem 0;
  transition: color var(--t-base) var(--easing);
}

.mobile-menu nav a:hover {
  color: var(--c-accent);
}

.mobile-contact {
  margin-top: 1rem;
  text-align: center;
}

.mobile-contact p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  opacity: 1;
  line-height: 2;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(40,48,45,0.55) 0%, rgba(68,103,95,0.45) 50%, rgba(40,48,45,0.70) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: clamp(60px, 8vw, 100px);
}

.hero-tag {
  margin-bottom: 1.5rem;
}

.hero-tag .kicker {
  background: rgba(200, 170, 110, 0.18);
  border: 1px solid rgba(200, 170, 110, 0.35);
  color: var(--c-accent);
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-full);
  display: inline-block;
}

.hero-title {
  color: var(--c-white);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 720px;
}

.hero-title em {
  font-style: italic;
  color: var(--c-secondary);
}

.hero-sub {
  margin-top: 1.75rem;
  max-width: 520px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  opacity: 1;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1;
}

.stat > span:nth-child(2) {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--c-accent);
  line-height: 1;
  vertical-align: super;
  font-size: 1.2rem;
}

.stat-label {
  font-family: var(--f-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-top: 0.3rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(20px, 5vw, 64px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll span {
  font-family: var(--f-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.50), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

.value-prop {
  padding: var(--section-y) 0;
  background: var(--c-bg);
}

.vp-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.vp-header h2 {
  margin-top: 0.5rem;
  max-width: 560px;
}

.vp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.vp-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t-base) var(--easing), transform var(--t-base) var(--easing);
}

.vp-item:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.vp-num {
  font-family: var(--f-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  opacity: 0.7;
  min-width: 28px;
  padding-top: 4px;
}

.vp-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.signature {
  padding: var(--section-y) 0;
  background: var(--c-surface);
}

.signature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.signature-visual {
  position: relative;
  overflow: hidden;
}

.signature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--easing);
}

.signature-visual:hover img {
  transform: scale(1.04);
}

.signature-text {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-white);
}

.signature-text h2 {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.signature-text p + p {
  margin-top: 1rem;
}

.portfolio-preview {
  padding: var(--section-y) 0;
  background: var(--g-bg);
}

.port-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.port-feature,
.port-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.port-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--c-surface);
}

.port-feature .port-img {
  height: clamp(340px, 45vw, 600px);
}

.port-card .port-img {
  height: clamp(160px, 20vw, 280px);
}

.port-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--easing);
}

.port-img:hover img {
  transform: scale(1.06);
}

.port-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(40,48,45,0.82), transparent);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.port-overlay .location-name {
  color: var(--c-white);
  font-size: 1.3rem;
}

.port-overlay .kicker {
  color: rgba(255,255,255,0.65);
}

.port-footer {
  margin-top: 2.5rem;
  text-align: center;
}

.js-marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  background: var(--c-primary);
  padding: 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.js-mq-row {
  display: flex;
  white-space: nowrap;
  gap: 2rem;
  font-family: var(--f-ui);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-white);
  opacity: 0.12;
  will-change: transform;
}

.js-mq-row.fwd {
  animation: marquee-fwd 32s linear infinite;
}

.js-mq-row.rev {
  animation: marquee-rev 28s linear infinite;
}

.mq-dot {
  opacity: 0.4;
}

@keyframes marquee-fwd {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-rev {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.insight {
  padding: var(--section-y) 0;
  background: var(--c-bg);
}

.insight-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.insight-label {
  padding-top: 0.5rem;
}

.insight-body h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 2rem;
}

.insight-text p + p {
  margin-top: 1.25rem;
}

.insight-quote {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--c-accent);
  background: var(--c-white);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.insight-quote blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--c-primary);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.insight-quote cite {
  font-family: var(--f-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent2);
  font-style: normal;
}

.services-overview {
  padding: var(--section-y) 0;
  background: var(--c-surface);
}

.services-table {
  margin-top: 3rem;
  border-top: 1px solid var(--c-border);
}

.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 200px;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--t-fast) var(--easing);
}

.service-row:hover {
  background: rgba(68, 103, 95, 0.04);
  margin: 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.service-num {
  font-family: var(--f-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  opacity: 0.7;
}

.service-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: right;
}

.services-footer {
  margin-top: 2.5rem;
}

.timeline {
  padding: var(--section-y) 0;
  background: var(--c-bg);
}

.timeline-track {
  position: relative;
  margin-top: 3rem;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--c-accent), var(--c-secondary), transparent);
}

.tl-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.tl-step {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--c-bg);
}

.tl-body {
  padding-top: 0.75rem;
}

.tl-body h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.social-proof {
  padding: var(--section-y) 0;
  background: var(--c-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-card);
  transition: box-shadow var(--t-base) var(--easing), transform var(--t-base) var(--easing);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-5px);
}

.tc-stars {
  color: var(--c-accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--c-text);
  opacity: 0.85;
  flex: 1;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-border);
}

.tc-info strong {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-primary);
}

.tc-info span {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  color: var(--c-muted);
}

.cert-block {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--c-primary);
  border-radius: var(--r-md);
  text-align: center;
}

.cert-text {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 1;
}

.cta-block {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(40,48,45,0.88) 0%, rgba(68,103,95,0.80) 100%);
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: var(--c-white);
  margin-bottom: 1.25rem;
}

.cta-inner p {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  opacity: 1;
  max-width: 520px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.contact-preview {
  padding: var(--section-y) 0;
  background: var(--c-bg);
}

.cp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.cp-info h2 {
  margin-bottom: 1rem;
}

.cp-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cp-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cp-icon {
  font-size: 1.2rem;
  width: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cp-detail strong {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-accent2);
  margin-bottom: 0.3rem;
}

.cp-detail p {
  font-size: 0.95rem;
  opacity: 1;
}

.cp-detail a:hover {
  color: var(--c-primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--c-white);
  padding: 2.5rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-card);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-text);
  opacity: 0.7;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 0.95rem;
  transition: border-color var(--t-fast) var(--easing), box-shadow var(--t-fast) var(--easing);
  outline: none;
  min-height: 48px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(68, 103, 95, 0.12);
  background: var(--c-white);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

.site-footer {
  background: var(--c-text);
  color: var(--c-white);
  padding: clamp(50px, 7vw, 90px) 0 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 2rem;
}

.footer-brand .logo-mark {
  color: var(--c-secondary);
}

.footer-brand .logo-sub {
  color: rgba(151, 171, 149, 0.6);
}

.footer-brand p {
  margin-top: 1rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  opacity: 1;
  line-height: 1.7;
}

.footer-nav h4 {
  font-family: var(--f-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--t-fast) var(--easing);
}

.footer-nav a:hover {
  color: var(--c-white);
}

.footer-contact h4 {
  font-family: var(--f-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.25rem;
}

.footer-contact p {
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
  opacity: 1;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-contact a:hover {
  color: var(--c-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  opacity: 1;
  line-height: 1.5;
}

.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--g-depth);
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(40,48,45,0.4) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .kicker {
  color: var(--c-secondary);
}

.page-hero h1 {
  color: var(--c-white);
  margin-top: 0.75rem;
  max-width: 680px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  margin-top: 1.25rem;
  max-width: 520px;
  opacity: 1;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
}

.about-story {
  padding: var(--section-y) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.story-text .label {
  margin-bottom: 0.75rem;
}

.story-text h2 {
  margin-bottom: 1.5rem;
}

.story-text p + p {
  margin-top: 1rem;
}

.story-img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.story-img img {
  width: 100%;
  height: clamp(400px, 45vw, 580px);
  object-fit: cover;
}

.about-values {
  padding: var(--section-y) 0;
  background: var(--c-surface);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--c-white);
  padding: 2rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition: all var(--t-base) var(--easing);
}

.value-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(68,103,95,0.12), rgba(151,171,149,0.18));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.about-stats {
  padding: var(--section-y) 0;
  background: var(--c-primary);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-big {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1;
}

.stat-big-suffix {
  color: var(--c-accent);
  font-size: 2rem;
}

.stat-desc {
  font-family: var(--f-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.team-section {
  padding: var(--section-y) 0;
  background: var(--c-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-card);
  transition: all var(--t-base) var(--easing);
}

.team-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-5px);
}

.team-card-img {
  aspect-ratio: 4 / 3;
  background: var(--c-surface);
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--easing);
}

.team-card:hover .team-card-img img {
  transform: scale(1.06);
}

.team-card-info {
  padding: 1.5rem;
}

.team-card-info strong {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.team-card-info span {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-accent2);
}

.services-hero-img {
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.services-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: inherit;
}

.services-detail {
  padding: var(--section-y) 0;
  background: var(--c-bg);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-card);
  transition: all var(--t-base) var(--easing);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-5px);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(68,103,95,0.10), rgba(200,170,110,0.15));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.service-card h3 {
  font-size: 1.2rem;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card ul li {
  font-size: 0.9rem;
  color: var(--c-text);
  opacity: 0.75;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.service-card ul li::before {
  content: '→';
  color: var(--c-accent);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card-price {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--c-border);
}

.service-card-price span {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  vertical-align: middle;
  margin-left: 0.3rem;
}

.faq-section {
  padding: var(--section-y) 0;
  background: var(--c-surface);
}

.faq-list {
  margin-top: 3rem;
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  cursor: pointer;
  transition: color var(--t-fast) var(--easing);
}

.faq-q:hover {
  color: var(--c-primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--c-primary);
  transition: all var(--t-base) var(--easing);
}

.faq-item.open .faq-icon {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--easing);
}

.faq-a-inner {
  padding-bottom: 1.5rem;
}

.faq-a-inner p {
  font-size: 0.97rem;
}

.portfolio-grid-full {
  padding: var(--section-y) 0;
  background: var(--c-bg);
}

.port-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.port-full-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--c-surface);
  transition: box-shadow var(--t-base) var(--easing);
}

.port-full-card:hover {
  box-shadow: var(--sh-hover);
}

.port-full-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.port-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--easing);
}

.port-full-card:hover .port-full-img img {
  transform: scale(1.07);
}

.port-full-info {
  padding: 1.5rem;
  background: var(--c-white);
}

.port-full-info .location-name {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.port-full-info p {
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

.contact-page {
  padding: var(--section-y) 0;
  background: var(--c-bg);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info-block h2 {
  margin-bottom: 1rem;
}

.contact-info-items {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(68,103,95,0.12), rgba(151,171,149,0.18));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-accent2);
  margin-bottom: 0.3rem;
}

.contact-info-text p {
  font-size: 0.95rem;
  opacity: 1;
  line-height: 1.65;
}

.contact-info-text a:hover {
  color: var(--c-primary);
}

.map-container {
  margin-top: 3rem;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--g-bg);
  text-align: center;
}

.thanks-inner {
  max-width: 560px;
  padding: 4rem 3rem;
  background: var(--c-white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--c-border);
}

.thanks-check {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(68,103,95,0.12), rgba(200,170,110,0.18));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
}

.thanks-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.thanks-inner p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.legal-page {
  padding: 120px 0 var(--section-y);
}

.legal-page h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 2.5rem;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--c-primary);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.97rem;
  line-height: 1.75;
  opacity: 0.82;
  margin-bottom: 0.35rem;
}

.legal-meta {
  font-family: var(--f-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .vp-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .insight-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .insight-label {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .insight-label .divider {
    margin: 0;
  }
}

@media (max-width: 900px) {
  .port-grid {
    grid-template-columns: 1fr;
  }
  .port-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .signature-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .signature-visual {
    height: 320px;
  }
  .services-cards {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .port-full-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  .cp-grid {
    grid-template-columns: 1fr;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .header-actions .btn-primary {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .vp-grid {
    grid-template-columns: 1fr;
  }
  .vp-item {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .service-meta {
    text-align: left;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .port-full-grid {
    grid-template-columns: 1fr;
  }
  .port-side {
    grid-template-columns: 1fr;
  }
  .services-cards {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .timeline-track::before {
    left: 22px;
  }
  .tl-step {
    width: 44px;
    height: 44px;
    font-size: 0.65rem;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .thanks-inner {
    padding: 2.5rem 1.75rem;
  }
  .hero-bg {
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
