:root {
  --navy: #06213c;
  --navy-2: #0c3155;
  --gold: #d7a33c;
  --gold-2: #bf8422;
  --cream: #fbf6ee;
  --beige: #efe3d2;
  --brown: #6e4d31;
  --ink: #111827;
  --muted: #667085;
  --line: rgba(15, 23, 42, .12);
  --white: #fff;
  --shadow: 0 18px 50px rgba(6, 33, 60, .14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { width: 100%; max-width: 100%; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 200;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { left: 12px; }

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

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.92);
  font-size: 14px;
}
.topbar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.topbar a { overflow-wrap: anywhere; }
.topbar__inner > a { max-width: 100%; white-space: normal; line-height: 1.35; }
.topbar__links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; }
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.pin-icon, .mini-icon, .phone-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}
.pin-icon {
  width: 13px;
  height: 13px;
  border: 2px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.pin-icon::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
}
.mini-icon {
  width: 17px;
  height: 17px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.mini-icon::before, .mini-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 2px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
}
.mini-icon::after {
  top: 7px;
  left: 7px;
  width: 5px;
  height: 2px;
}
.phone-icon {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 4px 4px 8px 4px;
  transform: rotate(45deg);
}
.wa-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex: 0 0 auto;
  fill: currentColor;
  color: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 rgba(6,33,60,.1);
  backdrop-filter: blur(14px);
}
.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand__mark {
  width: 54px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 800;
  letter-spacing: 0;
}
.brand strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 5px;
  color: var(--brown);
  font-size: 14px;
}
.nav { display: flex; align-items: center; gap: 26px; font-weight: 700; color: var(--navy); }
.nav a { padding: 28px 0; }
.nav a:hover { color: var(--gold-2); }
.header-call {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(191,132,34,.25);
  white-space: nowrap;
}
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 8px; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 7px 0; border-radius: 10px; }

.hero {
  position: relative;
  min-height: 620px;
  color: var(--white);
  overflow: hidden;
}
.hero__image, .hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,19,36,.9), rgba(3,19,36,.58) 48%, rgba(3,19,36,.25)), linear-gradient(0deg, rgba(3,19,36,.2), rgba(3,19,36,.2));
}
.hero__content {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
  padding: 72px 0;
}
.hero__copy { min-width: 0; max-width: 100%; }
.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 8vw, 84px);
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.hero h2 {
  margin: 14px 0 10px;
  color: var(--gold);
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1;
}
.hero p { max-width: 620px; font-size: 19px; margin: 0 0 26px; color: rgba(255,255,255,.9); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 12px 22px;
  font-weight: 800;
  border: 1px solid transparent;
  text-align: center;
}
.btn .wa-icon { width: 19px; height: 19px; }
.btn--gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--white); box-shadow: 0 12px 28px rgba(0,0,0,.22); }
.btn--outline { border-color: var(--gold); color: var(--white); background: rgba(255,255,255,.08); }
.btn--outline-dark { border-color: var(--gold); color: var(--navy); background: transparent; }
.btn--light { background: var(--white); color: var(--navy); }
.btn--text { border-color: var(--line); color: var(--navy); background: var(--white); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__badges span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: 14px;
}
.trust-card {
  background: rgba(6,33,60,.88);
  border: 1px solid rgba(215,163,60,.8);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.trust-card div { display: grid; grid-template-columns: 42px 1fr; gap: 2px 12px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.trust-card div:last-child { border-bottom: 0; }
.trust-card span { grid-row: span 2; width: 34px; height: 34px; border: 2px solid var(--gold); color: var(--gold); border-radius: 50%; display: grid; place-items: center; }
.trust-card strong { line-height: 1.2; }
.trust-card small { color: rgba(255,255,255,.82); }

.quick-services { background: var(--white); padding: 26px 0; }
.quick-services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.quick-services article, .service-grid article, .process-grid article, .why-list article, .contact-card, .faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(6,33,60,.07);
}
.quick-services article { display: grid; grid-template-columns: 42px 1fr; gap: 4px 12px; padding: 18px; align-items: center; }
.quick-services span { grid-row: span 2; color: var(--navy); font-size: 32px; line-height: 1; }
.quick-services strong { color: var(--navy); line-height: 1.2; }
.quick-services p { margin: 0; color: var(--muted); line-height: 1.35; }

.section { padding: 82px 0; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head h2, .intro h2, .fabric__content h2, .why h2, .contact h2, .cta-band h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}
.section-head p, .intro p, .fabric__content p, .why p, .contact p, .cta-band p { color: var(--muted); font-size: 17px; }
.intro { background: linear-gradient(180deg, var(--white), var(--cream)); }
.intro__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 46px; align-items: start; }

.gallery-feature { background: var(--cream); }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.photo-card {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}
.photo-card--large { grid-row: auto; min-height: 0; }
.photo-card picture { height: 100%; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  background: rgba(6,33,60,.86);
  color: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 700;
}

.fabric-section { background: var(--white); }
.fabric-choice {
  background:
    linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.72)),
    repeating-linear-gradient(0deg, transparent 0, transparent 56px, rgba(110,77,49,.07) 57px),
    repeating-linear-gradient(90deg, transparent 0, transparent 56px, rgba(110,77,49,.07) 57px),
    #f5ecdf;
  border-top: 1px solid rgba(110,77,49,.08);
  border-bottom: 1px solid rgba(110,77,49,.08);
}
.fabric-choice__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}
.fabric-choice__copy h2 {
  margin: 0 0 14px;
  color: #4c2b20;
  font-size: clamp(36px, 5.2vw, 66px);
  line-height: 1.08;
}
.fabric-choice__copy p {
  max-width: 520px;
  color: #7c6e64;
  font-size: 20px;
}
.dot-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
  color: #4c2b20;
  font-weight: 900;
  font-size: 18px;
}
.dot-list li {
  position: relative;
  padding-left: 34px;
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 17px;
  height: 17px;
  border: 7px solid #ecd6c4;
  border-radius: 50%;
  background: #c98a5d;
}
.swatch-board {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: repeat(8, minmax(38px, 1fr));
  gap: 12px;
  align-items: start;
  padding: 56px 28px 64px;
  border: 1px solid rgba(110,77,49,.12);
  border-radius: 28px;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 47px, rgba(110,77,49,.08) 48px),
    repeating-linear-gradient(90deg, transparent 0, transparent 47px, rgba(110,77,49,.08) 48px),
    #f7efe5;
  box-shadow: 0 28px 70px rgba(76,43,32,.12);
  overflow: hidden;
}
.swatch-column {
  position: relative;
  display: grid;
  gap: 9px;
  justify-items: center;
  padding: 24px 8px 12px;
  border: 1px solid rgba(110,77,49,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.8);
}
.swatch-column::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6e4d31;
  transform: translateX(-50%);
}
.swatch-column:nth-child(2) { transform: translateY(26px); }
.swatch-column:nth-child(3) { transform: translateY(54px); }
.swatch-column:nth-child(4) { transform: translateY(4px); }
.swatch-column:nth-child(5) { transform: translateY(36px); }
.swatch-column:nth-child(6) { transform: translateY(64px); }
.swatch-column:nth-child(7) { transform: translateY(14px); }
.swatch-column:nth-child(8) { transform: translateY(42px); }
.swatch-column span {
  width: 100%;
  max-width: 38px;
  height: 31px;
  border-radius: 5px;
  background: #7b4428;
}
.swatch-column:nth-child(1) span { background: #4c2b20; }
.swatch-column:nth-child(2) span { background: #8a4f2d; }
.swatch-column:nth-child(3) span { background: #b57b4d; }
.swatch-column:nth-child(4) span { background: #314450; }
.swatch-column:nth-child(5) span { background: #176a75; }
.swatch-column:nth-child(6) span { background: #85304a; }
.swatch-column:nth-child(7) span { background: #9b9588; }
.swatch-column:nth-child(8) span { background: #53604a; }
.swatch-label {
  position: absolute;
  left: 30px;
  right: 30%;
  bottom: 36px;
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(110,77,49,.18);
  border-radius: 0 18px 18px 0;
  background: rgba(255,255,255,.86);
  color: #6e4d31;
  font-size: 12px;
}
.fabric__grid, .why__grid, .contact__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 42px; align-items: center; }
.fabric__images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fabric__images picture:first-child { transform: translateY(34px); }
.fabric__images img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { padding-left: 28px; position: relative; color: var(--navy); font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-2); }

.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-grid article { padding: 24px; min-height: 210px; }
.service-grid span { color: var(--gold-2); font-weight: 900; }
.service-grid h3, .process-grid h3, .why-list strong { color: var(--navy); margin: 10px 0 8px; line-height: 1.2; }
.service-grid p, .process-grid p, .why-list span { color: var(--muted); margin: 0; }

.process { background: var(--navy); color: var(--white); }
.process .section-head h2 { color: var(--white); }
.process .section-head p { color: rgba(255,255,255,.76); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.process-grid article { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); padding: 22px; box-shadow: none; }
.process-grid span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--navy); font-weight: 900; }
.process-grid h3 { color: var(--white); }
.process-grid p { color: rgba(255,255,255,.78); }

.why { background: var(--white); }
.why-list { display: grid; gap: 14px; }
.why-list article { padding: 20px; border-left: 4px solid var(--gold); }
.why-list strong { display: block; margin: 0 0 4px; }

.project-gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(6,33,60,.12);
}
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 11px;
  border-radius: var(--radius);
  background: rgba(6,33,60,.88);
  color: var(--white);
  font-weight: 800;
}

.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  padding: 54px 0;
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.8); max-width: 720px; }

.faq { background: var(--white); }
.faq-list { display: grid; gap: 12px; }
.faq details { padding: 0 20px; }
.faq summary { cursor: pointer; padding: 18px 0; color: var(--navy); font-weight: 800; }
.faq p { margin: 0 0 18px; color: var(--muted); }

.contact { background: var(--cream); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.contact-card { padding: 26px; display: grid; gap: 18px; }
.contact-card article { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.contact-card article:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-card span, .contact-card small { display: block; color: var(--muted); }
.contact-card strong, .contact-card a { display: block; color: var(--navy); font-weight: 800; }

.footer {
  background: #04182b;
  color: rgba(255,255,255,.78);
  padding: 50px 0 22px;
}
.footer__grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 42px; }
.brand--footer strong { color: var(--white); }
.brand--footer small { color: var(--gold); }
.footer h3 { margin: 0 0 12px; color: var(--white); }
.footer a, .footer span { display: block; margin: 8px 0; }
.footer__bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #1faa59;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(31,170,89,.35);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(3,19,36,.88);
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-height: 86vh;
  width: min(100%, 980px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 1020px) {
  .topbar__inner { align-items: flex-start; padding: 10px 0; flex-direction: column; gap: 8px; }
  .topbar__links { justify-content: flex-start; gap: 12px; }
  .header__inner { min-height: 72px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; }
  .header-call { display: none; }
  .hero__content { grid-template-columns: 1fr; gap: 28px; }
  .trust-card { max-width: 520px; }
  .quick-services__grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .gallery-grid, .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .intro__grid, .fabric-choice__grid, .fabric__grid, .why__grid, .contact__grid { grid-template-columns: 1fr; }
  .swatch-board { min-height: 390px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1180px); }
  .topbar { font-size: 13px; }
  .topbar__inner > a {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .topbar__inner > a .pin-icon { display: none; }
  .topbar__links { display: none; }
  .brand__mark { width: 46px; height: 40px; font-size: 14px; }
  .brand strong { font-size: 24px; }
  .brand small { font-size: 12px; }
  .hero, .hero__content { min-height: auto; }
  .hero__content { padding: 58px 0 42px; }
  .hero__copy,
  .hero h1,
  .hero h2,
  .hero p,
  .hero__actions,
  .hero__badges,
  .trust-card {
    width: 100%;
    max-width: calc(100vw - 24px);
  }
  .hero h1 { font-size: clamp(34px, 9.5vw, 40px); line-height: 1.02; }
  .hero h2 { max-width: 320px; font-size: 28px; line-height: 1.12; }
  .hero p { max-width: 330px; font-size: 16px; }
  .hero__actions .btn { width: 100%; }
  .trust-card { border-radius: 16px; padding: 14px 18px; }
  .quick-services__grid, .service-grid, .process-grid, .gallery-grid, .footer__grid { grid-template-columns: 1fr; }
  .quick-services article { padding: 16px; }
  .section { padding: 58px 0; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-card, .photo-card--large { aspect-ratio: 16 / 11; min-height: 0; }
  .fabric-choice__copy h2 { font-size: clamp(34px, 12vw, 48px); }
  .fabric-choice__copy p, .dot-list { font-size: 16px; }
  .swatch-board {
    min-height: 300px;
    grid-template-columns: repeat(4, minmax(38px, 1fr));
    gap: 10px;
    padding: 38px 16px 56px;
    border-radius: 18px;
  }
  .swatch-column { padding: 20px 7px 10px; gap: 7px; }
  .swatch-column:nth-child(n) { transform: none; }
  .swatch-column:nth-child(n+5) { display: none; }
  .swatch-column span { height: 24px; }
  .swatch-label { left: 16px; right: 16px; bottom: 16px; height: 38px; font-size: 10px; }
  .fabric__images { grid-template-columns: 1fr; }
  .fabric__images picture:first-child { transform: none; }
  .cta-band__inner, .footer__bottom { flex-direction: column; align-items: flex-start; }
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    min-height: 48px;
    padding: 0;
    font-size: 0;
  }
  .floating-whatsapp .wa-icon { width: 22px; height: 22px; }
}
