:root {
  --ink: #191514;
  --muted: #6f6863;
  --paper: #fffaf2;
  --soft: #f3ebe0;
  --plum: #4d1730;
  --wine: #7f2038;
  --gold: #b9935a;
  --charcoal: #2f2b2a;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(25, 21, 20, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(25, 21, 20, 0.55);
  font-size: 14px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(25, 21, 20, 0.35);
  backdrop-filter: blur(12px);
}

.brand {
  flex: 0 0 auto;
  order: 1;
}

.brand img {
  width: 150px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  order: 2;
  margin-left: auto;
  font-family: "Cinzel", Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--gold);
}

.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  order: 3;
  gap: 12px;
}

.language-select {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-select::after {
  content: "";
  position: absolute;
  right: 13px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  pointer-events: none;
  transform: rotate(45deg) translateY(-3px);
}

.language-select select {
  min-width: 118px;
  height: 40px;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0 34px 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.language-select select:focus {
  outline: 2px solid rgba(185, 147, 90, 0.8);
  outline-offset: 3px;
}

.language-select option {
  color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/hero-gold-ceiling-drapery.jpeg");
  background-position: center 28%;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.1)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.26) 42%, rgba(0, 0, 0, 0.56));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(58px, 9vw, 112px);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  font-size: 21px;
}

.hero-copy {
  max-width: 610px;
  margin: 18px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 21px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary {
  background: var(--gold);
  color: #15100d;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section {
  padding: clamp(74px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  max-width: 1180px;
  min-width: 0;
  margin: 0 auto;
}

.stack p,
.section-intro p,
.contact p {
  color: var(--muted);
  font-size: 17px;
}

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

.stats div {
  border-left: 3px solid var(--gold);
  padding: 10px 0 10px 18px;
  background: rgba(185, 147, 90, 0.08);
}

.stats strong {
  display: block;
  font-family: "Cinzel", Georgia, serif;
  font-size: 25px;
}

.stats span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 28px -22px -22px 28px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.instagram-band {
  padding: 0 clamp(18px, 5vw, 72px) clamp(72px, 9vw, 118px);
}

.instagram-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  align-items: center;
  max-width: 1180px;
  min-width: 0;
  margin: 0 auto;
  background: var(--white);
  box-shadow: var(--shadow);
}

.instagram-grid > img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.instagram-copy {
  padding: clamp(32px, 6vw, 80px);
  text-align: center;
}

.instagram-copy img {
  width: min(360px, 100%);
  margin: 0 auto 26px;
}

.instagram-copy h2 {
  margin-bottom: 28px;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  box-shadow: 0 12px 34px rgba(25, 21, 20, 0.09);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}

.service-card h3,
.service-card p {
  padding-inline: 22px;
}

.service-card h3 {
  padding-top: 22px;
}

.service-card p {
  margin-bottom: 26px;
  color: var(--muted);
}

.portfolio {
  background: var(--soft);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery a {
  display: block;
  overflow: hidden;
  background: var(--ink);
}

.gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 280ms ease, opacity 280ms ease;
}

.gallery a:hover img {
  transform: scale(1.04);
  opacity: 0.86;
}

.process {
  background: var(--charcoal);
  color: var(--white);
}

.process .section-intro p,
.process-list p {
  color: rgba(255, 255, 255, 0.76);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.process-list article {
  padding: clamp(28px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 72px;
  line-height: 1;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 74px);
  max-width: 1180px;
  min-width: 0;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(25, 21, 20, 0.92), rgba(77, 23, 48, 0.82)),
    url("assets/images/drapery-purple-hall.jpeg") center / cover;
  box-shadow: var(--shadow);
}

.contact-panel p,
.contact-list {
  color: rgba(255, 255, 255, 0.82);
}

.contact-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
  font-weight: 700;
}

.map-card {
  overflow: hidden;
  min-height: 430px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 34px;
  padding: 52px clamp(18px, 5vw, 72px) 28px;
  background: #171312;
  color: var(--white);
}

.footer img {
  width: 230px;
  margin-bottom: 14px;
}

.footer p,
.footer span {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links,
.footer-social {
  display: grid;
  align-content: start;
  gap: 10px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.whatsapp svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    gap: 12px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    padding: 22px;
    background: rgba(25, 21, 20, 0.96);
    margin-left: 0;
  }

  .nav-links.is-open {
    display: grid;
  }

  .section-grid,
  .instagram-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .about-image::before {
    display: none;
  }

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

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

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

@media (max-width: 620px) {
  .topbar {
    display: none;
  }

  .nav {
    padding: 10px 14px;
  }

  .brand img {
    width: 104px;
    height: 44px;
  }

  .nav-actions {
    gap: 8px;
  }

  .language-select select {
    min-width: 104px;
    height: 38px;
    padding-left: 12px;
    padding-right: 30px;
    font-size: 12px;
  }

  .language-select::after {
    right: 11px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-position: 58% top;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 96px;
  }

  .hero-actions,
  .contact-actions,
  .stats {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .instagram-grid > img {
    height: 430px;
  }

  .service-list,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 390px;
  }

  .contact-panel {
    padding: 28px 18px;
  }

  .map-card {
    min-height: 360px;
  }

  .map-card iframe {
    height: 310px;
  }
}
