@charset "UTF-8";
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.8rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled {
  border-color: var(--sand);
}
nav img {
  width: 11rem;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}
.nav-links a {
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--dark);
}

.nav-cta {
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--dark);
  padding: 0.75rem 1.8rem;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-cta:hover {
  background: var(--accent);
}

.service-container {
  margin-top: 10rem;
}

.services {
  padding: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--sand);
}

.service-card {
  transition: background 0.4s, transform 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.4s;
}
.service-card:hover {
  background: var(--warm-white);
  transform: translateY(-4px);
}
.service-card:hover::before {
  width: 100%;
}
.service-card:hover .service-link {
  gap: 1rem;
}

.service-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 1rem;
}

.service-link {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

:root {
  --cream: #faf8f5;
  --warm-white: #f5f2ed;
  --sand: #e8e0d4;
  --taupe: #b8a99a;
  --brown: #7a6558;
  --dark: #2a2118;
  --accent: #c9a882;
  --accent-light: #e8d5c0;
}

.btn-light, .btn-ghost, .btn-primary {
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  display: inline-block;
  transition: background 0.3s, transform 0.2s, color 0.3s;
}

.btn-primary {
  color: var(--cream);
  background: var(--dark);
  padding: 1.1rem 2.8rem;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--brown);
  background: transparent;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-ghost::after {
  content: "→";
  transition: transform 0.3s;
}
.btn-ghost:hover {
  color: var(--dark);
}
.btn-ghost:hover::after {
  transform: translateX(4px);
}

.btn-light {
  color: var(--dark);
  background: var(--cream);
  padding: 1.1rem 2.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 1;
  border: 1px solid var(--accent);
}
.btn-light:hover {
  background: var(--accent);
  transform: translateY(-2px);
  border: none;
}

.btn-services {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.service-card {
  background: var(--cream);
  padding: 3.5rem 3rem;
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.4s;
}
.service-card:hover {
  background: var(--warm-white);
  transform: translateY(-4px);
}
.service-card:hover::before {
  width: 100%;
}
.service-card:hover .service-link {
  gap: 1rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

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

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: end;
}

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--taupe);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--brown);
  max-width: 45ch;
  align-self: end;
}

footer {
  background: var(--dark);
  padding: 5rem 8vw 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 2rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--taupe);
}

.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--taupe);
}

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.location {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.location .img-map {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 36px;
}
.location .img-map img {
  width: 100%;
}

p,
a {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--taupe);
  text-decoration: none;
  transition: color 0.3s;
}
p:hover,
a:hover {
  color: var(--brown);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.maps-container {
  display: flex;
  gap: 2rem;
  justify-content: left;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 50vh;
    display: none;
  }
  .hero-left {
    padding: 4rem 8vw 8rem;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cta-section {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .img-container img {
    width: 95%;
    justify-content: center;
    align-items: center;
  }
}
@font-face {
  font-family: "Jost";
  src: url("fonts/Jost-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("fonts/Jost-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("fonts/Jost-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

/*# sourceMappingURL=style.css.map */
