*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #faf9f7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}
.section-title--light {
  color: #faf9f7;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 166, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }
}

body:hover .cursor-glow {
  opacity: 1;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(250, 249, 247, 0.95), transparent);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .nav {
    padding: 1rem 2rem;
  }
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.nav__logo-icon {
  width: 32px;
  height: 32px;
  color: #1a1a1a;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav__logo-img {
  height: 50px;
  width: auto;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 768px) {
  .nav__logo-img {
    height: 40px;
  }
}
.nav__logo:hover .nav__logo-icon {
  transform: scale(1.1);
}
.nav__logo:hover .nav__logo-img {
  transform: scale(1.05);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #1a1a1a;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:hover::after {
  width: 100%;
}
.nav__cta {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 1rem 2rem;
  background: #1a1a1a;
  color: #faf9f7;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__cta:hover {
  background: #c9a66b;
  color: #1a1a1a;
  transform: translateY(-2px);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__toggle.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}
.nav--scrolled {
  background: rgba(250, 249, 247, 0.98);
  box-shadow: 0 2px 20px rgba(26, 26, 26, 0.08);
  padding: 1rem 4rem;
}
@media (max-width: 768px) {
  .nav--scrolled {
    padding: 1rem 2rem;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #faf9f7;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__content {
  text-align: center;
}
.mobile-menu__link {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.active .mobile-menu__link:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-menu__link:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-menu__link:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-menu.active .mobile-menu__link:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-menu__link:hover {
  color: #c9a66b;
}
.mobile-menu__phone {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 4rem;
  padding: 1rem 4rem;
  background: #1a1a1a;
  color: #faf9f7;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active .mobile-menu__phone {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero__content {
  max-width: 900px;
  z-index: 1;
}
.hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 4rem;
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-line--accent {
  color: #c9a66b;
  font-style: italic;
}
.hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: #6b6b6b;
  max-width: 600px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}
.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b6b6b;
}
@media (max-width: 480px) {
  .hero__meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.hero__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__location svg {
  opacity: 0.6;
}
.hero__divider {
  opacity: 0.3;
}
@media (max-width: 480px) {
  .hero__divider {
    display: none;
  }
}
.hero__scroll {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.hero__scroll-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6b6b6b;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #a8a8a8, transparent);
  position: relative;
}
.hero__scroll-arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s infinite;
}
.hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(201, 166, 107, 0.05) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(201, 166, 107, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, 10px);
    opacity: 0.5;
  }
}
.intro {
  padding: 10rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 968px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.intro__quote {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 968px) {
  .intro__quote {
    order: -1;
  }
}
.intro__blockquote {
  position: relative;
  padding-left: 4rem;
}
.intro__blockquote p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 2rem;
}
.intro__blockquote cite {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b6b6b;
}
.intro__quote-mark {
  position: absolute;
  top: -10px;
  left: 0;
  width: 30px;
  height: 30px;
  color: #c9a66b;
  opacity: 0.5;
}
.intro__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.intro__text p {
  margin-bottom: 2rem;
  color: #6b6b6b;
}
.intro__text p:last-child {
  margin-bottom: 0;
}
.intro__lead {
  font-size: 1.25rem;
  color: #1a1a1a !important;
  font-weight: 400;
}
.intro__highlight {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 2rem 0;
}
.intro__stat {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  color: #c9a66b;
}
.intro__stat-label {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a1a1a;
}
.intro__emphasis {
  font-weight: 500;
  color: #1a1a1a !important;
}
.intro__contact {
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}
.intro__phone {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: #1a1a1a;
  display: inline-block;
  position: relative;
}
.intro__phone::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #c9a66b;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.intro__phone:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.intro__hours {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6b6b6b;
}

.work {
  padding: 10rem 2rem;
  background: #f5f3f0;
}
.work__header {
  max-width: 1400px;
  margin: 0 auto 6rem;
}
.work__philosophy {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #6b6b6b;
  max-width: 600px;
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .work__grid {
    grid-template-columns: 1fr;
  }
}
.work__item {
  grid-column: span 4;
}
@media (max-width: 968px) {
  .work__item {
    grid-column: span 6;
  }
}
@media (max-width: 768px) {
  .work__item {
    grid-column: span 1;
  }
}
.work__item--large {
  grid-column: span 8;
}
@media (max-width: 968px) {
  .work__item--large {
    grid-column: span 12;
  }
}
@media (max-width: 768px) {
  .work__item--large {
    grid-column: span 1;
  }
}
.work__item--large .work__image {
  aspect-ratio: 16/9;
}
.work__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.work__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, hsl(var(--hue, 200), 10%, 25%), hsl(var(--hue, 200), 15%, 35%));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.work__image-placeholder svg {
  width: 40%;
  height: 40%;
  color: rgba(255, 255, 255, 0.1);
}
.work__image:hover .work__image-placeholder {
  transform: scale(1.05);
}
.work__caption p {
  font-size: 0.9375rem;
  color: #6b6b6b;
  line-height: 1.6;
}
.work__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b8935a;
  margin-bottom: 0.5rem;
}
.work__cta {
  max-width: 1400px;
  margin: 6rem auto 0;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.link-arrow svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.link-arrow:hover {
  color: #b8935a;
}
.link-arrow:hover svg {
  transform: translateX(4px);
}
.link-arrow--small {
  font-size: 0.875rem;
}
.link-arrow--small svg {
  width: 16px;
  height: 16px;
}

.services {
  padding: 10rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.services__header {
  margin-bottom: 6rem;
}
.services__philosophy {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #6b6b6b;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
@media (max-width: 968px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__cta {
  margin-top: 6rem;
}

.service {
  padding: 4rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}
.service__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 2rem;
  color: #1a1a1a;
}
.service__icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service:hover .service__icon svg {
  transform: scale(1.1) rotate(-5deg);
}
.service__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.service__text {
  font-size: 0.9375rem;
  color: #6b6b6b;
  line-height: 1.7;
}

.numbers {
  padding: 10rem 2rem;
  background: #1a1a1a;
  color: #faf9f7;
  position: relative;
  overflow: hidden;
}
.numbers__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(201, 166, 107, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 100% 0%, rgba(201, 166, 107, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.numbers__header {
  max-width: 1400px;
  margin: 0 auto 6rem;
  position: relative;
  z-index: 1;
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 968px) {
  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .numbers__grid {
    grid-template-columns: 1fr;
  }
}

.stat {
  text-align: center;
  padding: 4rem;
}
.stat__number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}
.stat__symbol {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #c9a66b;
  margin-left: 0.5rem;
}
.stat__label {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1rem;
  color: rgba(250, 249, 247, 0.9);
}
.stat__detail {
  font-size: 0.875rem;
  color: rgba(250, 249, 247, 0.5);
  margin-top: 0.5rem;
}

.testimonials {
  padding: 10rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.testimonials__header {
  margin-bottom: 6rem;
}
.testimonials__slider {
  overflow: hidden;
}
.testimonials__track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (max-width: 768px) {
  .testimonials__track {
    grid-template-columns: 1fr;
  }
}
.testimonials__sources {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 6rem;
  flex-wrap: wrap;
}
.testimonials__badge {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b6b6b;
}
.testimonials__badge--link {
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonials__badge--link:hover {
  color: #b8935a;
}
.testimonials__divider {
  color: #a8a8a8;
}

.testimonial {
  padding: 4rem;
  background: #f5f3f0;
  border-radius: 8px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 26, 26, 0.08);
}
.testimonial__quote {
  margin-bottom: 2rem;
}
.testimonial__quote p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: #1a1a1a;
}
.testimonial__author {
  font-size: 0.875rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}
.testimonial__author span {
  font-weight: 400;
  color: #6b6b6b;
}

.about {
  padding: 10rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 968px) {
  .about {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.about__visual {
  position: relative;
}
@media (max-width: 968px) {
  .about__visual {
    max-width: 500px;
    margin: 0 auto;
  }
}
.about__images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about__team-photo {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(26, 26, 26, 0.15);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.about__team-photo:hover {
  transform: scale(1.02);
}
.about__logo-photo {
  width: 70%;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(26, 26, 26, 0.15);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.about__logo-photo:hover {
  transform: scale(1.02);
}
.about__image {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f3f0 0%, #faf9f7 100%);
}
.about__image-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__portrait {
  width: 80%;
  height: 80%;
  color: #a8a8a8;
}
.about__badge {
  position: absolute;
  bottom: 10%;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #1a1a1a;
  color: #faf9f7;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.about__badge svg {
  width: 16px;
  height: 16px;
  color: #c9a66b;
}
.about__content .section-title {
  margin-bottom: 2rem;
}
.about__text {
  margin-bottom: 4rem;
}
.about__text p {
  margin-bottom: 2rem;
  color: #6b6b6b;
}
.about__text p:last-child {
  margin-bottom: 0;
}
.about__lead {
  font-size: 1.125rem;
  color: #1a1a1a !important;
}
.about__lead strong {
  font-weight: 600;
}
.about__highlight a {
  color: #b8935a;
  font-weight: 600;
}
.about__highlight a:hover {
  text-decoration: underline;
}
.about__closing {
  font-style: italic;
  color: #1a1a1a !important;
}

.area {
  padding: 10rem 2rem;
  background: #f5f3f0;
  text-align: center;
}
.area__header {
  max-width: 600px;
  margin: 0 auto 6rem;
}
.area__intro {
  font-size: 1.125rem;
  color: #6b6b6b;
}
.area__intro strong {
  color: #1a1a1a;
}
.area__tagline {
  font-size: 1rem;
  color: #6b6b6b;
  margin-top: 1rem;
}
.area__map {
  max-width: 800px;
  margin: 0 auto;
}
.area__svg {
  width: 100%;
  height: auto;
  color: #1a1a1a;
}
.area__label {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 500;
  fill: #6b6b6b;
}
.area__label--main {
  font-size: 14px;
  font-weight: 600;
  fill: #1a1a1a;
}
.area__point {
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.area__point circle {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.area__point:hover circle {
  transform: scale(1.5);
}
.area__point--center circle {
  fill: #c9a66b;
}
.area__point--center circle:first-child {
  fill: rgba(201, 166, 107, 0.2);
}
.area__line {
  stroke-dasharray: 4 2;
  animation: dashMove 20s linear infinite;
}
.area__note {
  margin-top: 4rem;
  font-size: 0.9375rem;
  color: #6b6b6b;
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -100;
  }
}
.contact {
  padding: 10rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact__header {
  margin-bottom: 4rem;
}
.contact__philosophy {
  font-size: 1.125rem;
  color: #6b6b6b;
}
.contact__main {
  margin-bottom: 6rem;
}
.contact__phone {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 500;
  color: #1a1a1a;
  display: inline-block;
  position: relative;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__phone::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c9a66b;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__phone:hover {
  color: #b8935a;
}
.contact__phone:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.contact__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  text-align: left;
}
@media (max-width: 576px) {
  .contact__details {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.contact__hours h3, .contact__address h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 1rem;
}
.contact__hours p, .contact__address p {
  font-size: 0.9375rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.contact__note {
  font-style: italic;
  color: #6b6b6b !important;
}

.closing {
  padding: 10rem 2rem;
  background: #1a1a1a;
  color: #faf9f7;
  text-align: center;
}
.closing__content {
  max-width: 700px;
  margin: 0 auto;
}
.closing__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.closing__text {
  font-size: 1.125rem;
  color: rgba(250, 249, 247, 0.7);
  margin-bottom: 4rem;
}
.closing__trust {
  margin-top: 6rem;
  font-size: 0.875rem;
  color: rgba(250, 249, 247, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.closing__dot {
  opacity: 0.3;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 4rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--primary {
  background: #c9a66b;
  color: #1a1a1a;
}
.btn--primary:hover {
  background: #faf9f7;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.btn svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover svg {
  transform: rotate(-10deg);
}

.footer {
  padding: 6rem 2rem 4rem;
  background: #faf9f7;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto 4rem;
}
@media (max-width: 768px) {
  .footer__main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.footer__logo svg {
  width: 28px;
  height: 28px;
  color: #1a1a1a;
}
.footer__logo-img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(0.3);
  transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .footer__logo-img {
    height: 60px;
  }
}
.footer__logo:hover .footer__logo-img {
  filter: brightness(0) invert(0.5);
}
.footer__tagline {
  font-size: 0.875rem;
  color: #6b6b6b;
}
.footer__phone {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a1a1a;
  display: block;
  margin-bottom: 0.5rem;
}
.footer__phone:hover {
  color: #b8935a;
}
.footer__hours {
  font-size: 0.875rem;
  color: #6b6b6b;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .footer__nav {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.footer__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b6b6b;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__nav a:hover {
  color: #1a1a1a;
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 4rem 0;
}
.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f3f0;
  color: #1a1a1a;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__social-link svg {
  width: 18px;
  height: 18px;
}
.footer__social-link:hover {
  background: #1a1a1a;
  color: #faf9f7;
  transform: translateY(-2px);
}
.footer__bottom {
  text-align: center;
  padding-top: 2rem;
}
.footer__copyright {
  font-size: 0.75rem;
  color: #a8a8a8;
  margin-bottom: 0.5rem;
}
.footer__slogan {
  font-size: 0.875rem;
  font-style: italic;
  color: #6b6b6b;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].revealed, [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="100"] {
  transition-delay: 0.1s;
}

[data-reveal-delay="200"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="300"] {
  transition-delay: 0.3s;
}

[data-reveal-delay="400"] {
  transition-delay: 0.4s;
}

[data-reveal-delay="500"] {
  transition-delay: 0.5s;
}

[data-reveal-delay="600"] {
  transition-delay: 0.6s;
}

[data-reveal-delay="700"] {
  transition-delay: 0.7s;
}

[data-reveal-delay="800"] {
  transition-delay: 0.8s;
}

[data-reveal-delay="900"] {
  transition-delay: 0.9s;
}

[data-reveal-delay="1000"] {
  transition-delay: 1s;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: #c9a66b;
  z-index: 1001;
  transform-origin: left;
  transform: scaleX(0);
}

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