/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent-dark: #2C2420;
  --accent-gold: #B8A07A;
  --accent-primary: #C8B496;
  --border-subtle: #EEECE8;
  --fg-inverse: #FFFFFF;
  --fg-primary: #1A1A1A;
  --fg-secondary: #4A4A4A;
  --surface-inverse: #1A1A1A;
  --surface-primary: #F4F2EF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

section,
footer {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--fg-primary);
  background: var(--surface-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 12px;
}

.section-label.light {
  color: var(--accent-primary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  text-align: center;
  color: var(--fg-primary);
  margin-bottom: 24px;
}

.section-title.light {
  color: var(--fg-inverse);
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
  margin: 0 auto 48px;
  border-radius: 1px;
}

.divider.light {
  background: var(--accent-primary);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--fg-inverse);
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-inverse);
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 0.7;
}

.btn-nav {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 20px;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s !important;
}

.btn-nav:hover {
  background: var(--fg-inverse);
  color: var(--fg-primary) !important;
  opacity: 1 !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-inverse);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 10, 7, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 48px;
}

.hero-side-left,
.hero-side-right {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.65);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-side-left {
  transform: rotate(180deg);
}

.hero-center {
  text-align: center;
  flex: 1;
  transform: translate(-18vw, 8vh);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 400;
  color: var(--fg-inverse);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-title .amp {
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s, opacity 0.2s;
}

.hero-location:hover {
  color: var(--fg-inverse);
}

.hero-location svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-hero {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-inverse);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 14px 32px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.btn-hero:hover {
  background: var(--fg-inverse);
  color: var(--fg-primary);
}

/* ===== SERVICES ===== */
.services {
  background: var(--surface-primary);
  padding: 96px 0;
}

.services-category {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--fg-primary);
  margin-bottom: 20px;
  margin-top: 48px;
}

.services-category:first-of-type {
  margin-top: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}

.services-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid.cols-1 {
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--fg-inverse);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.service-card.featured {
  border-color: var(--accent-gold);
  box-shadow: 0 2px 16px rgba(184, 160, 122, 0.12);
}

.service-badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--accent-gold);
  color: var(--fg-inverse);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 12px;
}

.service-card.compact {
  padding: 24px;
}

.service-card.compact h3 {
  margin-bottom: 4px;
}

.service-num {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--accent-primary);
  color: var(--fg-inverse);
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--fg-primary);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--fg-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.service-price {
  font-size: 14px;
  font-style: italic;
  color: var(--accent-gold);
}

.service-duration {
  font-size: 12px;
  color: var(--fg-secondary);
  margin-left: 16px;
}

/* Consultation Banner */
.consult-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--fg-inverse);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 32px 40px;
  margin-top: 48px;
  gap: 32px;
}

.consult-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--fg-primary);
  margin-bottom: 6px;
}

.consult-content p {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.5;
}

/* Policy Notice */
.policy-notice {
  text-align: center;
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(184, 160, 122, 0.08);
  border-radius: 6px;
}

.policy-notice p {
  font-size: 13px;
  color: var(--fg-secondary);
  line-height: 1.6;
}

.policy-notice a {
  color: var(--accent-gold);
  text-decoration: underline;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--surface-inverse);
  padding: 96px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--fg-inverse);
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: 2px;
}

.gallery-cta {
  text-align: center;
}

.gallery-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.btn-outline {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--fg-primary);
  color: var(--fg-primary);
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  background: none;
}

.btn-outline:hover {
  background: var(--fg-primary);
  color: var(--fg-inverse);
}

.btn-outline.light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--fg-inverse);
}

.btn-outline.light:hover {
  background: var(--fg-inverse);
  color: var(--fg-primary);
}

/* ===== ABOUT ===== */
.about {
  background: var(--fg-inverse);
  padding: 96px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-content .section-label {
  text-align: left;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--fg-primary);
  line-height: 1.2;
  margin-bottom: 28px;
}

.about-content p {
  font-size: 14px;
  color: var(--fg-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-content p:last-of-type {
  font-style: italic;
}

.about-signature {
  margin-top: 28px;
}

.signature {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--fg-primary) !important;
  margin-bottom: 4px !important;
}

.signature-title {
  font-size: 11px !important;
  letter-spacing: 2px;
  color: var(--accent-gold) !important;
  font-style: normal !important;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--surface-primary);
  padding: 96px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  text-align: center;
  padding: 24px;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--accent-gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 14px;
  font-style: italic;
  color: var(--fg-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.stars {
  color: var(--accent-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-author {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--fg-secondary);
}

/* ===== FAQ ===== */
.faq {
  background: var(--fg-inverse);
  padding: 96px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item summary {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-primary);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-item summary:hover {
  color: var(--accent-gold);
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  color: var(--accent-gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.8;
  padding: 0 0 24px;
}

/* ===== POLICIES ===== */
.policies {
  background: var(--surface-primary);
  padding: 96px 0;
}

.policies-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.policies-intro p {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.8;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.policy-card {
  background: var(--fg-inverse);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 28px;
}

.policy-card h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 500;
  color: var(--fg-primary);
  margin-bottom: 14px;
}

.policy-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.policy-card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.6;
}

.policy-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.policy-card a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--surface-inverse);
  color: var(--fg-inverse);
}

.footer-top {
  padding: 96px 0 64px;
  text-align: center;
}

.footer-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: left;
  margin-top: 48px;
}

.contact-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.contact-highlight {
  font-weight: 500;
  color: var(--fg-inverse) !important;
  margin-bottom: 8px !important;
}

.license-note {
  color: var(--accent-primary) !important;
  font-size: 12px !important;
  letter-spacing: 0.6px;
}

.contact-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-col a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.contact-col a:hover {
  color: var(--accent-primary);
}

.address-link {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-link svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.82;
}

/* Footer CTA */
.footer-cta {
  text-align: center;
  padding: 64px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-text {
  font-family: var(--font-heading);
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  color: var(--fg-inverse);
  margin-bottom: 28px;
}

.btn-cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg-inverse);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 16px 36px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  background: none;
}

.btn-cta:hover {
  background: var(--fg-inverse);
  color: var(--fg-primary);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

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

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--fg-inverse);
}

/* ===== FLOATING ACTIONS ===== */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: flex;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  pointer-events: none;
}

.floating-actions.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.88);
  color: var(--fg-inverse);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}

.floating-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.floating-btn.help {
  width: 44px;
  padding: 0;
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--fg-inverse);
}

.floating-btn.help:hover {
  background: #a88f68;
}

.floating-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== BOOKING MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 24px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--fg-inverse);
  border-radius: 12px;
  padding: 48px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--fg-secondary);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--fg-primary);
}

.modal h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--fg-primary);
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--fg-secondary);
  margin-bottom: 20px;
}

.booking-contact {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--surface-primary);
  padding: 18px;
  text-align: center;
  margin-bottom: 18px;
}

.booking-contact p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.booking-phone {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--fg-primary);
  margin-bottom: 14px;
}

.booking-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.booking-actions a {
  border: 1px solid var(--fg-primary);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.booking-actions a:hover {
  background: var(--fg-primary);
  color: var(--fg-inverse);
}

.booking-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--fg-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.booking-divider::before,
.booking-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  background: var(--surface-primary);
  color: var(--fg-primary);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  font-size: 12px;
  color: var(--fg-secondary);
  line-height: 1.5;
  padding: 8px 12px;
  background: rgba(184, 160, 122, 0.08);
  border-radius: 4px;
}

.form-note a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.policy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--fg-secondary);
  line-height: 1.5;
}

.policy-check input {
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--accent-gold);
}

.btn-submit {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--surface-inverse);
  color: var(--fg-inverse);
  border: none;
  padding: 16px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: var(--accent-dark);
}

/* Booking Success */
.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  border-radius: 50%;
  background: rgba(184, 160, 122, 0.15);
  color: var(--accent-gold);
  font-size: 28px;
}

.booking-success h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--fg-primary);
}

.booking-success p {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.6;
  max-width: 360px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }

  .section-title {
    font-size: 36px;
  }

  .services-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    padding: 16px 24px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-inverse);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: right 0.3s;
    padding: 24px;
    z-index: 101;
  }

  .nav.open {
    right: 0;
  }

  .hero-side-left,
  .hero-side-right {
    display: none;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-center {
    transform: translate(-18vw, 8vh);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .consult-banner {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-content .section-label {
    text-align: center;
  }

  .about-title {
    text-align: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .policies-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-text {
    font-size: 24px;
  }

  .modal {
    padding: 32px 24px;
  }

  .floating-actions {
    right: 16px;
    bottom: 16px;
  }

  .floating-btn {
    min-height: 42px;
    padding: 0 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-center {
    transform: translateY(10vh);
  }

  .section-title {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size: 32px;
  }

  .faq-item summary {
    font-size: 16px;
  }

  .floating-actions {
    left: 16px;
    right: 16px;
  }

  .floating-btn {
    flex: 1;
    padding: 0 10px;
  }
}
