* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
      user-select: none;

}
:root {
  --gold: #b4862f;
  --green: #526d2d;
  --dark: #1c2118;
  --cream: #f5f2eb;
  --white: #fff;
  --text: #292a26;
  --muted: #72756d;
  --line: #dedbd2;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
body.no-scroll {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1240px, calc(100% - 48px));
  margin: auto;
}
.section {
  padding: 110px 0;
}
.section-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-kicker.light {
  color: #c9a15c;
}
h1,
h2,
h3 {
  line-height: 1.08;
}
h2 {
  font: 600 clamp(38px, 5vw, 68px)/1.05 var(--serif);
  letter-spacing: -0.035em;
}
.lead {
  font-size: 17px;
  margin-top: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  transition: 0.3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.site-header.scrolled .logo-top {
  opacity: 0;
  visibility: hidden;
}

.site-header.scrolled .logo-scroll {
  opacity: 1;
  visibility: visible;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  width: 125px;
  display: block;
  position: relative;
  background: transparent;
  padding: 0;
}

.brand .logo {
  width: 100%;
  height: auto;
  transition: opacity .25s ease, transform .25s ease;
}

.logo-scroll {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}
.main-nav a {
  font-size: 16px;
  font-weight: 600;
  position: relative;
}
.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.25s;
}
.main-nav a:hover:after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.language-switch {
  display: flex;
  gap: 3px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 3px;
  border-radius: 30px;
  background: #fff;
}
/* .language-switch a{
  font-size: 13px;

} */

.lang {
  border: 0;
  background: transparent;
  padding: 5px 8px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}
.lang.active {
  background: var(--green);
  color: #fff;
}
.nav-phone {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 36px;
  height: 36px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  margin: 6px 0;
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2200&q=90")
    center/cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 24, 17, 0.76),
    rgba(20, 24, 17, 0.35),
    rgba(20, 24, 17, 0.08)
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
}
.hero .eyebrow {
  font-size: 16px;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ddc38e;
}
.hero h1 {
  font: 500 clamp(60px, 9vw, 128px)/0.91 var(--serif);
  letter-spacing: -0.055em;
  max-width: 950px;
}

.hero h1 em {
  /* margin-top:15px; */
  font-style: italic;
  color: #d1a75c;
}

.hero-text {
  max-width: 540px;
  font-size: 17px;
  margin: 34px 0 36px;
  color: rgba(255, 255, 255, 0.82);
}
.hero-buttons {
  display: flex;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: 0.25s;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover {
  background: #9d7426;
  transform: translateY(-2px);
}
.btn-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: transparent;
}
.btn-light:hover {
  background: #fff;
  color: var(--dark);
}
.btn-dark {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.scroll-hint {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-hint span {
  width: 1px;
  height: 42px;
  background: #fff;
  opacity: 0.7;
}

/* Intro */
.intro {
  background: var(--cream);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
}

/* Services */
.section-dark {
  background: var(--dark);
  color: #fff;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 55px;
}
.section-heading > p {
  max-width: 360px;
  color: #aeb3a7;
  font-size: 15px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.service-card {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
  transition: 0.3s;
}
.service-card:hover {
  background: #252b20;
}
.service-card.featured {
  background: var(--green);
}
.service-card > span {
  font-size: 11px;
  color: #a6ad9c;
  letter-spacing: 0.1em;
}
.service-card h3 {
  font: 500 30px var(--serif);
  margin: 65px 0 15px;
}
.service-card p {
  font-size: 14px;
  color: #aeb3a7;
  max-width: 300px;
}
.service-card a {
  position: absolute;
  right: 28px;
  bottom: 25px;
  font-size: 25px;
  color: #d0aa66;
  transition: 0.25s;
}
.service-card:hover a {
  transform: translate(4px, -4px);
}

/* Gallery */
.gallery {
  background: #fff;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter {
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 14px;
  font-size: 16px;
  color: var(--muted);
  transition: 0.2s;
}
.filter.active,
.filter:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-auto-rows: 280px;
  gap: 14px;
}
.gallery-item {
  border: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #ddd;
  text-align: left;
}
.gallery-item.large {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.gallery-item:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.65));
  opacity: 0;
  transition: 0.3s;
}
.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:hover:after,
.gallery-item:hover span {
  opacity: 1;
}
.gallery-item:hover span {
  transform: translateY(0);
}
.gallery-item.hidden {
  display: none;
}

/* About */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image > img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  right: -30px;
  bottom: 30px;
  width: 150px;
  height: 150px;
  background: var(--green);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-badge strong {
  font: 600 48px var(--serif);
  color: #d2a85c;
  line-height: 1;
}
.about-badge span {
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.18em;
  margin-top: 8px;
}
.about-copy > p:not(.section-kicker) {
  font-size: 16px;
  color: var(--muted);
  margin-top: 25px;
  max-width: 560px;
}
.stats {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stats div {
  display: flex;
  flex-direction: column;
}
.stats strong {
  font: 600 34px var(--serif);
  color: var(--green);
}
.stats span {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

/* CTA */
.cta {
  background: var(--green);
  color: #fff;
  padding: 105px 0;
}
.cta-inner {
  text-align: center;
}
.cta h2 {
  font-size: clamp(48px, 7vw, 90px);
  margin-bottom: 38px;
}
.cta h2 em {
  color: #d3ab65;
}
.cta .section-kicker {
  margin-bottom: 22px;
}

/* Contact */
.contact {
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}
.contact-details {
  display: grid;
  gap: 22px;
  margin-top: 45px;
}
.contact-details a,
.contact-details div {
  display: flex;
  flex-direction: column;
  font-size: 16px;
}
.contact-details small {
  font-size: 14px;
  letter-spacing: 0.17em;
  color: var(--gold);
  margin-bottom: 3px;
}
.contact-form {
  display: grid;
  gap: 24px;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form label span {
  font-size: 16px;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  outline: none;
  background: transparent;
  color: var(--text);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}
.form-message {
  font-size: 12px;
  color: var(--green);
}

/* Footer */
.footer {
  background: #161a13;
  color: #fff;
  padding: 55px 0 25px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 45px;
}
.footer-logo {
  width: 150px;
  padding: 5px 8px;
}
.footer-links {
  display: flex;
  gap: 28px;
  font-size: 16px;
  color: #c2c5bc;
}
.footer-links a:hover {
  color: #d1a75c;
}
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #7e8478;
}

/* Modal */
.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(12, 15, 11, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
.modal.open {
  display: flex;
}
.modal img {
  max-width: min(1100px, 90vw);
  max-height: 82vh;
  object-fit: contain;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 28px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 42px;
  font-weight: 200;
}
#modalTitle {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* Responsive */
@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }
  .nav-phone {
    display: none;
  }
  .intro-grid,
  .about-grid {
    gap: 55px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 300px;
  }
  .gallery-item.large {
    grid-row: span 1;
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
}
@media (max-width: 800px) {
  .container {
    width: min(100% - 32px, 1240px);
  }
  .site-header {
    padding: 10px 0;
  }
  .brand {
    width: 105px;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid #eee;
  }
  .main-nav a:last-child {
    border-bottom: 0;
  }
  .nav-actions {
    margin-left: auto;
  }
  .language-switch {
    display: none;
  }
  .hero {
    min-height: 650px;
  }
  .hero h1 {
    font-size: clamp(54px, 15vw, 88px);
  }
  .hero-text {
    font-size: 16px;
  }
  .section {
    padding: 75px 0;
  }
  .intro-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .section-heading {
    display: block;
    margin-bottom: 40px;
  }
  .section-heading > p {
    margin-top: 20px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 240px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
  .about-image > img {
    height: 500px;
  }
  .about-badge {
    right: 15px;
  }
  .stats {
    gap: 25px;
    flex-wrap: wrap;
  }
  .contact-grid {
    gap: 60px;
  }
  .footer-top {
    display: grid;
    gap: 30px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 15px 25px;
  }
}
@media (max-width: 520px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .filters {
    margin-top: 25px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery-item.wide {
    grid-column: auto;
  }
  .modal {
    padding: 20px;
  }
  .modal img {
    max-width: 96vw;
    max-height: 78vh;
  }
}
