:root {
  --bg: #f9f8f4;
  --bg-alt: #f2eee8;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-dark: #2f241b;
  --surface-dark-2: #211812;
  --text: #2f241b;
  --text-soft: #625244;
  --text-light: #f8f2ea;
  --line: rgba(70, 59, 46, 0.12);
  --line-strong: rgba(70, 59, 46, 0.24);
  --primary: #463b2e;
  --primary-2: #7f6247;
  --accent: #dbb96e;
  --accent-2: #ead5ad;
  --shadow-sm: 0 10px 30px rgba(46, 35, 27, 0.08);
  --shadow-md: 0 18px 50px rgba(46, 35, 27, 0.12);
  --shadow-lg: 0 32px 80px rgba(46, 35, 27, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 42px;
  --container: 1240px;
  --header-height: 92px;
  --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(219, 185, 110, 0.08), transparent 30%),
    linear-gradient(180deg, #fcfbf8 0%, #f7f4ef 42%, #f4f1eb 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

iframe {
  width: 100%;
  border: 0;
}

::selection {
  background: rgba(219, 185, 110, 0.35);
  color: var(--primary);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -80px;
  background: var(--primary);
  color: var(--text-light);
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 1001;
}

.skip-link:focus {
  top: 20px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--primary-2));
  z-index: 1200;
}

.site-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #f7f2eb, #efe7dc);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1400;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.loader-cube {
  width: 52px;
  height: 52px;
  border: 2px solid var(--primary);
  transform: rotate(45deg);
  position: relative;
  animation: loaderSpin 2.2s ease-in-out infinite;
}

.loader-cube::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid rgba(70, 59, 46, 0.45);
}

.loader-line {
  width: 110px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: pulseLine 1.6s linear infinite;
}

.loader-text {
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0;
  transition: var(--transition);
  background: #463b2e;
  box-shadow: 0 10px 28px rgba(31, 22, 16, 0.16);
}

.site-header.scrolled {
  background: #463b2e;
  backdrop-filter: none;
  box-shadow: 0 12px 32px rgba(31, 22, 16, 0.22);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 0 6px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-mark,
.brand-text {
  display: none;
}

.brand img,
.logo img {
  display: block;
  width: auto;
  height: 58px;
  max-width: 320px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-nav {
  justify-self: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(219, 185, 110, 0.12);
  border: 1px solid rgba(219, 185, 110, 0.35);
  border-radius: 999px;
  font-size: 0.93rem;
  color: #ffffff;
  box-shadow: none;
}

.header-phone i {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 13px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  color: #463b2e;
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(31, 22, 16, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(31, 22, 16, 0.24);
  background: #cfad66;
  color: #463b2e;
}

.btn-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(70, 59, 46, 0.12);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(70, 59, 46, 0.2);
}

.btn-full {
  width: 100%;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 10px;
}

.inline-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.inline-link:hover::after {
  transform: translateX(4px);
}

.eyebrow,
.panel-kicker,
.visual-tag,
.job-type,
.service-index,
.timeline-year,
.process-step,
.value-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-2);
}

.eyebrow::before,
.panel-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

main {
  position: relative;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  padding: 30px 0 90px;
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: center;
}

.hero-slider,
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-slide,
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.15s ease;
  transform: scale(1.04);
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(252, 249, 244, 0.86) 18%, rgba(252, 249, 244, 0.52) 50%, rgba(47, 36, 27, 0.2) 100%);
}

.page-hero {
  min-height: 58vh;
  display: flex;
  align-items: end;
  padding: 140px 0 60px;
  isolation: isolate;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 21, 16, 0.82) 0%, rgba(28, 21, 16, 0.68) 26%, rgba(28, 21, 16, 0.42) 52%, rgba(28, 21, 16, 0.18) 100%),
    linear-gradient(180deg, rgba(18, 14, 10, 0.20) 0%, rgba(18, 14, 10, 0.34) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(70, 59, 46, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 59, 46, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.25));
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.6;
}

.hero-glow-one {
  width: 340px;
  height: 340px;
  background: rgba(219, 185, 110, 0.16);
  top: 12%;
  left: -40px;
}

.hero-glow-two {
  width: 300px;
  height: 300px;
  background: rgba(127, 98, 71, 0.12);
  right: -80px;
  bottom: 10%;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.hero-copy h1,
.page-hero-content h1,
.section-heading h2,
.reveal-left h2,
.reveal-right h2,
.cta-panel h2,
.service-detail h2,
.job-card h3,
.team-content h3,
.timeline-card h3,
.value-card h3,
.process-card h3,
.footer-col h3,
.glass-panel h3 {
  font-family: "Playfair Display", serif;
}

.hero-copy h1,
.page-hero-content h1 {
  font-size: clamp(2.8rem, 4.8vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
  max-width: 11ch;
}

.text-highlight {
  position: relative;
  color: var(--primary);
}

.text-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 16px;
  background: linear-gradient(90deg, rgba(219, 185, 110, 0.42), rgba(219, 185, 110, 0));
  z-index: -1;
}

.hero-intro,
.page-hero-content p,
.section-heading p,
.reveal-left p,
.reveal-right p,
.glass-panel p,
.service-detail p,
.value-card p,
.process-card p,
.testimonial-card p,
.team-content p,
.timeline-card p,
.job-card p,
.footer-col p,
.footer-note,
.contact-info-item p {
  color: var(--text-soft);
  font-size: 1rem;
}

.hero-copy p {
  max-width: 62ch;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #f8f2ea;
  padding: 28px 32px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(34, 26, 20, 0.42) 0%,
    rgba(34, 26, 20, 0.22) 100%
  );
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.page-hero-content .eyebrow {
  color: rgba(248, 242, 234, 0.82);
}

.page-hero-content h1 {
  max-width: 13ch;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.page-hero-content p {
  max-width: 58ch;
  color: rgba(248, 242, 234, 0.94);
  line-height: 1.8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.14);
}

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

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-weight: 500;
}

.hero-points i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(70, 59, 46, 0.1);
  color: var(--accent);
}

.hero-visual {
  position: relative;
}

.hero-visual-stack {
  position: relative;
  min-height: 680px;
}

.visual-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(70, 59, 46, 0.1);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.visual-card:hover {
  box-shadow: 0 24px 60px rgba(46, 35, 27, 0.18);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  line-height: 0;
}

.visual-card-main {
  width: min(100%, 520px);
  height: 680px;
  right: 0;
  top: 0;
}

.visual-card-side {
  width: 240px;
  height: 185px;
  left: 10px;
  top: 82px;
  z-index: 2;
}

.visual-card-bottom {
  width: 280px;
  height: 205px;
  left: 80px;
  bottom: 28px;
  z-index: 2;
}

.visual-tag {
  position: absolute;
  top: 16px;
  left: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(47, 36, 27, 0.72);
  color: var(--text-light);
  letter-spacing: 0.16em;
  z-index: 2;
}

.visual-overlay-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(47, 36, 27, 0.04), rgba(47, 36, 27, 0.84));
  color: var(--text-light);
}

.visual-overlay-content h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  font-family: "Playfair Display", serif;
}

.visual-overlay-content p {
  margin: 0;
  color: rgba(248, 242, 234, 0.84);
  max-width: 36ch;
}

.wireframe-box {
  position: absolute;
  right: 46px;
  top: 54px;
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(70, 59, 46, 0.18);
  border-radius: 28px;
  transform: rotate(8deg);
  z-index: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.hero-stats .stat-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-stats .counter {
  display: inline-block;
  min-width: 2ch;
}

.hero-stats .stat-card span {
  display: block;
}

.hero-stats .stat-card strong::after {
  content: "+";
  margin-left: 2px;
  opacity: 0.7;
}

.hero-stats .stat-card:nth-child(4) strong::after {
  content: "";
}

.stat-card,
.service-card,
.value-card,
.testimonial-card,
.process-card,
.job-card,
.timeline-card,
.team-card,
.portfolio-card,
.glass-panel,
.form-card,
.map-card,
.cta-panel,
.contact-info-item,
.filter-bar,
.faq-item,
.timeline,
.contact-note {
  border: 1px solid rgba(70, 59, 46, 0.1);
  box-shadow: var(--shadow-sm);
}

.stat-card {
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 3rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.stat-card span {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-tint {
  background: linear-gradient(180deg, #faf8f4 0%, #f2eee8 100%);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(219, 185, 110, 0.12), transparent 24%),
    linear-gradient(180deg, #3a2d22 0%, #211812 100%);
  color: var(--text-light);
}

.section-dark .eyebrow,
.section-dark .panel-kicker,
.section-dark .service-index,
.section-dark .value-number,
.section-dark .process-step,
.section-heading-light p,
.section-heading-light .eyebrow,
.section-dark p,
.section-dark li,
.section-dark h2,
.section-dark h3,
.section-dark a {
  color: var(--text-light);
}

.section-dark .eyebrow,
.section-dark .panel-kicker,
.section-heading-light .eyebrow {
  opacity: 0.84;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
  position: relative;
  z-index: 2;
}

.section-heading h2,
.reveal-left h2,
.reveal-right h2,
.service-detail h2,
.cta-panel h2,
.page-hero-content h1 {
  font-size: clamp(2rem, 3.2vw, 4rem);
  line-height: 1.04;
  margin: 14px 0 16px;
}

.section-heading p,
.hero-copy .hero-intro,
.reveal-left p,
.reveal-right p,
.cta-panel p {
  max-width: 60ch;
}

.grid-2,
.service-detail-grid,
.dual-panel,
.form-layout {
  display: grid;
  gap: 34px;
}

.grid-2,
.dual-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.align-center {
  align-items: center;
}

.image-board,
.service-visual {
  position: relative;
  margin-top: 10px;
}

.image-board-main,
.image-board-float,
.service-visual,
.team-avatar,
.portfolio-card img,
.visual-card img {
  line-height: 0;
}

.image-board-main {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(70, 59, 46, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.image-board-main img,
.image-board-float img,
.service-visual img,
.team-avatar img {
  display: block;
}

.image-board-main img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  margin-inline: auto;
}

.image-board-float {
  position: absolute;
  right: -26px;
  bottom: 22px;
  width: min(44%, 260px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(70, 59, 46, 0.08);
}

.glass-panel,
.form-card,
.cta-panel,
.contact-note,
.filter-bar,
.map-card {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  border-radius: 28px;
}

.glass-panel,
.form-card,
.cta-panel,
.map-card {
  box-shadow: var(--shadow-md);
}

.glass-panel {
  padding: 32px;
}

.stacked-panels {
  display: grid;
  gap: 22px;
}

.service-grid,
.value-list,
.process-track,
.testimonial-grid,
.team-grid,
.job-grid,
.story-grid,
.contact-method-grid,
.portfolio-grid,
.portfolio-grid-large {
  display: grid;
  gap: 22px;
}

.service-grid-nine,
.value-list,
.story-grid,
.contact-method-grid,
.process-track,
.testimonial-grid,
.team-grid,
.job-grid,
.portfolio-grid,
.portfolio-grid-large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.value-card,
.process-card,
.testimonial-card,
.job-card {
  position: relative;
  padding: 30px 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover,
.value-card:hover,
.process-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.section-dark .value-card,
.section-dark .process-card,
.section-dark .job-card,
.section-dark .service-card,
.section-dark .testimonial-card {
  background: rgba(255, 245, 235, 0.06);
  border-color: rgba(255, 245, 235, 0.08);
  box-shadow: none;
}

.service-card::before,
.value-card::before,
.job-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -50% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(219, 185, 110, 0.2), transparent 65%);
  pointer-events: none;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(243, 236, 224, 0.92));
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.section-dark .service-icon,
.section-dark .contact-icon {
  background: rgba(255, 245, 235, 0.08);
  color: var(--accent);
}

.service-card h3,
.value-card h3,
.process-card h3,
.job-card h3,
.team-content h3,
.timeline-card h3,
.portfolio-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.15;
  position: relative;
  z-index: 2;
}

.services-preview .service-icon {
  display: none !important;
}

.services-preview .service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 20px 24px;
  overflow: hidden;
}

.services-preview .service-card::before {
  display: none;
}

.services-preview .service-card h3,
.services-preview .service-card p,
.services-preview .service-card .inline-link {
  position: relative;
  z-index: 2;
}

.services-preview .service-card h3 {
  min-height: 3.2rem;
}

.services-preview .service-card p {
  flex-grow: 1;
}

.services-preview .service-card .inline-link {
  margin-top: auto;
  padding-top: 8px;
}

.services-preview .service-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  margin: 0 0 18px;
  border-radius: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
  z-index: 2;
  transform: scale(1.02);
}

.service-detail-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.service-detail-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.service-detail-grid.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.service-detail-grid.reverse .service-detail {
  order: 1;
}

.service-detail-grid.reverse .service-visual {
  order: 2;
}

.service-visual img {
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(70, 59, 46, 0.08);
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  margin-inline: auto;
}

.service-index,
.value-number,
.process-step,
.timeline-year {
  margin-bottom: 14px;
}

.feature-list,
.footer-links,
.footer-contact {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.feature-list li,
.footer-links li,
.footer-contact li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
}

.section-dark .feature-list li {
  color: rgba(248, 242, 234, 0.8);
}

.feature-list li::before,
.footer-links li::before,
.footer-contact li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(219, 185, 110, 0.12);
}

.footer-contact strong {
  display: inline-block;
  margin-right: 6px;
}

.footer-contact li {
  line-height: 1.85;
}

.footer-contact a,
.footer-links a {
  word-break: break-word;
}

.portfolio-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.35s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.portfolio-card-content {
  padding: 24px;
}

.portfolio-card-content span {
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-2);
  margin-bottom: 12px;
}

.portfolio-filter-item.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  pointer-events: none;
  position: absolute;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(70, 59, 46, 0.1);
  color: var(--text-soft);
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--text-light);
  border-color: transparent;
}

.faq-list-full {
  max-width: 1100px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.faq-card {
  height: 100%;
  padding: 28px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(70, 59, 46, 0.1);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.faq-card h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.15;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}

.faq-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.faq-card p + p {
  margin-top: 14px;
}

.testimonial-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
}

.testimonial-card p {
  font-size: 1.02rem;
  margin-bottom: 18px;
  min-height: 110px;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.team-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-avatar img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.team-content {
  padding: 26px;
}

.team-role {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-2);
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline {
  display: grid;
  gap: 18px;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
}

.section:not(.section-dark) .timeline-card {
  background: rgba(255, 255, 255, 0.86);
}

.form-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-layout {
  grid-template-columns: 0.88fr 1.12fr;
}

.form-card {
  padding: 30px;
}

.modern-form {
  display: grid;
  gap: 20px;
}

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

.form-group {
  display: grid;
  gap: 10px;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
}

.form-control {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(70, 59, 46, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  transition: var(--transition);
}

textarea.form-control {
  resize: vertical;
  min-height: 160px;
}

.form-control:focus {
  outline: none;
  border-color: rgba(127, 98, 71, 0.45);
  box-shadow: 0 0 0 5px rgba(219, 185, 110, 0.16);
  background: #ffffff;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-message {
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-message.success {
  background: rgba(53, 146, 92, 0.14);
  color: #165f36;
  border: 1px solid rgba(53, 146, 92, 0.18);
}

.form-message.error {
  background: rgba(181, 61, 61, 0.12);
  color: #7d2626;
  border: 1px solid rgba(181, 61, 61, 0.16);
}

.char-counter {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.contact-info-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(243, 236, 224, 0.92));
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--primary);
}

.contact-info-item a,
.contact-info-item p {
  margin: 0;
}

.contact-note {
  margin-top: 22px;
  padding: 22px;
}

.contact-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
}

.map-card {
  overflow: hidden;
  padding: 12px;
}

.map-card iframe {
  min-height: 420px;
  border-radius: 20px;
}

.cta-panel {
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.reveal-left,
.reveal-right,
.cta-panel-content {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 1.05fr;
  gap: 28px;
}

.site-footer {
  background: linear-gradient(180deg, #463b2e 0%, #2f241b 100%);
  color: rgba(248, 242, 234, 0.88);
  padding: 84px 0 28px;
}

.site-footer .footer-col h3 {
  color: #fff5eb;
  font-size: 1.25rem;
  margin: 0 0 16px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(248, 242, 234, 0.76);
}

.site-footer .footer-links li::before,
.site-footer .footer-contact li::before {
  box-shadow: 0 0 0 5px rgba(219, 185, 110, 0.12);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 245, 235, 0.08);
  border: 1px solid rgba(255, 245, 235, 0.08);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
  background: rgba(219, 185, 110, 0.18);
  color: #fff;
  transform: translateY(-3px);
}

.social-links a i,
.whatsapp-float i,
.back-to-top i,
.service-icon i {
  display: inline-block;
  line-height: 1;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 245, 235, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  z-index: 990;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover,
.back-to-top:hover {
  transform: translateY(-3px);
}

.whatsapp-float {
  bottom: 24px;
  background: linear-gradient(135deg, #1dbf73, #119c5d);
  color: white;
  font-size: 1.4rem;
}

.back-to-top {
  bottom: 94px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  border: 1px solid rgba(70, 59, 46, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.section-action {
  margin-top: 30px;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal-scale {
  transform: scale(0.96);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.tilt-card {
  transform-style: preserve-3d;
}

.parallax-card {
  transition: transform 0.25s ease;
}

.intro-top {
  margin-bottom: 34px;
}

.intro-heading {
  margin-bottom: 0;
}

.intro-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.intro-section .grid-2,
.reality-section .grid-2,
.about-preview .grid-2 {
  align-items: center;
}

.intro-section .image-board-main,
.reality-section .image-board-main,
.about-preview .image-board-main {
  overflow: visible;
  background: transparent;
}

.intro-section .image-board-main img,
.reality-section .image-board-main img,
.about-preview .image-board-main img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
}

.reality-section .image-board,
.about-preview .image-board {
  position: relative;
  transform: translateY(-45px);
}

.section-tint .image-board {
  transform: none !important;
  position: relative !important;
}

.team-grid.team-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.team-grid.team-grid-four .team-card {
  height: 100%;
}

.team-grid.team-grid-four .team-avatar img {
  height: 300px;
  object-fit: cover;
}

.team-grid.team-grid-four .team-content {
  padding: 22px;
}

.team-grid.team-grid-four .team-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.team-grid.team-grid-four .team-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.team-grid.team-grid-four .team-content p:last-child {
  margin-bottom: 0;
}

.about-page .image-board-float {
  display: none;
}

.about-page .value-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.careers-page .careers-value-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@keyframes loaderSpin {
  0%,
  100% {
    transform: rotate(45deg) scale(1);
  }

  50% {
    transform: rotate(225deg) scale(1.08);
  }
}

@keyframes pulseLine {
  0% {
    transform: scaleX(0.45);
    opacity: 0.5;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0.45);
    opacity: 0.5;
  }
}

@media (max-width: 1200px) {
  .header-phone span {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .hero-copy h1,
  .page-hero-content h1 {
    max-width: 13ch;
  }

  .hero-visual-stack {
    min-height: 620px;
  }

  .service-grid-nine,
  .portfolio-grid,
  .portfolio-grid-large,
  .value-list,
  .process-track,
  .testimonial-grid,
  .team-grid,
  .job-grid,
  .story-grid,
  .contact-method-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-grid,
  .service-detail-grid.reverse,
  .form-layout,
  .contact-layout,
  .grid-2,
  .dual-panel,
  .cta-panel,
  .intro-bottom {
    grid-template-columns: 1fr;
  }

  .service-detail-grid.reverse .service-detail,
  .service-detail-grid.reverse .service-visual {
    order: initial;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .team-grid.team-grid-four,
  .about-page .value-list,
  .careers-page .careers-value-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  .visual-card-main {
    height: 610px;
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transform: none !important;
  }

  .site-header.scrolled {
    transform: none !important;
    top: 0;
  }

  .header-shell {
    grid-template-columns: auto auto;
    gap: 16px;
    min-height: 76px;
  }

  .site-nav {
    position: fixed;
    inset: 84px 16px auto 16px;
    background: #463b2e;
    border: 1px solid rgba(219, 185, 110, 0.2);
    border-radius: 26px;
    padding: 18px;
    box-shadow: 0 24px 50px rgba(23, 16, 12, 0.34);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .site-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  .brand img,
  .logo img {
    height: 50px;
    max-width: 240px;
  }

  .hero-home {
    min-height: auto;
    padding: 24px 0 70px;
  }

  .hero-copy h1,
  .page-hero-content h1,
  .section-heading h2,
  .reveal-left h2,
  .reveal-right h2,
  .service-detail h2,
  .cta-panel h2 {
    max-width: none;
  }

  .hero-visual-stack {
    min-height: auto;
  }

  .visual-card-main,
  .visual-card-side,
  .visual-card-bottom,
  .wireframe-box {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    transform: none !important;
  }

  .visual-card-main {
    min-height: 520px;
  }

  .visual-card-side,
  .visual-card-bottom {
    margin-top: 18px;
    min-height: 180px;
  }

  .visual-card-main img {
    min-height: 520px;
    object-fit: cover;
  }

  .visual-card-side img,
  .visual-card-bottom img {
    min-height: 180px;
    object-fit: cover;
  }

  .wireframe-box {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero {
    min-height: auto;
    padding: 122px 0 50px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline-year {
    margin-bottom: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-preview .service-card img {
    height: 200px;
    transform: scale(1.03);
  }

  .reality-section .image-board,
  .about-preview .image-board {
    transform: none !important;
    margin-top: 0;
  }

  .about-preview .reveal-left,
  .about-preview .reveal-right {
    transform: none !important;
    margin-top: 0;
  }

  .about-preview .image-board-float {
    display: none;
  }

  .about-preview {
    overflow: visible;
  }

  .about-preview .grid-2.align-center {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px !important;
  }

  .about-preview .image-board.reveal-left.image-board-contained {
    order: 1 !important;
    width: 100% !important;
    transform: none !important;
    margin: 0 !important;
    position: static !important;
  }

  .about-preview .reveal-right {
    order: 2 !important;
    width: 100% !important;
    transform: none !important;
    margin: 0 !important;
    position: static !important;
  }

  .about-preview .image-board,
  .about-preview .image-board-contained,
  .about-preview .image-board-main,
  .about-preview .image-board-main-contained {
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }

  .about-preview .image-board-main,
  .about-preview .image-board-main-contained {
    overflow: hidden !important;
    border-radius: 22px !important;
    line-height: 0;
  }

  .about-preview .image-board-main img,
  .about-preview .image-board-main-contained img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 22px !important;
  }

  .about-preview .reveal-right h2,
  .about-preview .reveal-right p,
  .about-preview .reveal-right .eyebrow,
  .about-preview .reveal-right .btn {
    position: static !important;
    z-index: auto !important;
  }

  .service-detail-grid,
  .service-detail-grid.reverse {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .service-detail-grid .service-visual,
  .service-detail-grid.reverse .service-visual {
    order: 1 !important;
  }

  .service-detail-grid .service-detail,
  .service-detail-grid.reverse .service-detail {
    order: 2 !important;
  }

  .service-visual,
  .service-detail-grid.reverse .service-visual {
    margin-top: 0;
  }

  .intro-section .image-board-main img,
  .reality-section .image-board-main img,
  .about-preview .image-board-main img {
    border-radius: 22px;
  }

  .reality-section .image-board,
  .about-preview .image-board,
  .section.section-tint .image-board,
  .section.section-tint .image-board.reveal-right {
    transform: none !important;
    margin: 0 !important;
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
  }

  .service-detail-grid .image-board-main,
  .section.section-tint .image-board-main {
    margin: 0 !important;
    line-height: 0;
  }

  .service-detail-grid .grid-2.align-center,
  .section.section-tint .grid-2.align-center {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
    overflow: visible !important;
  }

  .service-detail-grid .reveal-left,
  .service-detail-grid .reveal-right,
  .section.section-tint .reveal-left,
  .section.section-tint .reveal-right {
    transform: none !important;
    margin: 0 !important;
    position: static !important;
    width: 100% !important;
  }

  .section.section-tint .image-board.reveal-right {
    order: 1 !important;
  }

  .section.section-tint .reveal-left {
    order: 2 !important;
  }

  .image-board-main img,
  .section.section-tint .image-board-main img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    object-fit: contain !important;
    margin: 0 !important;
  }

  .team-grid.team-grid-four .team-avatar img {
    height: 280px;
  }

  .footer-contact strong {
    display: block;
    margin: 0 0 4px;
  }

  .testimonial-card p {
    min-height: 0;
  }

  .section.section-tint,
  .section.section-tint .grid-2 {
    overflow: visible !important;
  }
}
@media (max-width: 767px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .site-header.scrolled {
    backdrop-filter: none;
  }

  .hero-home {
    padding: 22px 0 72px;
  }

  .hero-layout {
    gap: 22px;
  }

  .hero-copy h1,
  .page-hero-content h1 {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
    line-height: 1.02;
  }

  .hero-copy p,
  .page-hero-content p,
  .section-heading p,
  .reveal-left p,
  .reveal-right p,
  .glass-panel p,
  .service-detail p,
  .job-card p,
  .team-content p {
    font-size: 0.96rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .header-phone {
    width: 100%;
  }

  .hero-points li {
    align-items: flex-start;
  }

  .hero-points i {
    width: 32px;
    height: 32px;
    margin-top: 2px;
  }

  .hero-stats,
  .service-grid-nine,
  .portfolio-grid,
  .portfolio-grid-large,
  .value-list,
  .process-track,
  .testimonial-grid,
  .team-grid,
  .job-grid,
  .story-grid,
  .contact-method-grid,
  .footer-grid,
  .grid-2,
  .dual-panel,
  .intro-bottom,
  .team-grid.team-grid-four,
  .about-page .value-list,
  .careers-page .careers-value-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .glass-panel,
  .service-card,
  .value-card,
  .process-card,
  .testimonial-card,
  .job-card,
  .team-content,
  .form-card,
  .cta-panel,
  .timeline-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-card,
  .value-card,
  .process-card,
  .testimonial-card,
  .job-card {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .portfolio-card img {
    height: 230px;
  }

  .image-board-main img {
    min-height: 0;
    height: auto;
    object-fit: contain;
  }


  .faq-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-card {
    padding: 22px 20px;
  }

  .faq-card h3 {
    font-size: 1.18rem;
    margin-bottom: 12px;
  }

  .form-layout,
  .contact-layout {
    gap: 24px;
  }

  .contact-info-item {
    padding: 16px;
    border-radius: 18px;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .page-hero {
    min-height: auto;
    padding: 116px 0 42px;
  }

  .page-hero-bg::after {
    background:
      linear-gradient(180deg, rgba(28, 21, 16, 0.62) 0%, rgba(28, 21, 16, 0.56) 38%, rgba(28, 21, 16, 0.48) 100%),
      linear-gradient(90deg, rgba(28, 21, 16, 0.42) 0%, rgba(28, 21, 16, 0.22) 100%);
  }

  .page-hero-content {
    max-width: 100%;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .page-hero-content p {
    max-width: 100%;
    line-height: 1.75;
  }

  .map-card iframe {
    min-height: 300px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float,
  .back-to-top {
    width: 52px;
    height: 52px;
    right: 16px;
  }

  .whatsapp-float {
    bottom: 16px;
  }

  .back-to-top {
    bottom: 78px;
  }

  .brand img,
  .logo img {
    height: 44px;
    max-width: 190px;
  }

  .services-preview .service-card {
    display: flex;
    flex-direction: column;
    padding: 18px 18px 22px;
  }

  .services-preview .service-card img {
    order: 1;
    height: 180px;
    margin: 0 0 16px;
    border-radius: 14px;
    transform: scale(1.04);
  }

  .services-preview .service-card h3 {
    order: 2;
    min-height: auto;
  }

  .services-preview .service-card p {
    order: 3;
  }

  .services-preview .service-card .inline-link {
    order: 4;
    margin-top: 12px;
    padding-top: 0;
  }

  .service-detail-grid,
  .service-detail-grid.reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-detail-grid .service-visual,
  .service-detail-grid.reverse .service-visual {
    order: 1 !important;
  }

  .service-detail-grid .service-detail,
  .service-detail-grid.reverse .service-detail {
    order: 2 !important;
  }

  .service-visual,
  .service-detail-grid.reverse .service-visual {
    margin-top: 0;
  }

  .intro-section .image-board-main img,
  .reality-section .image-board-main img,
  .about-preview .image-board-main img {
    border-radius: 22px;
  }

.reality-section .image-board,
.about-preview .image-board,
.section-tint .image-board,
.section-tint .image-board.reveal-right {
  transform: none !important;
  margin: 0 !important;
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
}

.about-preview {
  overflow: visible;
}

.about-preview .grid-2.align-center {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 20px !important;
}

.about-preview .image-board.reveal-left.image-board-contained {
  order: 1 !important;
  width: 100% !important;
  transform: none !important;
  margin: 0 !important;
  position: static !important;
}

.about-preview .reveal-right {
  order: 2 !important;
  width: 100% !important;
  transform: none !important;
  margin: 0 !important;
  position: static !important;
}

.about-preview .image-board,
.about-preview .image-board-contained,
.about-preview .image-board-main,
.about-preview .image-board-main-contained {
  width: 100% !important;
  max-width: 100% !important;
  transform: none !important;
}

.about-preview .image-board-main,
.about-preview .image-board-main-contained {
  overflow: hidden !important;
  border-radius: 22px !important;
  line-height: 0;
}

.about-preview .image-board-main img,
.about-preview .image-board-main-contained img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 22px !important;
}

.about-preview .image-board-float {
  display: none !important;
}

.about-preview .reveal-right h2,
.about-preview .reveal-right p,
.about-preview .reveal-right .eyebrow,
.about-preview .reveal-right .btn {
  position: static !important;
  z-index: auto !important;
}

  .team-grid.team-grid-four .team-avatar img {
    height: 280px;
  }

  .footer-contact strong {
    display: block;
    margin: 0 0 4px;
  }
	
	.service-detail-grid,
.service-detail-grid.reverse,
.section.section-tint .grid-2.align-center {
  grid-template-columns: 1fr;
  gap: 22px;
}

.service-detail-grid .service-visual,
.service-detail-grid.reverse .service-visual {
  order: 1 !important;
}

.service-detail-grid .service-detail,
.service-detail-grid.reverse .service-detail {
  order: 2 !important;
}

.service-visual,
.service-detail-grid.reverse .service-visual {
  margin-top: 0;
}

.service-detail-grid .image-board,
.service-detail-grid .image-board.reveal-right,
.section.section-tint .image-board,
.section.section-tint .image-board.reveal-right {
  position: relative !important;
  transform: none !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
}

.service-detail-grid .image-board-main,
.section.section-tint .image-board-main {
  margin: 0 !important;
}

.service-detail-grid .grid-2.align-center,
.section.section-tint .grid-2.align-center {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
  align-items: start !important;
  overflow: hidden !important;
}

.service-detail-grid .reveal-left,
.service-detail-grid .reveal-right,
.section.section-tint .reveal-left,
.section.section-tint .reveal-right {
  transform: none !important;
  margin: 0 !important;
}

.image-board-main img {
  min-height: 0;
  height: auto;
  object-fit: contain;
}
	
	.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  transform: none !important;
}

.site-header.scrolled {
  transform: none !important;
  top: 0;
}

.header-shell {
  min-height: 76px;
 }
	
	  .section.section-tint {
    overflow: hidden;
  }

  .section.section-tint .grid-2 {
    overflow: hidden;
  }
}

@media (max-width: 520px) {
  html {
    scroll-padding-top: 92px;
  }

  .site-nav {
    inset: 76px 10px auto 10px;
    padding: 16px;
    border-radius: 22px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0 11px;
  }

  .hero-copy h1,
  .page-hero-content h1 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .section-heading h2,
  .reveal-left h2,
  .reveal-right h2,
  .service-detail h2,
  .cta-panel h2 {
    font-size: clamp(1.75rem, 8vw, 2.6rem);
  }

  .stat-card {
    padding: 20px 18px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .portfolio-card-content,
  .team-content,
  .glass-panel,
  .form-card,
  .cta-panel,
  .timeline-card {
    padding: 18px;
  }

  .filter-bar {
    padding: 14px;
    gap: 8px;
  }

  .filter-btn {
    width: calc(50% - 4px);
    text-align: center;
    justify-content: center;
    padding-inline: 12px;
  }

  .footer-col {
    padding-right: 0;
  }

  .services-preview .service-card img {
    height: 170px;
    transform: scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .hero-slide {
    transition: none;
  }
}
