@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;
  }
}
main {
  overflow: hidden;
}

.page-hero {
  padding: 280px 60px 120px;
  background-image: linear-gradient(90deg, rgba(28, 22, 18, 0.88) 0%, rgba(28, 22, 18, 0.68) 32%, rgba(28, 22, 18, 0.35) 62%, rgba(28, 22, 18, 0.08) 100%), url("https://images.pexels.com/photos/3992863/pexels-photo-3992863.jpeg?auto=compress&cs=tinysrgb&w=2000");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero .container {
  max-width: 1100px;
  margin-inline: auto;
}

.page-hero-content {
  max-width: 900px;
}

.eyebrow {
  display: block;
  color: #b08b5b;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 6px;
  line-height: 1.4;
  text-transform: uppercase;
}

.page-hero-content .eyebrow {
  margin-bottom: 20px;
}
.page-hero-content h1 {
  max-width: 820px;
  margin: 0 0 24px;
  color: #222;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.05;
}
.page-hero-content h1 span {
  color: #b08b5b;
}
.page-hero-content p {
  max-width: 600px;
  margin: 0;
  color: #1a1a1a;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.68;
}
.page-hero-content .text-link {
  color: #ffffff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  color: #222;
  font-size: 0.75rem;
  letter-spacing: 2px;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, gap 0.3s ease;
}
.text-link span {
  color: #b08b5b;
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.text-link:hover {
  color: #8c6b42;
  gap: 16px;
}
.text-link:hover span {
  transform: translateY(4px);
}

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

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 90px;
}
.section-header.centered {
  display: block;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header .eyebrow {
  margin-bottom: 16px;
}
.section-header h2 {
  margin: 0;
  color: #222;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
}
.section-header p {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.68;
}
.section-header .text-link {
  color: #ffffff;
}

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

.service-categories {
  display: flex;
  flex-direction: column;
}

.service-category {
  position: relative;
  margin-bottom: 90px;
  scroll-margin-top: 150px;
}
.service-category:last-child {
  margin-bottom: 0;
}
.service-category::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 60px;
  background: rgba(0, 0, 0, 0.05);
}
.service-category:last-child::after {
  display: none;
}

.service-category-header {
  margin-bottom: 28px;
}
.service-category-header .eyebrow {
  margin-bottom: 12px;
  letter-spacing: 3px;
}
.service-category-header h3 {
  margin: 0;
  color: #222;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.1;
}

.service-list {
  display: flex;
  flex-direction: column;
}

.service-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  transition: padding 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.service-list-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.service-list-item:hover {
  padding-left: 16px;
  padding-right: 16px;
  border-color: rgba(176, 139, 91, 0.4);
}

.service-list-content {
  min-width: 0;
}
.service-list-content h4 {
  margin: 0 0 8px;
  color: #222;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.service-list-content p {
  max-width: 700px;
  margin: 0;
  color: #1a1a1a;
  font-size: 0.95rem;
  line-height: 1.75;
  opacity: 0.62;
}

.service-list-item:hover .service-list-content h4 {
  color: #8c6b42;
}

.service-price {
  display: block;
  color: #8c6b42;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-list-item:hover .service-price {
  color: #b08b5b;
  transform: translateX(-5px);
}

.services-note {
  max-width: 760px;
  margin: 40px auto 0;
  padding-top: 10px;
  text-align: center;
}
.services-note p {
  margin: 0;
  color: #1a1a1a;
  font-size: 0.7rem;
  line-height: 1.8;
  opacity: 0.55;
}

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

.signature-collection .section-header {
  margin-bottom: 60px;
}
.signature-collection .section-header h2 {
  margin-bottom: 18px;
}
.signature-collection .section-header p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.signature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.signature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: rgba(176, 139, 91, 0.4);
}
.signature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(176, 139, 91, 0.4);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.signature-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.signature-label {
  color: #b08b5b;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.4;
  text-transform: uppercase;
}

.signature-number {
  color: #8c6b42;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}

.signature-card-content h3 {
  margin: 0 0 14px;
  color: #222;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1.1;
}
.signature-card-content p {
  min-height: 58px;
  margin: 0 0 28px;
  color: #1a1a1a;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.68;
}
.signature-card-content ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 24px 0;
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.signature-card-content li {
  position: relative;
  padding-left: 20px;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}
.signature-card-content li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: #b08b5b;
  font-size: 0.65rem;
}

.signature-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding-top: 28px;
}
.signature-card-footer span {
  color: #1a1a1a;
  font-size: 0.75rem;
  line-height: 1.4;
  opacity: 0.65;
  white-space: nowrap;
}
.signature-card-footer strong {
  color: #8c6b42;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.card-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 20px;
  color: #222;
  border: 1px solid rgba(176, 139, 91, 0.4);
  border-radius: 10px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, gap 0.3s ease;
}
.card-link span {
  color: #b08b5b;
  transition: transform 0.3s ease;
}
.card-link:hover {
  background: #b08b5b;
  border-color: #b08b5b;
  color: #ffffff;
  transform: translateY(-2px);
  gap: 16px;
}
.card-link:hover span {
  color: #ffffff;
  transform: translateX(3px);
}

.signature-card.featured {
  z-index: 2;
  transform: translateY(-12px);
  background: #eee5d9;
  border-color: rgba(176, 139, 91, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.signature-card.featured::before {
  left: 30px;
  right: 30px;
  height: 2px;
  background: #b08b5b;
}
.signature-card.featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}
.signature-card.featured .signature-label {
  color: #8c6b42;
}
.signature-card.featured .card-link {
  background: #b08b5b;
  border-color: #b08b5b;
  color: #ffffff;
}
.signature-card.featured .card-link span {
  color: #ffffff;
}
.signature-card.featured .card-link:hover {
  background: #8c6b42;
  border-color: #8c6b42;
}

.collection-link {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

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

.faq .section-header {
  margin-bottom: 60px;
}
.faq .section-header h2 {
  margin-bottom: 14px;
}
.faq .section-header p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.faq-item:hover {
  transform: translateX(6px);
  border-color: rgba(176, 139, 91, 0.4);
  background: rgba(255, 255, 255, 0.65);
}
.faq-item h3 {
  margin: 0 0 10px;
  color: #222;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.faq-item p {
  margin: 0;
  color: #1a1a1a;
  font-size: 0.95rem;
  line-height: 1.75;
  opacity: 0.65;
}

.cta {
  padding: 140px 60px;
  background: #eee5d9;
  text-align: center;
}

.cta-inner {
  max-width: 800px;
  margin-inline: auto;
}

.cta .eyebrow {
  margin-bottom: 18px;
  color: #8c6b42;
}
.cta h2 {
  margin: 0 0 18px;
  color: #222;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
}
.cta p {
  max-width: 600px;
  margin: 0 auto;
  color: #1a1a1a;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.72;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 35px;
}

.primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  background: #b08b5b;
  border: 1px solid #b08b5b;
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.primary-btn:hover {
  background: #8c6b42;
  border-color: #8c6b42;
  transform: translateY(-3px);
}

.secondary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  color: #222;
  font-size: 0.95rem;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(176, 139, 91, 0.4);
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .header {
    padding: 14px 20px;
  }
  .nav-links {
    position: fixed;
    top: 90px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    background: rgba(246, 241, 234, 0.96);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .page-hero {
    padding: 150px 30px 90px;
  }
  .page-hero-content .eyebrow {
    margin-bottom: 16px;
    letter-spacing: 3px;
  }
  .page-hero-content h1 {
    font-size: 2.4rem;
    line-height: 1;
  }
  .page-hero-content p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .text-link {
    margin-top: 28px;
  }
  .services {
    padding: 0 30px;
  }
  .services .container {
    padding: 90px 0;
  }
  .section-header {
    display: block;
    margin-bottom: 60px;
  }
  .section-header h2 {
    font-size: 2.2rem;
    line-height: 1.05;
  }
  .section-header p {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .service-category {
    margin-bottom: 60px;
  }
  .service-category:last-child {
    margin-bottom: 40px;
  }
  .service-category::after {
    margin-top: 40px;
  }
  .service-category-header {
    margin-bottom: 20px;
  }
  .service-category-header .eyebrow {
    margin-bottom: 10px;
    letter-spacing: 2px;
  }
  .service-category-header h3 {
    font-size: 2.25rem;
    line-height: 1.1;
  }
  .service-list-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 20px 0;
  }
  .service-list-item:hover {
    padding-left: 0;
    padding-right: 0;
  }
  .service-list-content h4 {
    margin-bottom: 6px;
    font-size: 1rem;
  }
  .service-list-content p {
    font-size: 0.75rem;
    line-height: 1.7;
  }
  .service-price {
    align-self: start;
    padding-top: 2px;
    font-size: 1.3rem;
  }
  .service-list-item:hover .service-price {
    transform: none;
  }
  .services-note {
    margin-top: 30px;
  }
  .services-note p {
    font-size: 0.7rem;
    line-height: 1.7;
  }
  .signature-collection {
    padding: 0 30px;
  }
  .signature-collection .container {
    padding: 90px 0;
  }
  .signature-collection .section-header {
    margin-bottom: 40px;
  }
  .signature-collection .section-header h2 {
    font-size: 2.2rem;
    line-height: 1.05;
  }
  .signature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .signature-card {
    min-height: auto;
    padding: 30px;
  }
  .signature-card::before {
    left: 30px;
    right: 30px;
  }
  .signature-card-content h3 {
    font-size: 2rem;
  }
  .signature-card-content p {
    min-height: auto;
    margin-bottom: 24px;
  }
  .signature-card-content ul {
    gap: 12px;
    padding: 20px 0;
  }
  .signature-card-content li {
    font-size: 0.75rem;
  }
  .signature-card-footer {
    padding-top: 24px;
  }
  .signature-card-footer span {
    font-size: 0.7rem;
  }
  .signature-card-footer strong {
    font-size: 1.35rem;
  }
  .signature-card.featured {
    transform: none;
  }
  .signature-card.featured:hover {
    transform: translateY(-6px);
  }
  .card-link {
    width: 100%;
    box-sizing: border-box;
  }
  .collection-link {
    justify-content: flex-start;
    margin-top: 30px;
  }
  .faq {
    padding: 0 30px;
  }
  .faq .container {
    padding: 90px 0;
  }
  .faq .section-header {
    margin-bottom: 40px;
  }
  .faq .section-header h2 {
    font-size: 2.2rem;
    line-height: 1.05;
  }
  .faq-item {
    padding: 22px 20px;
  }
  .faq-item:hover {
    transform: none;
  }
  .faq-item h3 {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .faq-item p {
    font-size: 0.75rem;
    line-height: 1.7;
  }
  .cta {
    padding: 90px 30px;
  }
  .cta .eyebrow {
    letter-spacing: 3px;
  }
  .cta h2 {
    font-size: 2.2rem;
    line-height: 1.05;
  }
  .cta p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 28px;
  }
  .primary-btn,
  .secondary-btn {
    width: 100%;
    box-sizing: border-box;
  }
}

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