:root {
  --black: #070605;
  --espresso: #241812;
  --brown: #3b2a1f;
  --gold: #d6a844;
  --gold-soft: #f3d98c;
  --beige: #f5ead8;
  --cream: #fffaf1;
  --muted: #b7a894;
  --line: rgba(214, 168, 68, .24);
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(7, 6, 5, .92), rgba(7, 6, 5, .64));
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  transition: padding .3s ease, background .3s ease;
}

.site-header.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(7, 6, 5, .94);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  width: fit-content;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand img {
  width: 155px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 22px rgba(214, 168, 68, .16));
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 250, 241, .82);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}

.main-nav a:hover::after { width: 100%; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-gold {
  color: #16100c;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  box-shadow: 0 12px 32px rgba(214, 168, 68, .22);
}
.btn-outline {
  border-color: rgba(245, 234, 216, .56);
  color: var(--cream);
  background: rgba(255, 255, 255, .04);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-small { min-height: 40px; padding: 10px 16px; font-size: 11px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 190px clamp(20px, 6vw, 96px) 80px;
  overflow: hidden;
}

.hero-bg,
.hero-bg::after {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1800&q=82") center/cover;
  transform: scale(1.03);
}

.hero-bg::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 6, 5, .9) 0%, rgba(7, 6, 5, .64) 48%, rgba(7, 6, 5, .34) 100%),
    linear-gradient(0deg, rgba(7, 6, 5, .92), rgba(7, 6, 5, .08) 52%, rgba(7, 6, 5, .66));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 830px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
  margin: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
}

h2 {
  font-size: clamp(34px, 4.4vw, 64px);
  color: var(--cream);
}

h3 {
  font-size: 30px;
  color: var(--gold-soft);
}

.hero-subtitle {
  max-width: 680px;
  margin: 24px 0 34px;
  color: rgba(255, 250, 241, .82);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-panel {
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  bottom: 40px;
  z-index: 2;
  max-width: 360px;
  padding: 24px;
  border-left: 2px solid var(--gold);
  background: rgba(36, 24, 18, .78);
  backdrop-filter: blur(14px);
}

.hero-panel span {
  color: var(--gold-soft);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  line-height: 1.15;
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 6vw, 96px);
  scroll-margin-top: 120px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}

.about {
  background: radial-gradient(circle at top left, rgba(214, 168, 68, .12), transparent 34%), var(--espresso);
}

.about-copy p:not(.eyebrow) {
  color: rgba(255, 250, 241, .78);
  font-size: 17px;
  max-width: 680px;
}

.badge {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, .04);
}

.badge span {
  display: block;
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
}

.badge small { color: var(--muted); }

.about-media {
  position: relative;
  min-height: 520px;
}

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

.about-media img {
  position: relative;
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.why {
  background:
    radial-gradient(circle at 14% 20%, rgba(214, 168, 68, .13), transparent 28%),
    linear-gradient(180deg, #090706, #1a100c 54%, #090706);
}

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

.why-feature,
.why-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 168, 68, .2);
  background:
    linear-gradient(145deg, rgba(255, 250, 241, .07), rgba(255, 250, 241, .015)),
    rgba(8, 6, 5, .78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.why-feature::before,
.why-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(243, 217, 140, .16), transparent 42%);
  opacity: 0;
  transition: opacity .28s ease;
}

.why-feature:hover,
.why-item:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 217, 140, .58);
  background:
    linear-gradient(145deg, rgba(255, 250, 241, .09), rgba(255, 250, 241, .025)),
    rgba(12, 8, 6, .88);
}

.why-feature:hover::before,
.why-item:hover::before {
  opacity: 1;
}

.why-feature {
  grid-row: span 2;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(0deg, rgba(7, 6, 5, .95), rgba(7, 6, 5, .36)),
    url("https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=900&q=80") center/cover;
}

.why-feature span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.why-feature h3 {
  margin-top: 14px;
  color: var(--cream);
  font-size: clamp(32px, 3.2vw, 48px);
}

.why-feature p,
.why-item p {
  color: rgba(255, 250, 241, .72);
}

.why-feature p {
  margin-bottom: 0;
  max-width: 460px;
}

.why-item {
  min-height: 210px;
  padding: 26px;
}

.why-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(214, 168, 68, .42);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  background: rgba(214, 168, 68, .08);
}

.why-item strong {
  display: block;
  margin-top: 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--cream);
  font-size: 30px;
  line-height: 1.1;
}

.why-item p {
  margin: 12px 0 0;
  font-size: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stat-card {
  padding: clamp(34px, 5vw, 62px) 24px;
  text-align: center;
  background: linear-gradient(135deg, #21150f, #090706);
}

.stat-card strong {
  display: block;
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .9;
}

.stat-card span {
  color: var(--beige);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.services, .gallery {
  background: linear-gradient(180deg, #100b09, var(--black));
}

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

.service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(214, 168, 68, .2);
  background: var(--espresso);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  opacity: .78;
  transition: transform .5s ease, opacity .5s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 6, 5, .92), rgba(7, 6, 5, .06));
}

.service-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 28px;
}

.service-card p {
  color: rgba(255, 250, 241, .78);
  margin-bottom: 0;
}

.service-card:hover img {
  transform: scale(1.08);
  opacity: .95;
}

.custom-offer {
  background:
    linear-gradient(rgba(36, 24, 18, .9), rgba(7, 6, 5, .94)),
    url("https://images.unsplash.com/photo-1543353071-873f17a7a088?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}

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

.custom-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(7, 6, 5, .74);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease;
}

.custom-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 217, 140, .7);
}

.custom-card span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.custom-card h3 {
  margin-top: 24px;
  font-size: 31px;
}

.custom-card p { color: rgba(255, 250, 241, .78); }

.gallery-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  border-block: 1px solid rgba(214, 168, 68, .22);
}

.gallery-marquee::before,
.gallery-marquee::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 2;
  width: clamp(54px, 12vw, 150px);
  pointer-events: none;
}

.gallery-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--black), rgba(12, 9, 7, 0));
}

.gallery-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--black), rgba(12, 9, 7, 0));
}

.gallery-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: galleryMarquee 34s linear infinite;
  will-change: transform;
}

.gallery-marquee:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-track img {
  flex: 0 0 clamp(210px, 24vw, 340px);
  width: clamp(210px, 24vw, 340px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(214, 168, 68, .32);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .32);
  filter: saturate(.98) contrast(1.03);
  transition: transform .45s ease, filter .45s ease, box-shadow .45s ease;
}

.gallery-track img:hover {
  transform: translateY(-10px) scale(1.025);
  filter: saturate(1.1) brightness(1.06);
  box-shadow: 0 24px 58px rgba(214, 168, 68, .18);
}

@keyframes galleryMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.testimonials {
  background: var(--beige);
  color: #1a120d;
}

.testimonials h2 { color: #1a120d; }
.testimonials .eyebrow { color: #8a641e; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

blockquote {
  margin: 0;
  padding: 34px;
  border: 1px solid rgba(80, 52, 32, .16);
  background: #fffdf8;
  color: #30231a;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1.2;
  box-shadow: 0 18px 44px rgba(50, 34, 19, .08);
}

cite {
  display: block;
  margin-top: 26px;
  color: #7d5a26;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: clamp(28px, 5vw, 76px);
  background: radial-gradient(circle at bottom right, rgba(214, 168, 68, .14), transparent 36%), var(--espresso);
}

.contact-info p { color: rgba(255, 250, 241, .78); }
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  gap: 18px;
}
.contact-info li {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.contact-info strong {
  display: block;
  color: var(--gold-soft);
  font-size: 12px;
  text-transform: uppercase;
}

.location-block {
  margin-top: 34px;
}

.location-block h3 {
  margin: 6px 0 8px;
  color: var(--cream);
  font-size: clamp(30px, 3vw, 44px);
}

.location-map-card {
  position: relative;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(214, 168, 68, .42);
  border-radius: 8px;
  background: rgba(7, 6, 5, .72);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .28);
}

.location-map-card iframe {
  display: block;
  width: 100%;
  height: 360px;
}

.location-map-button {
  margin-top: 16px;
}

.contact-side {
  display: grid;
  gap: 24px;
  align-content: start;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(7, 6, 5, .62);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(245, 234, 216, .18);
  background: rgba(255, 255, 255, .05);
  color: var(--cream);
  padding: 14px 15px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr .6fr .8fr;
  gap: 36px;
  padding: 54px clamp(20px, 6vw, 96px);
  background: #050403;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 280px;
  height: auto;
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-footer p,
.site-footer span,
.site-footer a {
  display: block;
  color: rgba(255, 250, 241, .72);
  margin: 7px 0;
}

.site-footer h3 {
  margin-bottom: 16px;
  font-size: 26px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #16100c;
  background: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.socials a {
  overflow: hidden;
  background: rgba(255, 250, 241, .06);
  border: 1px solid rgba(214, 168, 68, .24);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.socials a:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 217, 140, .72);
  background: rgba(255, 250, 241, .1);
}

.socials img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 58px;
  height: 58px;
  background: #25d366;
  box-shadow: 0 14px 36px rgba(37, 211, 102, .3);
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 165px auto auto;
    gap: 16px;
  }
  .brand img {
    width: 135px;
    height: auto;
  }
  .main-nav { gap: 14px; font-size: 12px; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 340px;
  }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .menu-toggle { display: block; justify-self: end; }
  .main-nav,
  .header-actions {
    display: none;
  }
  .site-header.open .main-nav,
  .site-header.open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-self: stretch;
  }
  .site-header.open .main-nav {
    flex-direction: column;
    padding-top: 14px;
  }
  .site-header.open .header-actions {
    justify-content: space-between;
    align-items: center;
  }
  .hero {
    min-height: auto;
    padding-top: 156px;
    padding-bottom: 54px;
  }
  .hero-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 36px;
  }
  .section-grid,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .about-media,
  .about-media img {
    min-height: 390px;
    height: 390px;
  }
  .why-grid,
  .stats,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 125px;
    height: auto;
  }
  .hero {
    min-height: 820px;
    padding-inline: 18px;
  }
  h1 { font-size: 45px; }
  .btn { width: 100%; }
  .hero-panel { bottom: 22px; }
  .why-grid,
  .stats,
  .service-grid,
  .custom-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .why-feature { min-height: 360px; }
  .why-item {
    min-height: auto;
    padding: 24px;
  }
  .service-card,
  .service-card img {
    min-height: 330px;
  }
  .contact-form { padding: 22px; }
  blockquote { font-size: 24px; padding: 26px; }
}
