:root {
  --brown: #5a3a22;
  --brown-dark: #2a1b12;
  --gold: #e4b95b;
  --ink: #15110e;
  --paper: #f7f1e7;
  --cream: #fffaf1;
  --muted: #76685d;
  --line: rgba(228, 185, 91, .28);
  --white: #fff;
  --shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  background: #000;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1170px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 990px; text-align: center; }
.sr-only,
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 26px;
  border: 0;
  border-radius: 4px;
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); background: #f0c96f; }
.button--ghost { background: transparent; border: 1px solid rgba(255,255,255,.72); color: var(--white); }
.button--ghost:hover { background: var(--white); color: var(--brown); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brown);
  box-shadow: 0 10px 25px rgba(0,0,0,.16);
}
.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { position: relative; display: block; width: 148px; flex: 0 0 148px; }
.brand img { width: 148px; height: auto; }
.brand__light { display: none; }
.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font-family: Quicksand, Arial, sans-serif;
  font-weight: 700;
}
.menu > a,
.menu__item > a {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 0 16px;
  color: var(--white);
}
.menu a:hover,
.menu .is-active > a,
.menu > .is-active { color: var(--gold); }
.menu__item { position: relative; }
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 10px 0;
  background: var(--brown-dark);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease;
}
.submenu a {
  display: block;
  padding: 11px 18px;
  color: #f8ead2;
  font-size: 14px;
}
.submenu a:hover { color: var(--gold); background: rgba(255,255,255,.04); }
.menu__item:hover .submenu { opacity: 1; transform: translateY(0); visibility: visible; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.nav-toggle span { display: block; height: 2px; margin: 7px 7px; background: var(--white); }

.flash {
  margin-top: 18px;
  padding: 13px 16px;
  color: #16351e;
  background: #e9f8ed;
  border-left: 4px solid #2f9b55;
}
.flash--error { color: #4e100d; background: #fff0ed; border-left-color: #bf2d23; }

.hero {
  position: relative;
  min-height: min(64vw, 680px);
  background: #050403;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.hero__slide.is-active { opacity: 1; z-index: 1; }
.hero__media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px;
  background: #120d09;
}
.hero__media--1 { grid-template-columns: 1fr; }
.hero__media--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,7,5,.92) 0%, rgba(10,7,5,.62) 37%, rgba(10,7,5,.16) 72%, rgba(10,7,5,.34) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  min-height: min(64vw, 680px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}
.hero__content p {
  max-width: 520px;
  margin: 0 0 10px;
  color: var(--gold);
  font-family: Quicksand, Arial, sans-serif;
  font-size: clamp(18px, 2.3vw, 30px);
  font-weight: 700;
}
.hero__content h1 {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-family: Quicksand, Arial, sans-serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1;
}
.hero__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero__dots button {
  width: 12px;
  height: 12px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.hero__dots button.is-active { background: var(--gold); border-color: var(--gold); }
.hero__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 54px;
  padding: 0 0 5px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 4px;
  background: rgba(14,9,6,.52);
  color: var(--white);
  font-size: 40px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}
.hero__arrow:hover { background: var(--gold); color: var(--brown-dark); }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }

.band {
  position: relative;
  padding: 70px 0;
  background: #101010;
}
.band--brown { background: var(--brown); }
.welcome {
  padding: 74px 0 64px;
  background-image: linear-gradient(rgba(90,58,34,.96), rgba(90,58,34,.96));
}
.row-mark {
  width: 55px;
  height: 55px;
  margin: 0 auto 24px;
  background: url("../images/icon1.png") center / contain no-repeat;
  opacity: .9;
}
.welcome h2,
.contact-hero h1,
.page-hero h1 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: Quicksand, Arial, sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.16;
}
.welcome p {
  margin: 0 auto 18px;
  color: #fff6e7;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #050505;
}
.gallery a {
  min-height: 230px;
  overflow: hidden;
  background: #111;
}
.gallery img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform .3s ease, opacity .3s ease;
}
.gallery a:hover img { transform: scale(1.04); opacity: .86; }
.concept-gallery { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.concept-gallery a,
.concept-gallery img { min-height: 170px; }

.concept-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 76px 0;
}
.concept-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.concept-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.concept-card div { padding: 25px; }
.concept-card span {
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.concept-card h3 {
  margin: 7px 0 12px;
  font-family: Quicksand, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}
.concept-card p { margin: 0; color: var(--muted); }

.newsletter {
  background: #15100c;
  border-top: 1px solid rgba(228,185,91,.18);
}
.newsletter h4 {
  margin: 0 0 26px;
  font-family: Quicksand, Arial, sans-serif;
  color: var(--white);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
}
.newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto;
}
.newsletter__form input {
  flex: 1;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 0 15px;
  font: inherit;
}
.newsletter__form button {
  min-height: 48px;
  border: 0;
  border-radius: 4px;
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: 700;
  padding: 0 24px;
  cursor: pointer;
}

.page-hero {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(rgba(19,12,7,.72), rgba(19,12,7,.72)), url("../images/page-title.jpg") center / cover;
}
.page-hero p { margin: 0; color: #f3d79b; }
.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 58px;
  padding: 66px 0 78px;
}
.page-content,
.concept-copy {
  color: #fff6e7;
  font-size: 18px;
}
.page-content h2 {
  margin: 28px 0 10px;
  color: var(--gold);
  font-family: Quicksand, Arial, sans-serif;
  font-size: 28px;
}
.page-content p,
.concept-copy p {
  margin: 0 0 18px;
}
.side-menu {
  align-self: start;
  display: grid;
  background: var(--brown);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.side-menu a {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #fff1d9;
  font-family: Quicksand, Arial, sans-serif;
  font-weight: 700;
}
.side-menu a:last-child { border-bottom: 0; }
.side-menu a:hover,
.side-menu .is-active { background: var(--gold); color: var(--brown-dark); }

.concept-page { padding: 60px 0 42px; }
.concept-copy {
  max-width: 970px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 0 48px;
  align-items: start;
}
.concept-lead { grid-row: 1 / span 20; margin: 0; }
.concept-lead img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.concept-copy strong { color: var(--gold); font-size: 21px; }
.concept-features {
  max-width: 970px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.concept-features div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 70px;
  padding: 15px 17px;
  border: 1px solid rgba(224,178,77,.34);
  border-radius: 6px;
  background: #17110d;
  color: #fff4df;
}
.concept-features span { color: var(--gold); font-size: 22px; }

.contact-hero { padding-top: 74px; text-align: center; }
.office-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.office-card {
  padding: 30px;
  border: 1px solid rgba(224,178,77,.38);
  border-radius: 6px;
  background: rgba(27,17,11,.28);
}
.office-group h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: Quicksand, Arial, sans-serif;
  font-size: 29px;
}
.office-grid {
  display: grid;
  gap: 12px;
}
.office-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  min-height: 76px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: left;
}
.office-item:first-child { border-top: 0; }
.office-item p {
  margin: 0;
  color: #fff4df;
  font-size: 18px;
  line-height: 1.45;
}
.office-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 68px 0;
}
.contact-panel h2 {
  margin: 0 0 20px;
  color: var(--gold);
  font-family: Quicksand, Arial, sans-serif;
  font-size: 32px;
}
.contact-panel iframe {
  width: 100%;
  min-height: 472px;
  border: 0;
  border-radius: 6px;
  background: #1d1712;
}
.form-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 6px;
}
.page-form { margin-top: 32px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-card input,
.form-card textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dbcbb6;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
}
.form-card textarea { padding-top: 12px; resize: vertical; }
.accept {
  display: block;
  color: #5d5045;
  font-size: 13px;
}
.accept input { width: auto; min-height: auto; margin-right: 8px; }

.promo {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  width: min(360px, calc(100vw - 44px));
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 18px 60px rgba(0,0,0,.32);
  overflow: hidden;
}
.promo img { width: 100%; height: auto; }
.promo button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--brown-dark);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}
.promo.is-hidden { display: none; }

.footer {
  background: var(--brown);
  color: #fff1d9;
}
.footer-wave {
  height: 34px;
  background: linear-gradient(135deg, transparent 50%, var(--brown) 50%) left / 72px 34px repeat-x;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding: 38px 0 32px;
}
.footer img { max-width: 148px; margin-bottom: 16px; }
.footer h5 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: Quicksand, Arial, sans-serif;
  font-size: 18px;
}
.footer p { margin: 0 0 12px; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
}
.footer__bottom a { color: var(--gold); font-weight: 700; }
.whatsapp {
  position: fixed;
  z-index: 70;
  right: 18px;
  top: 210px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.whatsapp span {
  display: none;
  padding: 8px 12px;
  border-radius: 6px;
  background: #25d366;
  color: var(--white);
}
.whatsapp b {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 24px;
}
.whatsapp:hover span { display: block; }
.not-found { padding: 90px 0; text-align: center; }

@media (max-width: 980px) {
  .nav { min-height: 78px; }
  .brand,
  .brand img { width: 126px; flex-basis: 126px; }
  .nav-toggle { display: block; }
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--brown-dark);
  }
  .menu.is-open { display: flex; }
  .menu > a,
  .menu__item > a { min-height: auto; padding: 14px 24px; }
  .submenu {
    position: static;
    opacity: 1;
    transform: none;
    visibility: visible;
    box-shadow: none;
    border-top: 1px solid rgba(255,255,255,.1);
    background: rgba(0,0,0,.14);
  }
  .hero,
  .hero__content { min-height: 72vw; }
  .gallery,
  .concept-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .concept-strip,
  .page-layout,
  .office-grid,
  .contact-panel,
  .footer__inner { grid-template-columns: 1fr; }
  .office-group { grid-template-columns: 1fr; }
  .concept-copy { grid-template-columns: minmax(230px, 320px) minmax(0, 1fr); gap: 0 30px; }
  .concept-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-layout { gap: 28px; }
  .side-menu { order: -1; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 26px, 1170px); }
  .hero,
  .hero__content { min-height: 132vw; max-height: 720px; }
  .hero__media { grid-template-columns: 1fr; }
  .hero__media img { display: none; }
  .hero__media img:first-child { display: block; }
  .hero__veil { background: linear-gradient(0deg, rgba(10,7,5,.88) 0%, rgba(10,7,5,.22) 72%, rgba(10,7,5,.36) 100%); }
  .hero__content { justify-content: flex-end; padding-bottom: 92px; }
  .hero__content h1 { font-size: 42px; }
  .hero__arrow { width: 38px; height: 46px; font-size: 34px; }
  .hero__arrow--prev { left: 10px; }
  .hero__arrow--next { right: 10px; }
  .band { padding: 52px 0; }
  .gallery,
  .concept-gallery,
  .form-grid { grid-template-columns: 1fr; }
  .concept-copy { display: block; }
  .concept-lead { margin-bottom: 30px; }
  .concept-features { grid-template-columns: 1fr; }
  .gallery a,
  .gallery img,
  .concept-gallery a,
  .concept-gallery img { min-height: 260px; }
  .newsletter__form { flex-direction: column; }
  .page-hero { min-height: 250px; }
  .contact-panel iframe { min-height: 340px; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp { top: auto; bottom: 18px; }
  .promo { left: 13px; right: 13px; bottom: 82px; width: auto; }
}
