@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #1a1a1a;
  background: #f6f1ea;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #b08b5b #f6f1ea;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f6f1ea;
}

::-webkit-scrollbar-thumb {
  background: #b08b5b;
  border-radius: 28px;
  border: 2px solid #f6f1ea;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #8c6b42;
}

::-webkit-scrollbar-corner {
  background: #f6f1ea;
}

body {
  cursor: none;
}

.custom-cursor,
.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.custom-cursor {
  width: 7px;
  height: 7px;
  background: #b08b5b;
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.custom-cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid #b08b5b;
  border-radius: 50%;
  opacity: 0;
  transition: width 0.4s ease, height 0.4s ease, border-color 0.3s ease, background 0.3s ease, transform 0.4s ease, opacity 0.3s ease;
}

body.cursor-active .custom-cursor,
body.cursor-active .custom-cursor-ring {
  opacity: 1;
}

body.cursor-hover .custom-cursor {
  width: 5px;
  height: 5px;
  background: #ffffff;
}
body.cursor-hover .custom-cursor-ring {
  width: 50px;
  height: 50px;
  border-color: #b08b5b;
  background: rgba(176, 139, 91, 0.08);
}

body.cursor-click .custom-cursor-ring {
  width: 24px;
  height: 24px;
}

@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }
  .custom-cursor,
  .custom-cursor-ring {
    display: none;
  }
}
#preloader {
  position: fixed;
  inset: 0;
  background: #f8f4ef;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}
.loader-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  letter-spacing: 6px;
  margin-bottom: 10px;
  animation: fadeUp 1.2s ease infinite alternate;
}
.loader-content span {
  font-size: 0.9rem;
  letter-spacing: 2px;
  opacity: 0.7;
  text-transform: uppercase;
}

@keyframes fadeUp {
  from {
    opacity: 0.5;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(-6px);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 60px;
  z-index: 100;
}

.navbar {
  max-width: 1200px;
  margin-inline: auto;
  padding: 14px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #222;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s ease;
}
.logo:hover {
  color: #8c6b42;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  position: relative;
  color: #333;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.nav-links a:hover {
  color: #b08b5b;
}
.nav-links a.active {
  color: #b08b5b;
}
.nav-links a.active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: #b08b5b;
}

.nav-btn {
  padding: 10px 18px;
  border-radius: 12px;
  background: #b08b5b;
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.nav-btn:hover {
  background: #8c6b42;
}

.hamburger {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 10px;
  transition: 0.3s ease;
}
.hamburger.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.hamburger.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 900px) {
  .header {
    padding: 14px 20px;
  }
  .navbar {
    padding: 12px 16px;
  }
  .nav-links {
    position: fixed;
    top: 90px;
    left: 20px;
    right: 20px;
    padding: 24px;
    background: rgba(246, 241, 234, 0.96);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    font-size: 1rem;
  }
  .nav-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
.footer {
  padding: 0 60px;
  background: #222;
  color: #ffffff;
}
.footer .container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 80px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-top h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 2px;
}
.footer-top p {
  max-width: 420px;
  margin: 0;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.7;
  opacity: 0.6;
}

.footer-booking {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, gap 0.3s ease;
}
.footer-booking span {
  color: #b08b5b;
}
.footer-booking:hover {
  color: #b08b5b;
  gap: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding: 40px 0;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-links span {
  margin-bottom: 8px;
  color: #b08b5b;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer-links a {
  color: #ffffff;
  font-size: 0.75rem;
  text-decoration: none;
  opacity: 0.62;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.footer-links a:hover {
  color: #b08b5b;
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 0.7rem;
  opacity: 0.45;
}

@media (max-width: 900px) {
  .footer {
    padding: 0 30px;
  }
  .footer .container {
    padding: 60px 0 24px;
  }
  .footer-top {
    display: block;
    padding-bottom: 30px;
  }
  .footer-top h2 {
    font-size: 2rem;
  }
  .footer-booking {
    margin-top: 24px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    padding: 30px 0;
  }
  .footer-links > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
    padding-top: 20px;
  }
  .footer-bottom p + p {
    margin-top: 8px;
  }
}
.hero {
  padding: 0 60px;
  background-image: linear-gradient(90deg, rgba(18, 14, 11, 0.88) 0%, rgba(18, 14, 11, 0.7) 32%, rgba(18, 14, 11, 0.34) 65%, rgba(18, 14, 11, 0.08) 100%), url("https://images.pexels.com/photos/3993449/pexels-photo-3993449.jpeg?auto=compress&cs=tinysrgb&w=2000");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .container {
  max-width: 1100px;
  min-height: 100vh;
  margin-inline: auto;
  padding: 140px 0 120px;
}

.hero-content {
  min-height: calc(100vh - 260px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 60px;
}

.hero-copy {
  max-width: 650px;
}

.hero-copy .eyebrow {
  display: block;
  margin-bottom: 20px;
  color: #b08b5b;
  font-size: 0.75rem;
  letter-spacing: 3px;
  opacity: 0.6;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #222;
  color: #ffffff;
}
.hero-copy h1 span {
  display: block;
  color: #b08b5b;
  font-style: italic;
}

.hero-description {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  color: #ffffff;
  opacity: 0.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  background: #b08b5b;
  color: #ffffff;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.primary-btn:hover {
  background: #8c6b42;
  transform: translateY(-2px);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border: 1px solid #ffffff;
  border-radius: 12px;
  color: #222;
  color: #ffffff;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.secondary-btn:hover {
  border-color: #b08b5b;
  color: #b08b5b;
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.hero-meta-item span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  opacity: 0.55;
  color: #b08b5b;
}
.hero-meta-item p {
  font-size: 0.95rem;
  color: #222;
  color: #ffffff;
}

.hero-visual {
  position: relative;
  min-height: 600px;
  display: none;
}

.hero-image {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-main {
  top: 0;
  right: 0;
  width: 76%;
  height: 82%;
  background-image: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9");
}

.hero-image-secondary {
  left: 0;
  bottom: 0;
  width: 52%;
  height: 45%;
  background-image: url("https://images.unsplash.com/photo-1519741497674-611481863552");
  border: 8px solid #f6f1ea;
}

.hero-caption {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 230px;
  padding: 18px;
  background: rgba(246, 241, 234, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.hero-caption span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #8c6b42;
}
.hero-caption p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  line-height: 1.25;
}

.intro {
  background: #e5e2d8;
  padding: 0 60px;
}
.intro .container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 120px 0;
}

.intro-content {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 60px;
}

.intro-label {
  padding-top: 10px;
}
.intro-label .eyebrow {
  color: #b08b5b;
}

.intro-copy {
  max-width: 800px;
}

.intro-copy h2 {
  margin-bottom: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
}
.intro-copy h2 em {
  color: #b08b5b;
  font-style: italic;
}
.intro-copy p {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.75;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #b08b5b;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: #222;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.text-link span {
  color: #b08b5b;
  transition: 0.3s ease;
}
.text-link:hover {
  color: #b08b5b;
}
.text-link:hover span {
  transform: translateX(5px);
}

.services-preview {
  background: #f6f1ea;
  padding: 0 60px;
}
.services-preview .container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 120px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}

.section-header-copy {
  max-width: 420px;
}

.section-header-copy p {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.9;
  opacity: 0.7;
}

.services-list {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto 30px;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}
.service-item:hover {
  padding-left: 10px;
}
.service-item:hover .service-arrow {
  color: #b08b5b;
  transform: translateX(5px);
}

.service-number {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #b08b5b;
  opacity: 0.75;
}

.service-content h3 {
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
}
.service-content p {
  max-width: 650px;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.7;
}

.service-price {
  font-size: 0.95rem;
  white-space: nowrap;
  opacity: 0.65;
}

.service-arrow {
  font-size: 1.05rem;
  transition: 0.3s ease;
}

.signature-collection {
  background: #eee5d9;
  padding: 0 60px;
}
.signature-collection .container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 120px 0;
}

.section-header.centered {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 60px;
  text-align: center;
}

.section-header.centered h2 {
  margin-top: 18px;
}
.section-header.centered p {
  max-width: 600px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.9;
  opacity: 0.7;
}

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

.signature-card {
  min-height: 540px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #f6f1ea;
  transition: 0.4s ease;
}
.signature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.signature-card.featured {
  border-color: rgba(176, 139, 91, 0.4);
  transform: translateY(-12px);
}
.signature-card.featured:hover {
  transform: translateY(-18px);
}

.signature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.signature-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #8c6b42;
}

.signature-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  opacity: 0.4;
}

.signature-card-content {
  flex: 1;
  padding-top: 24px;
}

.signature-card-content h3 {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}
.signature-card-content > p {
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.7;
}
.signature-card-content ul {
  padding: 0;
  list-style: none;
}
.signature-card-content li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  opacity: 0.75;
}
.signature-card-content li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #b08b5b;
}

.signature-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.signature-card-footer span {
  font-size: 0.75rem;
  opacity: 0.55;
}
.signature-card-footer strong {
  font-size: 0.95rem;
  font-weight: 500;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  color: #222;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.card-link span {
  color: #b08b5b;
  transition: 0.3s ease;
}
.card-link:hover {
  color: #b08b5b;
}
.card-link:hover span {
  transform: translateX(5px);
}

.collection-link {
  margin-top: 40px;
  text-align: center;
}

.experience {
  background: #f6f1ea;
  padding: 0 60px;
}
.experience .container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 120px 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-image {
  min-height: 600px;
  border-radius: 28px;
  background-image: url("https://images.unsplash.com/photo-1519699047748-de8e457a634e");
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.experience-content {
  max-width: 600px;
}

.experience-content h2 {
  margin: 18px 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}
.experience-content > p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.72;
}

.experience-points {
  margin: 35px 0;
}

.experience-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.experience-point:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.experience-point > span {
  font-size: 0.75rem;
  color: #b08b5b;
}
.experience-point h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 500;
}
.experience-point p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.65;
}

.gallery-preview {
  background: #e5e2d8;
  padding: 0 60px;
}
.gallery-preview .container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 120px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  transition: 0.4s ease;
  filter: grayscale(10%);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.04);
  transition: 0.4s ease;
}
.gallery-item:hover {
  transform: scale(1.015);
  filter: grayscale(0%);
}
.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0);
}

.gallery-item {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.gallery-item:nth-child(1) {
  background-image: url("https://images.pexels.com/photos/3992861/pexels-photo-3992861.jpeg?auto=compress&cs=tinysrgb&w=1600");
}
.gallery-item:nth-child(2) {
  background-image: url("https://images.pexels.com/photos/3356151/pexels-photo-3356151.jpeg?auto=compress&cs=tinysrgb&w=1600");
}
.gallery-item:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1600&q=85");
}
.gallery-item:nth-child(4) {
  background-image: url("https://images.pexels.com/photos/15868761/pexels-photo-15868761.jpeg?auto=compress&cs=tinysrgb&w=1600");
}
.gallery-item:nth-child(5) {
  background-image: url("https://images.pexels.com/photos/35341765/pexels-photo-35341765.jpeg?auto=compress&cs=tinysrgb&w=1600");
}
.gallery-item:nth-child(6) {
  background-image: url("https://matthewjonathan.com/wp-content/uploads/2022/11/balayage-blonde-matthewjonathan-hair-oakville-1-1338x1536.jpg");
}
.gallery-item:nth-child(7) {
  background-image: url("https://images.pexels.com/photos/3993140/pexels-photo-3993140.jpeg?auto=compress&cs=tinysrgb&w=1600");
}
.gallery-item:nth-child(8) {
  background-image: url("https://images.unsplash.com/photo-1595476108010-b4d1f102b1b1?auto=format&fit=crop&w=1600&q=85");
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 3;
  height: 260px;
}

.about {
  background: #f6f1ea;
  padding: 0 60px;
}
.about .container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  max-width: 600px;
  order: 1;
}

.about-content h2 {
  margin: 18px 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}
.about-content p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.72;
}

.about-image {
  order: 2;
  min-height: 600px;
  border-radius: 28px;
  background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1");
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-signature {
  margin-top: 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  opacity: 0.65;
}

.testimonials {
  background: #e5e2d8;
  padding: 0 60px;
}
.testimonials .container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 120px 0;
}

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

.testimonial {
  min-height: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-left: 2px solid rgba(176, 139, 91, 0.4);
  transition: 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
}

.testimonial-mark {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 0.7;
  color: #b08b5b;
  opacity: 0.6;
}

.testimonial blockquote {
  flex: 1;
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #222;
}
.testimonial > span {
  font-size: 0.75rem;
  opacity: 0.6;
}

.testimonial.featured {
  border-left-color: #b08b5b;
  background: rgba(246, 241, 234, 0.5);
  transform: translateY(-10px);
}

.consultation {
  background: #eee5d9;
  padding: 0 60px;
}
.consultation .container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 90px 0;
}

.consultation-inner {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  align-items: center;
}

.consultation-inner h2 {
  max-width: 650px;
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
}

.consultation-copy {
  max-width: 500px;
}

.consultation-copy p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.9;
  opacity: 0.72;
}

.cta {
  background: #f6f1ea;
  padding: 120px 60px;
}

.cta-inner {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.cta-inner h2 {
  margin: 18px 0 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
}
.cta-inner p {
  max-width: 620px;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.9;
  opacity: 0.7;
}

.cta-button {
  display: inline-flex;
  margin-top: 35px;
  padding: 14px 28px;
  border-radius: 14px;
  background: #b08b5b;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}
.cta-button:hover {
  background: #8c6b42;
  transform: translateY(-2px);
}

.contact {
  background: #e5e2d8;
  padding: 0 60px;
}
.contact .container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-content {
  max-width: 520px;
}

.contact-content h2 {
  margin: 18px 0 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}
.contact-content > p {
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.info-block span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  opacity: 0.55;
}
.info-block p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}

.contact-map {
  width: 100%;
}

.map-placeholder {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: url("/assets/img/map.png") no-repeat center/cover;
  color: rgba(0, 0, 0, 0.45);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .hero {
    padding: 0 30px;
  }
  .hero .container {
    min-height: auto;
    padding: 140px 0 80px;
  }
  .hero-content {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .hero-copy {
    max-width: 100%;
    text-align: center;
  }
  .hero-copy .eyebrow {
    margin-bottom: 18px;
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
  .hero-copy h1 {
    margin-bottom: 20px;
    font-size: 2.4rem;
    line-height: 1.05;
    letter-spacing: 0;
  }
  .hero-copy h1 span {
    display: inline;
  }
  .hero-description {
    margin-inline: auto;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.7;
  }
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .hero-meta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero-meta-item {
    min-width: 120px;
  }
  .hero-visual {
    width: 100%;
    min-height: 400px;
  }
  .hero-image-main {
    width: 82%;
    height: 82%;
  }
  .hero-image-secondary {
    width: 55%;
    height: 42%;
  }
  .hero-caption {
    right: 0;
    bottom: 0;
    width: 190px;
    padding: 14px;
  }
  .intro {
    padding: 0 30px;
  }
  .intro .container {
    padding: 80px 0;
  }
  .intro-content {
    display: block;
  }
  .intro-label {
    margin-bottom: 30px;
  }
  .intro-copy h2 {
    font-size: 2.2rem;
  }
  .intro-copy p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .services-preview {
    padding: 0 30px;
  }
  .services-preview .container {
    padding: 80px 0;
  }
  .section-header {
    display: block;
    margin-bottom: 40px;
  }
  .section-header h2 {
    margin-top: 14px;
    font-size: 2.2rem;
  }
  .section-header-copy {
    margin-top: 20px;
  }
  .service-item {
    grid-template-columns: 40px 1fr 25px;
    gap: 12px;
    padding: 24px 0;
  }
  .service-number {
    align-self: start;
  }
  .service-content h3 {
    font-size: 1.3rem;
  }
  .service-content p {
    font-size: 0.95rem;
  }
  .service-price {
    grid-column: 2;
    font-size: 0.75rem;
  }
  .service-arrow {
    grid-column: 3;
    grid-row: 1/span 2;
  }
  .signature-collection {
    padding: 0 30px;
  }
  .signature-collection .container {
    padding: 80px 0;
  }
  .section-header.centered {
    margin-bottom: 40px;
  }
  .section-header.centered h2 {
    font-size: 2.2rem;
  }
  .signature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .signature-card {
    min-height: auto;
    padding: 24px;
  }
  .signature-card.featured {
    transform: none;
  }
  .signature-card.featured:hover {
    transform: translateY(-6px);
  }
  .signature-card-content h3 {
    font-size: 1.8rem;
  }
  .experience {
    padding: 0 30px;
  }
  .experience .container {
    padding: 80px 0;
  }
  .experience-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .experience-image {
    width: 100%;
    min-height: 380px;
  }
  .experience-content {
    max-width: 100%;
  }
  .experience-content h2 {
    font-size: 2.2rem;
  }
  .experience-content > p {
    font-size: 1rem;
  }
  .gallery-preview {
    padding: 0 30px;
  }
  .gallery-preview .container {
    padding: 80px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 12px;
  }
  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    height: auto;
  }
  .about {
    padding: 0 30px;
  }
  .about .container {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .about-content {
    max-width: 100%;
    order: 1;
  }
  .about-content h2 {
    font-size: 2.2rem;
  }
  .about-content p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .about-image {
    order: 2;
    width: 100%;
    min-height: 380px;
  }
  .testimonials {
    padding: 0 30px;
  }
  .testimonials .container {
    padding: 80px 0;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial {
    min-height: auto;
    padding: 24px;
  }
  .testimonial.featured {
    transform: none;
  }
  .testimonial blockquote {
    font-size: 1.3rem;
  }
  .consultation {
    padding: 0 30px;
  }
  .consultation .container {
    padding: 80px 0;
  }
  .consultation-inner {
    display: block;
  }
  .consultation-inner h2 {
    font-size: 2.2rem;
  }
  .consultation-copy {
    margin-top: 30px;
  }
  .consultation-copy p {
    font-size: 1rem;
  }
  .cta {
    padding: 90px 30px;
  }
  .cta-inner h2 {
    font-size: 2.2rem;
  }
  .cta-inner p {
    font-size: 1rem;
  }
  .contact {
    padding: 0 30px;
  }
  .contact .container {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .contact-content {
    max-width: 100%;
  }
  .contact-content h2 {
    font-size: 2.2rem;
  }
  .contact-content > p {
    font-size: 1rem;
  }
  .map-placeholder {
    min-height: 300px;
  }
}

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