/* ============================================
   AIKON INTERIOR — Corporate Website (Desktop)
   ============================================ */

:root {
  --accent: #d3712d;
  --accent-dark: #b85e22;
  --accent-light: #e08a4a;
  --midnight: #2c2c2c;
  --dark-grey: #58595b;
  --mid-grey: #939598;
  --light-grey: #d1d3d4;
  --extra-light-grey: #f5f3ef;
  --cream: #fdfbf3;
  --white: #fff;
  --black: #1a1a1a;
  --text-dark: #2c2c2c;
  --header-height: 80px;
  --banner-height: 620px;
  --font: "Helvetica Neue", Arial, sans-serif;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  min-width: 1280px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--header-height);
  border-bottom: 1px solid var(--extra-light-grey);
}

.site-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-header__logo img {
  height: 40px;
  width: auto;
}

.site-header__wordmark {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 28px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--accent);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--extra-light-grey);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 100;
}

.nav-dropdown--wide {
  display: flex;
  gap: 32px;
  min-width: 440px;
  padding: 20px 24px;
}

.nav-dropdown__col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-dropdown__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-grey);
  padding: 4px 16px 8px;
}

.nav-dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-dark);
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown a:hover {
  background: var(--extra-light-grey);
  color: var(--accent);
}

.nav-item--has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
}

.btn--accent:hover {
  background: var(--accent-dark);
}

.btn--sm {
  padding: 12px 24px;
  font-size: 12px;
}

.btn--accent::after {
  display: none;
}

/* ---- Hero Carousel ---- */
.hero-banner {
  position: relative;
  height: var(--banner-height);
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  height: 100%;
}

.hero-carousel__track {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide__bg-inner {
  width: 100%;
  height: 100%;
  will-change: transform;
}

.hero-slide__placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  will-change: transform;
}

/* Placeholder gradients until images are added */
.hero-slide__placeholder--1 {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 42%, #3a3530 42%, #2c2c2c 100%);
}

.hero-slide__placeholder--2 {
  background: linear-gradient(160deg, #4a4540 0%, #2c2c2c 50%, #5a5550 100%);
}

.hero-slide__placeholder--3 {
  background: linear-gradient(160deg, #e8e4de 0%, #c8c0b4 50%, #a8a098 100%);
}

/* Animated diagonal overlay on Red Book slide */
.hero-slide__diagonal {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-slide[data-slide="0"] .hero-slide__diagonal::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 65%;
  height: 120%;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 55% 100%, 0 100%);
  animation: diagonalShift 12s ease-in-out infinite alternate;
}

.hero-slide[data-slide="0"] .hero-slide__diagonal::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 8%;
  width: 35%;
  height: 60%;
  background: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  clip-path: polygon(0 0, 100% 5%, 90% 100%, 5% 95%);
  animation: bookGlow 6s ease-in-out infinite alternate;
}

@keyframes diagonalShift {
  0% { transform: translateX(0) skewX(0deg); }
  100% { transform: translateX(15px) skewX(-1deg); }
}

@keyframes bookGlow {
  0% { opacity: 0.4; transform: translateY(0); }
  100% { opacity: 0.8; transform: translateY(-8px); }
}

.hero-slide__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  max-width: 1320px;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.hero-slide__content--right {
  align-items: flex-end;
  text-align: left;
}

.hero-slide__content--left {
  align-items: flex-start;
}

.hero-slide__text-box {
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 32px 40px;
  max-width: 480px;
  margin-bottom: 24px;
  transform: translateY(30px);
  opacity: 0;
}

.hero-slide.is-active .hero-slide__text-box {
  animation: slideContentIn 0.8s ease 0.3s forwards;
}

.hero-slide__text-box--transparent {
  background: transparent;
}

.hero-slide__text-box--dark {
  background: rgba(0, 0, 0, 0.85);
}

@keyframes slideContentIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.heading-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--mid-grey);
}

.heading-eyebrow--light {
  color: var(--light-grey);
}

.hero-slide__text-box h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.hero-slide__text-box p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--light-grey);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn::after {
  content: "→";
  transition: transform 0.2s ease;
}

.btn:hover::after {
  transform: translateX(5px);
}

.btn--primary {
  background: var(--white);
  color: var(--black);
}

.btn--primary:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--dark-grey);
}

.hero-slide.is-active .btn {
  animation: slideContentIn 0.8s ease 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Carousel controls */
.hero-carousel__arrow {
  position: absolute;
  bottom: 40px;
  z-index: 10;
  width: 48px;
  height: 48px;
  background: var(--white);
  color: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.hero-carousel__arrow:hover {
  background: var(--accent);
  color: var(--white);
}

.hero-carousel__arrow--prev {
  right: calc(50% - 580px + 110px);
}

.hero-carousel__arrow--next {
  right: calc(50% - 580px + 62px);
}

.hero-carousel__dots {
  position: absolute;
  bottom: 40px;
  left: calc(50% - 660px + 59px);
  z-index: 10;
  display: flex;
  gap: 0;
  height: 48px;
  align-items: center;
}

.hero-carousel__dot {
  width: 40px;
  height: 5px;
  background: var(--white);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}

.hero-carousel__dot.is-active {
  background: var(--accent);
}

/* ---- Explore Tabs ---- */
.explore-tabs {
  padding: 40px 0 20px;
  background: var(--white);
}

.section-eyebrow {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 24px;
}

.tabs-splitter {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tabs-splitter__tab {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  padding: 8px 4px 16px;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}

.tabs-splitter__tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tabs-splitter__tab.is-active::after,
.tabs-splitter__tab:hover::after {
  transform: scaleX(1);
}

.tabs-splitter__tab.is-active {
  font-weight: 600;
}

/* ---- Resources ---- */
.resources {
  padding: 48px 0 64px;
  background: var(--extra-light-grey);
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.resources__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.info-card__icon {
  width: 50px;
  height: 50px;
  color: var(--text-dark);
}

.info-card__icon svg {
  width: 100%;
  height: 100%;
}

.info-card h3 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* ---- Explore Possible ---- */
.explore-possible {
  padding: 64px 0;
  background: var(--white);
}

.explore-possible__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 600px;
}

.explore-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 280px;
}

.explore-card--large {
  grid-row: 1 / 3;
  min-height: 100%;
}

.explore-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.explore-card:hover .explore-card__img {
  transform: scale(1.05);
}

.explore-card__img--1 {
  background: linear-gradient(160deg, #5a5048 0%, #3a3530 100%);
}

.explore-card__img--2 {
  background: linear-gradient(160deg, #6a6560 0%, #4a4540 100%);
}

.explore-card__img--3 {
  background: linear-gradient(160deg, #c8c0b4 0%, #a09888 100%);
}

.explore-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--white);
}

.explore-card__tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  opacity: 0.8;
}

.explore-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.explore-card__link {
  font-size: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.explore-card:hover .explore-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Building Solutions ---- */
.building-solutions {
  background: var(--midnight);
  color: var(--white);
  padding: 64px 0;
  overflow: hidden;
}

.building-solutions__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.building-solutions__text h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.building-solutions__text > p {
  color: var(--light-grey);
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6;
}

.building-solutions__links li {
  margin-bottom: 4px;
}

.building-solutions__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 16px;
  color: var(--white);
  transition: opacity var(--transition), padding-left 0.2s ease;
}

.building-solutions__links a:hover {
  opacity: 0.8;
  padding-left: 8px;
}

.building-solutions__links .chevron {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.building-solutions__links a:hover .chevron {
  transform: translateX(4px);
}

.building-solutions__image {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.building-solutions__img-placeholder {
  width: 100%;
  height: 120%;
  background: linear-gradient(160deg, #4a5a6a 0%, #2a3a4a 40%, #6a7a8a 100%);
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* ---- Product Banners ---- */
.product-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

.product-banner--grey {
  background: var(--extra-light-grey);
}

.product-banner--accent {
  background: var(--accent-dark);
  color: var(--white);
}

.product-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-banner__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.product-banner__img--1 {
  background: linear-gradient(135deg, #e8e4de 0%, #c8c0b4 50%, #a8a098 100%);
}

.product-banner__img--2 {
  background: linear-gradient(135deg, #d0d0d0 0%, #a8a8a8 50%, #888888 100%);
}

.product-banner__img--3 {
  background: linear-gradient(135deg, #8a8070 0%, #6a6050 50%, #5a5040 100%);
}

.product-banner .container {
  position: relative;
  z-index: 1;
}

.product-banner__content {
  max-width: 480px;
  padding: 64px 24px;
}

.product-banner__content--right {
  margin-left: auto;
}

.product-banner__content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.product-banner__content p {
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 16px;
}

.product-banner--accent .product-banner__content p {
  color: rgba(255,255,255,0.85);
}

.product-banner--grey .product-banner__content {
  margin-left: 0;
}

.product-banner--grey .product-banner__bg {
  left: 50%;
}

/* ---- About ---- */
.about {
  padding: 80px 0;
  text-align: center;
}

.about__desc {
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: var(--dark-grey);
  line-height: 1.6;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card__img {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.about-card:hover .about-card__img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.about-card__img--1 {
  background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
}

.about-card__img--2 {
  background: linear-gradient(135deg, #5a5a5a, #3a3a3a);
}

.about-card__img--3 {
  background: linear-gradient(135deg, #6a6a6a, #4a4a4a);
}

.about-card p {
  font-size: 16px;
  font-weight: 500;
}

/* ---- Supplier CTA ---- */
.supplier-cta {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--accent-dark);
}

.supplier-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.supplier-cta__img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent) 40%, #8a6050 70%, #6a5040 100%);
  background-size: cover;
  background-position: center right;
  will-change: transform;
}

.supplier-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, var(--accent-dark) 0%, var(--accent-dark) 42%, transparent 58%);
  clip-path: polygon(0 0, 55% 0, 42% 100%, 0 100%);
  animation: supplierDiagonalPulse 8s ease-in-out infinite alternate;
}

@keyframes supplierDiagonalPulse {
  0% { clip-path: polygon(0 0, 55% 0, 42% 100%, 0 100%); }
  100% { clip-path: polygon(0 0, 58% 0, 45% 100%, 0 100%); }
}

.supplier-cta__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 64px 24px;
}

.supplier-cta__content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  max-width: 480px;
}

.supplier-cta__sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 420px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--black);
  color: var(--white);
}

.footer-top {
  background: var(--white);
  color: var(--text-dark);
  padding: 32px 0;
  border-bottom: 1px solid var(--extra-light-grey);
}

.footer-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-top__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-top__logo img {
  height: 32px;
}

.footer-top__logo span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-top__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-top__links a {
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-top__links a:hover {
  color: var(--accent);
}

.footer-main {
  padding: 48px 0 24px;
}

.footer-main__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  flex: 1;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--light-grey);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--white);
  padding: 4px 0;
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--dark-grey);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--mid-grey);
}

.footer-bottom__links {
  display: flex;
  gap: 24px;
}

.footer-bottom__links a {
  font-size: 12px;
  color: var(--mid-grey);
  transition: color var(--transition);
}

.footer-bottom__links a:hover {
  color: var(--white);
}

/* ---- Scroll Reveal ---- */
.section-reveal {
  opacity: 0;
  transform: translateY(40px);
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Page Hero Banner (inner pages with image background) */
.page-hero-banner {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4a4540 0%, #2c2c2c 100%);
  background-size: cover;
  background-position: center;
}

.page-hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.4) 100%);
}

.page-hero-banner__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 24px;
}

.page-hero-banner__content h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  max-width: 800px;
}

.page-hero-banner__content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
}

/* ---- Inner Pages ---- */
.page-hero {
  padding: 80px 0 48px;
  background: var(--extra-light-grey);
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--dark-grey);
  max-width: 640px;
  margin: 0 auto;
}

.page-content {
  padding: 64px 0 80px;
}

.page-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-grey);
  margin-bottom: 16px;
  max-width: 760px;
}

.content-lead {
  font-size: 20px;
  line-height: 1.65;
  color: var(--text-dark);
  max-width: 900px;
  margin-bottom: 32px;
}

.content-wide p,
.content-wide .content-lead {
  max-width: 100%;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin: 48px 0;
}

.content-split__img {
  height: 360px;
  background: linear-gradient(160deg, #5a5048, #3a3530);
  background-size: cover;
  background-position: center;
}

.content-split--reverse {
  direction: rtl;
}

.content-split--reverse > * {
  direction: ltr;
}

.content-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.content-feature-card {
  padding: 28px;
  background: var(--extra-light-grey);
  border-top: 3px solid var(--accent);
}

.content-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.content-feature-card p {
  font-size: 15px;
  max-width: none;
  margin-bottom: 0;
}

.content-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
  padding: 40px;
  background: var(--midnight);
  color: var(--white);
}

.content-stats__item {
  text-align: center;
}

.content-stats__number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.content-stats__label {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 15px;
}

.content-table th,
.content-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--light-grey);
}

.content-table th {
  background: var(--extra-light-grey);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark-grey);
}

.content-table td {
  color: var(--text-dark);
}

.content-steps {
  counter-reset: step;
  margin: 40px 0;
}

.content-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--extra-light-grey);
}

.content-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.content-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.content-step p {
  max-width: none;
}

.content-highlight {
  padding: 32px 40px;
  background: var(--extra-light-grey);
  border-left: 4px solid var(--accent);
  margin: 40px 0;
}

.content-highlight p {
  max-width: none;
  margin-bottom: 0;
  font-size: 17px;
  color: var(--text-dark);
}

.content-image-banner {
  height: 320px;
  margin: 48px 0;
  background: linear-gradient(160deg, #5a5048, #3a3530);
  background-size: cover;
  background-position: center;
}

.content-service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.content-service-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--extra-light-grey);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.content-service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.content-service-card__img {
  height: 200px;
  background: linear-gradient(160deg, #5a5048, #3a3530);
  background-size: cover;
  background-position: center;
}

.content-service-card__body {
  padding: 24px;
}

.content-service-card__body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.content-service-card__body p {
  font-size: 15px;
  max-width: none;
  margin-bottom: 12px;
}

.content-service-card__link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text-dark);
}

.page-content ul.content-list {
  list-style: none;
  margin: 16px 0 24px;
  max-width: 760px;
}

.page-content ul.content-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark-grey);
}

.page-content ul.content-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.page-content .section-eyebrow {
  margin-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 32px;
}

.contact-info__item {
  margin-bottom: 24px;
}

.contact-info__item h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 8px;
}

.contact-info__item p,
.contact-info__item a {
  font-size: 18px;
  color: var(--text-dark);
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--dark-grey);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-grey);
  font-family: var(--font);
  font-size: 15px;
  margin-bottom: 20px;
  background: var(--white);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.service-block {
  padding: 32px;
  background: var(--extra-light-grey);
}

.service-block h2 {
  margin-top: 0;
  font-size: 24px;
}

/* ============================================
   AIKON INTERIOR — Fitout Site Components
   ============================================ */

/* Full-screen Hero */
.hero-fullscreen {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-fullscreen__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3a3530 0%, #2c2c2c 50%, #4a4540 100%);
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: scale(1.08);
}

.hero-fullscreen__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 38%, rgba(0,0,0,0.28) 62%, rgba(0,0,0,0.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 35%, rgba(0,0,0,0.3) 100%);
}

/* ---- Hero FX: fitout-industry animated layers ---- */
.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-fx__ceiling-grid {
  position: absolute;
  right: -5%;
  top: 0;
  width: 58%;
  height: 100%;
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(255, 200, 120, 0.25));
}

.hero-fx__grid-lines line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}

.hero-fx__studs {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 32%;
  height: 88%;
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(255, 140, 60, 0.45));
}

.hero-fx__stud {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
}

.hero-fx__track {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  stroke: rgba(255, 160, 80, 0.95);
}

.hero-fx__panels {
  position: absolute;
  right: 12%;
  top: 16%;
  width: 260px;
  height: 360px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-fx__panel {
  flex: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.08) 100%);
  border: 2px solid rgba(255, 200, 140, 0.45);
  border-radius: 3px;
  transform: translateX(140%) rotate(6deg);
  opacity: 0;
  box-shadow:
    inset 0 0 30px rgba(255,255,255,0.12),
    0 4px 24px rgba(0,0,0,0.25),
    0 0 20px rgba(255, 160, 80, 0.15);
}

.hero-fx__laser {
  position: absolute;
  left: 0;
  right: 0;
  top: 42%;
  height: 4px;
  z-index: 2;
}

.hero-fx__laser-beam {
  display: block;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,120,40,0.4) 10%, rgba(255,160,60,1) 50%, rgba(255,200,100,0.8) 90%, transparent 100%);
  box-shadow:
    0 0 8px rgba(255, 140, 40, 1),
    0 0 24px rgba(255, 100, 20, 0.9),
    0 0 48px rgba(255, 80, 0, 0.5);
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-fx__laser-dot {
  position: absolute;
  top: -7px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff8c2a;
  box-shadow:
    0 0 12px #ff8c2a,
    0 0 28px #ff6600,
    0 0 48px rgba(255, 100, 0, 0.6);
  opacity: 0;
  animation: laserDotPulse 1.2s ease-in-out infinite;
}

@keyframes laserDotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.hero-fx__blueprint {
  position: absolute;
  right: 28%;
  bottom: 10%;
  width: 240px;
  height: 210px;
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(255, 140, 60, 0.35));
}

.hero-fx__bp-room,
.hero-fx__bp-wall {
  fill: none;
  stroke: rgba(255, 160, 80, 0.9);
  stroke-width: 2.5;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}

.hero-fx__bp-marker {
  opacity: 0;
  transform-origin: center;
  filter: drop-shadow(0 0 8px #ff8c42);
}

.hero-fx__bp-dim {
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(255, 140, 60, 0.8));
}

.hero-fx__particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 200, 120, 0.75);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 160, 80, 0.6);
}

.hero-fx__particles span:nth-child(1) { left: 72%; top: 22%; }
.hero-fx__particles span:nth-child(2) { left: 78%; top: 35%; width: 10px; height: 4px; }
.hero-fx__particles span:nth-child(3) { left: 65%; top: 48%; }
.hero-fx__particles span:nth-child(4) { left: 85%; top: 55%; width: 4px; height: 10px; }
.hero-fx__particles span:nth-child(5) { left: 70%; top: 68%; }
.hero-fx__particles span:nth-child(6) { left: 88%; top: 28%; }
.hero-fx__particles span:nth-child(7) { left: 58%; top: 38%; width: 8px; height: 3px; }
.hero-fx__particles span:nth-child(8) { left: 82%; top: 72%; }
.hero-fx__particles span:nth-child(9) { left: 75%; top: 15%; width: 5px; height: 5px; }
.hero-fx__particles span:nth-child(10) { left: 62%; top: 62%; width: 7px; height: 3px; }
.hero-fx__particles span:nth-child(11) { left: 90%; top: 45%; }
.hero-fx__particles span:nth-child(12) { left: 68%; top: 82%; width: 4px; height: 8px; }

.hero-fx__scanline {
  position: absolute;
  left: 45%;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 160, 80, 0.9), transparent);
  box-shadow: 0 0 20px rgba(255, 120, 40, 0.8);
  opacity: 0;
  pointer-events: none;
}

.hero-fullscreen__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-fullscreen__content {
  position: relative;
  color: var(--white);
  max-width: 720px;
  padding-top: 40px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-eyebrow::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  margin-top: 10px;
  transition: width 0.8s ease;
}

.hero-eyebrow.is-drawn::after {
  width: 48px;
}

.hero-trade-rotator {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  min-height: 36px;
  opacity: 0;
}

.hero-trade-rotator__label {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero-trade-rotator__word {
  font-size: 26px;
  font-weight: 700;
  color: #ffb070;
  letter-spacing: -0.01em;
  display: inline-block;
  min-width: 300px;
  text-shadow: 0 0 20px rgba(255, 140, 60, 0.6), 0 0 40px rgba(255, 100, 20, 0.3);
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(50px);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 560px;
  opacity: 0;
  transform: translateY(24px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat__num {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.hero-stat__num--text {
  font-size: 32px;
  letter-spacing: 0.05em;
}

.hero-stat__suffix {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-light);
  margin-left: -4px;
}

.hero-stat__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

.hero-fullscreen__actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-btn {
  position: relative;
  overflow: hidden;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: color 0.3s ease;
}

.hero-scroll-cue:hover {
  color: var(--white);
}

.hero-scroll-cue__line {
  width: 2px;
  height: 56px;
  background: linear-gradient(180deg, #ff8c2a, transparent);
  box-shadow: 0 0 12px rgba(255, 140, 60, 0.8);
  animation: heroScrollPulse 1.6s ease-in-out infinite;
}

@keyframes heroScrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1.1); opacity: 1; }
}

/* Homepage section animation hooks */
.core-service-card {
  opacity: 0;
  transform: translateY(80px) scale(0.92);
}

.advantage-item {
  opacity: 0;
  transform: translateY(70px) scale(0.9);
}

.featured-project__text {
  opacity: 0;
  transform: translateX(-80px);
}

.featured-project__img {
  opacity: 0;
  transform: translateX(80px) scale(0.88);
}

.home-overview .content-split,
.home-overview .content-feature-card,
.home-overview .content-table,
.home-overview .content-highlight,
.home-overview .content-lead,
.home-overview .section-title {
  opacity: 0;
  transform: translateY(60px);
}

.core-service-card__img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.core-service-card:hover .core-service-card__img {
  transform: scale(1.06);
}

.core-service-card__body {
  position: relative;
}

.core-service-card__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.core-service-card:hover .core-service-card__body::before {
  transform: scaleX(1);
}

.section-title[data-split-title] .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(36px);
}

.hero-fullscreen__content .hero-title,
.hero-fullscreen__content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-fullscreen__content > p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-fullscreen__actions {
  display: flex;
  gap: 16px;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn--outline::after { display: none; }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-block;
}

.btn--outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Core Services */
.core-services {
  padding: 80px 0;
  background: var(--white);
}

.core-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.core-service-card {
  display: block;
  background: var(--extra-light-grey);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.core-service-card__img {
  height: 240px;
  background: linear-gradient(160deg, #5a5048, #3a3530);
  background-size: cover;
  background-position: center;
}

.core-service-card__body {
  padding: 28px;
}

.core-service-card__body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.core-service-card__body p {
  font-size: 15px;
  color: var(--dark-grey);
  line-height: 1.5;
  margin-bottom: 12px;
}

.core-service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* Advantages */
.advantages {
  padding: 64px 0;
  background: var(--midnight);
  color: var(--white);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.advantage-item {
  text-align: center;
  padding: 24px 16px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.advantage-item:hover {
  transform: translateY(-4px);
}

.advantage-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.advantage-item:hover::after {
  transform: scaleX(1);
}

.advantage-item__number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.advantage-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.advantage-item p {
  font-size: 14px;
  color: var(--light-grey);
  line-height: 1.5;
}

/* Testimonials Marquee */
.testimonials-scroll {
  padding: 64px 0;
  background: var(--black);
  overflow: hidden;
}

.section-title--light {
  color: var(--white);
}

.testimonials-marquee {
  overflow: hidden;
  margin: 32px 0;
}

.testimonials-marquee__track {
  display: flex;
  gap: 24px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.testimonials-marquee__track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 420px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px;
  color: var(--white);
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card footer {
  font-size: 13px;
  color: var(--accent-light);
}

.testimonials-scroll__cta {
  text-align: center;
  margin-top: 24px;
}

/* Featured Project */
.featured-project {
  padding: 80px 0;
  background: var(--extra-light-grey);
}

.featured-project__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.featured-project__img {
  height: 400px;
  background: linear-gradient(160deg, #5a5048, #3a3530);
  background-size: cover;
  background-position: center;
}

.featured-project__text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.featured-project__text p {
  font-size: 16px;
  color: var(--dark-grey);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Float Bar */
.float-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.float-bar__btn {
  flex: 1;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
}

.float-bar__btn--quote {
  background: var(--accent);
  color: var(--white);
}

.float-bar__btn--quote:hover {
  background: var(--accent-dark);
}

.float-bar__btn--call {
  background: var(--midnight);
  color: var(--white);
}

.float-bar__btn--call:hover {
  background: var(--black);
}

body {
  padding-bottom: 60px;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.modal__dialog {
  position: relative;
  background: var(--white);
  padding: 40px;
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
}

.modal__dialog h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--dark-grey);
  line-height: 1;
}

.quote-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--dark-grey);
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--light-grey);
  font-family: var(--font);
  font-size: 14px;
  margin-bottom: 16px;
}

.quote-form textarea {
  resize: vertical;
}

/* Service Detail Page */
.service-detail {
  padding: 64px 0;
}

.service-detail--reverse .service-detail__inner {
  direction: rtl;
}

.service-detail--reverse .service-detail__inner > * {
  direction: ltr;
}

.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-detail__img {
  height: 400px;
  background: linear-gradient(160deg, #5a5048, #3a3530);
  background-size: cover;
  background-position: center;
}

.service-detail__text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-detail__cn {
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.service-detail__text > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-grey);
  margin-bottom: 20px;
}

.service-detail__list {
  list-style: none;
  margin-bottom: 24px;
}

.service-detail__list li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 15px;
  color: var(--text-dark);
}

.service-detail__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.service-detail--highlight {
  background: var(--extra-light-grey);
}

.service-detail--grey {
  background: var(--extra-light-grey);
}

/* CTA Band */
.cta-band {
  padding: 64px 0;
  background: var(--midnight);
  color: var(--white);
  text-align: center;
}

.cta-band__inner h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

/* Projects */
.projects-section {
  padding: 64px 0;
}

.projects-section--grey {
  background: var(--extra-light-grey);
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  font-size: 16px;
  color: var(--mid-grey);
  margin: -24px 0 32px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  display: block;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.project-card__img {
  height: 220px;
  background: linear-gradient(160deg, #5a5048, #3a3530);
  background-size: cover;
  background-position: center;
}

.project-card__body {
  padding: 24px;
}

.project-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.project-card__body h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 8px 0;
}

.project-card__body p {
  font-size: 14px;
  color: var(--dark-grey);
}

/* Project Detail */
.project-detail__hero {
  height: 480px;
  background: linear-gradient(160deg, #4a4540, #2c2c2c);
  background-size: cover;
  background-position: center;
}

.project-detail__header {
  padding: 48px 0 32px;
}

.project-detail__back {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
}

.project-detail__header h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 12px 0 32px;
  letter-spacing: -0.02em;
}

.project-detail__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 24px;
  background: var(--extra-light-grey);
}

.project-detail__meta-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 4px;
}

.project-detail__meta-item span {
  font-size: 15px;
  color: var(--text-dark);
}

.project-detail__content {
  padding-bottom: 48px;
}

.project-detail__content h2 {
  font-size: 24px;
  margin: 32px 0 16px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 64px;
}

.gallery__item {
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
  overflow: hidden;
}

.gallery__thumb {
  height: 200px;
  background: linear-gradient(160deg, #6a6560, #4a4540);
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__thumb {
  transform: scale(1.04);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img-wrap {
  max-width: 90%;
  max-height: 85vh;
}

.lightbox__img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 48px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  line-height: 1;
}

.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

.lightbox__nav:hover {
  background: rgba(255,255,255,0.25);
}

/* About Page */
.about-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.about-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}

.about-sidebar-card {
  background: var(--extra-light-grey);
  padding: 28px;
  margin-bottom: 24px;
}

.about-sidebar-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.credentials-list,
.partner-list {
  list-style: none;
}

.credentials-list li,
.partner-list li {
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--light-grey);
}

/* Testimonials Page */
.testimonials-page {
  max-width: 800px;
}

.testimonial-full {
  background: var(--extra-light-grey);
  padding: 32px;
  margin-bottom: 24px;
  border-left: 4px solid var(--accent);
}

.testimonial-full p {
  font-size: 17px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
  max-width: none;
}

.testimonial-full footer {
  font-size: 14px;
  color: var(--dark-grey);
}

.testimonial-full footer strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 4px;
}

/* Contact Page */
.contact-page {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}

.contact-page__form h2,
.contact-page__info h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

.quote-form--full .btn {
  margin-top: 8px;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--mid-grey);
  margin-bottom: 16px;
  line-height: 1.5;
}

.form-disclaimer a {
  color: var(--accent);
  text-decoration: underline;
}

.map-embed {
  border: 1px solid var(--light-grey);
  overflow: hidden;
}

