/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Colors */
  --bg-primary: #FAFAFA;
  --bg-secondary: #F9F6F0;
  --bg-card: #FFFFFF;
  --text-main: #2C2C2C;
  --text-muted: #5A5A5A;
  --accent-gold: #C5A880;
  --accent-gold-hover: #B4976F;
  --accent-gold-light: #F0EAE1;
  --border-light: #EFECE6;
  --border-focus: #C5A880;
  --shadow-subtle: 0 10px 30px rgba(44, 44, 44, 0.03);
  --shadow-hover: 0 15px 40px rgba(197, 168, 128, 0.12);
  --shadow-nav: 0 4px 30px rgba(0, 0, 0, 0.02);

  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', sans-serif;

  /* Spacing & Layout */
  --container-max-width: 1200px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

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

/* ==========================================================================
   REUSABLE UTILITIES & COMPONENTS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section {
  padding: 120px 0;
}

.section-bg-secondary {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px auto;
}

.subtitle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-weight: 600;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Divider Decoration */
.gold-divider {
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: var(--accent-gold);
  margin: 25px auto 0 auto;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0; /* Premium strict/editorial look */
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--text-main);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--accent-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: var(--text-main);
  color: var(--text-main);
  background-color: transparent;
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: #FFFFFF;
}

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

/* ==========================================================================
   NAVIGATION (HEADER)
   ========================================================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
  background-color: transparent;
}

/* Sticky Header Style on Scroll */
.header-nav.scrolled {
  padding: 1rem 0;
  background-color: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-nav);
  border-bottom: 1px solid var(--border-light);
}

.header-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-main);
}

.logo span {
  color: var(--accent-gold);
}

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

.nav-links a {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--text-main);
  font-weight: 400;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta .btn {
  padding: 0.85rem 2.5rem;
  font-size: 0.8rem;
}

.nav-cta-mobile {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Mobile Nav Toggle animation */
.mobile-nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 24px;
}

.hero-title span {
  font-style: italic;
  color: var(--accent-gold);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

.hero-image-wrapper {
  position: relative;
  height: 580px;
  opacity: 0;
  transform: translateX(40px);
  animation: heroImageFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes heroImageFadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--accent-gold-light);
  box-shadow: var(--shadow-subtle);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero-image-wrapper:hover .hero-image-container img {
  transform: scale(1.05);
}

/* Decorative background shapes */
.hero-deco-border {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent-gold);
  z-index: -1;
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-deco-border {
  transform: translate(-10px, 10px);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-gold-light);
}

.service-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(44, 44, 44, 0.1);
  transition: var(--transition-smooth);
}

.service-card:hover .service-overlay {
  background-color: rgba(197, 168, 128, 0.15);
}

.service-content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-main);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
  font-weight: 300;
  line-height: 1.6;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.service-price {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.service-price span {
  color: var(--accent-gold);
  font-weight: 600;
}

.service-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-link::after {
  content: '→';
  transition: var(--transition-smooth);
}

.service-card:hover .service-link::after {
  transform: translateX(4px);
}

.service-card:hover .service-link {
  color: var(--accent-gold-hover);
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  height: 600px;
}

.about-image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--accent-gold-light);
  box-shadow: var(--shadow-subtle);
}

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

.about-deco-box {
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 160px;
  height: 160px;
  background-color: var(--accent-gold-light);
  z-index: -1;
}

.about-content {
  padding-right: 1rem;
}

.about-philosophy {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--accent-gold);
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 400;
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

.about-text p {
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
}

.highlight-item {
  text-align: left;
}

.highlight-value {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 5px;
  display: block;
}

.highlight-value span {
  color: var(--accent-gold);
}

.highlight-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   BOOKING SECTION
   ========================================================================== */
.booking-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  padding: 4.5rem 5rem;
  position: relative;
}

.booking-container::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid var(--border-light);
  pointer-events: none;
}

.booking-form {
  position: relative;
  z-index: 2;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.form-group-full {
  grid-column: span 2;
}

.form-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-main);
}

.form-control {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-smooth);
  width: 100%;
}

.form-control::placeholder {
  color: #A3A3A3;
  font-weight: 300;
}

/* Custom interactive focus glow */
.form-control:focus {
  background-color: #FFFFFF;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.12);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5A880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1rem;
  padding-right: 3rem;
  cursor: pointer;
}

/* Booking confirmation / status message */
.form-message {
  padding: 1rem;
  margin-bottom: 2rem;
  border-left: 3px solid var(--accent-gold);
  background-color: var(--bg-secondary);
  font-size: 0.95rem;
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.form-message.success {
  border-left-color: #557A46;
  background-color: #F1F8E8;
  color: #2F5D3F;
}

.form-message.error {
  border-left-color: #BA1A1A;
  background-color: #FFEDE9;
  color: #410002;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-submit-wrapper {
  text-align: center;
}

.booking-submit-wrapper .btn {
  min-width: 250px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px 0;
  color: var(--text-main);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 60px;
}

.footer-col-about .logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-col-about p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 280px;
}

.footer-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  color: var(--accent-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-hours-list {
  list-style: none;
}

.footer-hours-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.footer-hours-list li span {
  font-weight: 500;
  color: var(--text-main);
}

.footer-contact-info {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

.footer-contact-info p {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-info p svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-socials {
  display: flex;
  gap: 1.25rem;
  margin-top: 25px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  background-color: var(--bg-card);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links a:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Up to 1024px (Tablets / Small Desktops) */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .nav-links {
    gap: 1.5rem;
  }
  
  .hero-section {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 3.25rem;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-image-wrapper {
    height: 450px;
    max-width: 550px;
    margin: 0 auto;
  }

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

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

  .about-image-wrapper {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-content {
    text-align: center;
    padding-right: 0;
  }

  .about-highlights {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Up to 768px (Mobile & Small Tablets) */
@media (max-width: 768px) {
  /* Navigation Mobile */
  .mobile-nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-card);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 3rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-cta {
    display: none; /* In mobile menu, we'll place it inside nav-links list if desired, or hide */
  }

  .nav-cta-mobile {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
  }

  .nav-cta-mobile .btn {
    display: block;
    width: 100%;
    padding: 0.9rem 2.2rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .booking-container {
    padding: 3rem 2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-group-full {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-col-about p {
    margin: 0 auto;
  }

  .footer-hours-list li {
    justify-content: center;
    gap: 20px;
  }

  .footer-contact-info p {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

/* Up to 480px (Small Mobile) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .highlight-item {
    text-align: center;
  }

  .booking-container {
    padding: 2rem 1.25rem;
  }
}
