@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e2c872;
  --gold-dark: #a68832;
  --gold-muted: rgba(201, 168, 76, 0.15);
  --white: #f5f0e8;
  --white-muted: rgba(245, 240, 232, 0.7);
  --white-dim: rgba(245, 240, 232, 0.4);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
    var(--black);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

.hero p {
  font-size: 1.15rem;
  color: var(--white-muted);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

/* ---- ABOUT ---- */
.about {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.about h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about p {
  color: var(--white-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat {
  border-left: 1px solid var(--gold);
  padding-left: 1.5rem;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ---- DIVIDER ---- */
.divider {
  height: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}

/* ---- SERVICES ---- */
.services {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header .label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
}

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

.service-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 2.5rem 2rem;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-card p {
  color: var(--white-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- GALLERY ---- */
.gallery {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

.gallery-item {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-label-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.gallery-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
}

.gallery-label.after {
  border-color: rgba(201,168,76,0.5);
  background: var(--gold-muted);
}

.gallery-item h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.gallery-item p {
  color: var(--white-dim);
  font-size: 0.9rem;
}

.gallery-desc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.gallery-desc-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white-dim);
  margin-bottom: 0.4rem;
}

.gallery-desc-col p {
  font-size: 0.85rem;
  color: var(--white-muted);
}

/* ---- PROMISE ---- */
.promise {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 50% 60%, rgba(201,168,76,0.06) 0%, transparent 70%),
    var(--black);
}

.promise h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.2;
}

.promise h2 em {
  font-style: italic;
  color: var(--gold);
}

.promise p {
  color: var(--white-muted);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.promise-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto 0;
}

/* ---- CONTACT ---- */
.contact {
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.contact-item {
  padding: 2rem 1rem;
}

.contact-item .icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--white-dim);
  font-size: 0.85rem;
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
}

.footer-info {
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 2;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .services, .gallery {
    padding: 5rem 1.5rem;
  }
  .hero {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
  .gallery-desc {
    grid-template-columns: 1fr;
  }
}

/* ---- NAV ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.5rem 1.25rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-links .nav-cta:hover {
  background: var(--gold-muted);
  color: var(--gold-light);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
}

.hero {
  padding-top: calc(80px + 4rem);
}

/* ---- HERO BUTTONS ---- */
.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: var(--gold);
  padding: 0.9rem 2.25rem;
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white-muted);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 0.9rem 2.25rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.btn-secondary:hover {
  border-color: rgba(201,168,76,0.6);
  color: var(--white);
}

/* ---- SERVICES: PRICING & BOOK BTN ---- */
.service-card {
  display: flex;
  flex-direction: column;
}

.service-pricing {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  margin-top: 1.5rem;
}

.price-from {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 0.2rem;
}

.price-amount {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.price-freq {
  font-size: 1rem;
  color: var(--gold-dark);
}

.price-note {
  font-size: 0.72rem;
  color: var(--white-dim);
  letter-spacing: 0.05em;
}

.service-book-btn {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.5rem 1rem;
  transition: background 0.25s ease, border-color 0.25s ease;
  align-self: flex-start;
}

.service-book-btn:hover {
  background: var(--gold-muted);
  border-color: rgba(201,168,76,0.6);
}

.featured-service {
  border-color: rgba(201,168,76,0.35);
  position: relative;
}

.featured-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

/* ---- SECTION SUB TEXT ---- */
.section-sub {
  color: var(--white-dim);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  font-weight: 300;
}

/* ---- BOOKING SECTION ---- */
.booking {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.booking .section-header {
  margin-bottom: 4rem;
}

.booking .section-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

/* ---- BOOKING FORM ---- */
.booking-form {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 3rem;
}

.form-section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field--wide {
  grid-column: span 1;
}

.form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  font-weight: 500;
}

.form-field .req {
  color: var(--gold);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--black-light);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--white-dim);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(201,168,76,0.5);
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c9a84c' opacity='.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-field select option {
  background: var(--black-light);
  color: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-field:last-of-type:not(.form-row .form-field) {
  margin-bottom: 1.5rem;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-message {
  min-height: 1.5rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.form-message--error {
  color: #e57373;
}

.form-message--success {
  color: var(--gold);
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  margin-bottom: 1.25rem;
}

.btn-submit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--white-dim);
  text-align: center;
  line-height: 1.5;
}

/* ---- BOOKING SUCCESS STATE ---- */
.booking-success {
  text-align: center;
  padding: 4rem 2rem;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.5rem;
  margin: 0 auto 2rem;
}

.booking-success h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.booking-success p {
  color: var(--white-muted);
  max-width: 380px;
  margin: 0 auto 1rem;
  font-size: 0.95rem;
}

.success-ref {
  font-size: 0.85rem;
  color: var(--white-dim);
}

.success-ref strong {
  color: var(--gold);
  font-weight: 400;
  font-family: var(--serif);
}

/* ---- BOOKING ASIDE ---- */
.booking-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.aside-block {
  border-left: 1px solid rgba(201,168,76,0.2);
  padding-left: 1.5rem;
}

.aside-icon {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.aside-block h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.aside-block p {
  color: var(--white-dim);
  font-size: 0.85rem;
  line-height: 1.7;
}

.aside-guarantee {
  margin-top: 1rem;
}

.guarantee-line {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.25rem;
}

.guarantee-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white-muted);
  line-height: 1.6;
}

/* ---- INPUT DATE FIX ---- */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(2) hue-rotate(5deg);
  cursor: pointer;
}

/* ---- RESPONSIVE: BOOKING ---- */
@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .booking-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    border-top: 1px solid rgba(201,168,76,0.12);
    padding-top: 2rem;
  }
  .aside-guarantee {
    grid-column: 1 / -1;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .site-nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-mobile-toggle {
    display: block;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .booking-form {
    padding: 2rem 1.5rem;
  }
  .booking-aside {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}