/* ============================================
   Classic Garden — Main Styles
   ============================================ */

:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, sans-serif;
  --color-bg: #faf8f5;
  --color-bg-alt: #f0ebe3;
  --color-text: #2c2a28;
  --color-text-muted: #5c5854;
  --color-accent: #6b5344;
  --color-accent-gold: #a68b5b;
  --color-cta: #4a6b3c;
  --color-cta-hover: #3d5a30;
  --color-white: #fff;
  --color-overlay: rgba(0, 0, 0, 0.4);
  --max-width: 1200px;
  --section-padding: clamp(2rem, 4vw, 3.5rem);
  --header-height: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-cta);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--color-cta);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-cta-hover);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background: var(--color-text);
  color: var(--color-white);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-text);
  text-decoration: none;
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
}

.logo:hover {
  text-decoration: none;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.logo-place {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.header-nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.nav-list a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.header-phone:hover {
  color: var(--color-text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 700px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 0.25rem;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.9);
  margin: 0 0 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* About strip */
.about-strip {
  background: var(--color-accent);
  color: var(--color-white);
  padding: clamp(2rem, 4vw, 3rem) 1.5rem;
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-strip-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-white);
}

.about-strip-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}


/* Lead capture strip */
.lead-strip {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 1.25rem 1.5rem;
}

.lead-strip-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.lead-strip-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--color-white);
  flex-shrink: 0;
}

.lead-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.lead-form input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: var(--color-white);
  min-width: 150px;
}

.lead-form input:focus {
  outline: none;
  border-color: var(--color-cta);
}

/* Section common */
.section {
  padding: var(--section-padding) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.75rem;
  text-align: center;
}

.section-intro {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Spaces */
.spaces {
  background: var(--color-bg-alt);
}

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

.space-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.space-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.space-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.space-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--color-text);
}

.space-meta {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0 0 0.75rem;
}

.space-desc {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--color-text);
  flex: 1;
}

.link-arrow {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-cta);
}

.link-arrow:hover {
  text-decoration: none;
}

.link-arrow::after {
  content: ' \2192';
}

/* Guest Rooms */
.rooms {
  background: var(--color-bg);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.room-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.room-placeholder {
  background: linear-gradient(135deg, var(--color-bg-alt), #e2ddd5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-placeholder-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  font-style: italic;
}

.room-card-body {
  padding: 1.5rem;
}

.room-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--color-text);
}

.room-card-meta {
  font-size: 0.9rem;
  color: var(--color-accent-gold);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.room-card-desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Amenities */
.amenities-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.amenity-item {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.amenity-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.amenity-label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
}

.amenity-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Booking */
.booking {
  background: var(--color-bg-alt);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.booking-step {
  margin-bottom: 1.25rem;
}

.booking-step:last-child {
  margin-bottom: 0;
}

.booking-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  color: var(--color-text);
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-white);
  border: 2px solid #e0dbd5;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-option:hover {
  border-color: var(--color-accent);
}

.booking-option input[type="radio"] {
  margin-top: 0.25rem;
  accent-color: var(--color-cta);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.booking-option input[type="radio"]:checked + .booking-option-content {
  color: var(--color-text);
}

.booking-option:has(input:checked) {
  border-color: var(--color-cta);
  box-shadow: 0 0 0 1px var(--color-cta);
  background: #f5f9f3;
}

.booking-option-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.booking-option-content strong {
  font-size: 1rem;
  color: var(--color-text);
}

.booking-option-content span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.booking-date-input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e0dbd5;
  border-radius: 8px;
  background: var(--color-white);
  width: 100%;
  max-width: 300px;
  cursor: pointer;
}

.booking-date-input:focus {
  outline: none;
  border-color: var(--color-cta);
}

.muhurtam-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #fdf6e3, #fcefc7);
  border: 1px solid var(--color-accent-gold);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #7a6520;
}

.muhurtam-dot {
  width: 10px;
  height: 10px;
  background: var(--color-accent-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.non-muhurtam-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--color-bg);
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* Quote */
.booking-quote-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-quote-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 2px solid var(--color-accent-gold);
}

.quote-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: var(--color-text);
}

.quote-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quote-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
}

.quote-line span:first-child {
  color: var(--color-text-muted);
}

.quote-line span:last-child {
  font-weight: 600;
  color: var(--color-text);
  text-align: right;
}

.quote-divider {
  height: 1px;
  background: #e0dbd5;
  margin: 0.25rem 0;
}

.quote-total span:last-child {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-cta);
}

.quote-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Booking contact */
.booking-contact-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.quote-contact-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--color-text);
}

.booking-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.booking-contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  margin-top: 0.25rem;
}

.booking-contact-form input,
.booking-contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: var(--color-white);
}

.booking-contact-form input:focus,
.booking-contact-form textarea:focus {
  outline: none;
  border-color: var(--color-cta);
}

.booking-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.booking-buttons .btn {
  text-align: center;
}

.booking-buttons .btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.booking-confirmation {
  padding: 1.25rem;
  margin-top: 1rem;
  background: #e8f5e9;
  border: 1px solid #81c784;
  border-radius: 8px;
  text-align: center;
  color: #2e7d32;
  font-weight: 500;
}

/* Location */
.location {
  background: var(--color-bg);
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info .section-title {
  margin-bottom: 1rem;
}

.location-address {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

.location-note {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
}

.location-distances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.location-card {
  background: var(--color-white);
  padding: 1.25rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.location-card-icon {
  font-size: 1.5rem;
}

.location-card-name {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.location-card-dist {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

/* Gallery */
.gallery {
  background: var(--color-bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.gallery-item {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
}

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

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

/* Videos strip */
.videos-strip-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
  text-align: center;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn::after {
  content: '';
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  clip-path: polygon(36% 28%, 36% 72%, 72% 50%);
}

.video-play-btn:hover {
  background: rgba(0,0,0,0.2);
}

.video-thumb-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}


/* Footer */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
}

.footer-logo .logo-place {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
}

.footer-contact {
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.9);
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-address {
  font-size: 0.9rem;
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.75);
}

.footer-copy {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(255,255,255,0.6);
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.video-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 36px;
  height: 36px;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
}

.video-modal-player {
  width: 100%;
  max-height: 80vh;
  background: #000;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.lightbox-img {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }
  .location-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav-wrap {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-direction: column;
    gap: 1rem;
  }

  .header-nav-wrap.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .header-nav-wrap.open .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .header-nav-wrap.open .header-cta {
    display: flex;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }

  .lead-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .lead-form {
    width: 100%;
    flex-direction: column;
  }

  .lead-form input {
    width: 100%;
  }

  .lead-form .btn {
    width: 100%;
  }

  .location-distances {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

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

  .location-distances {
    grid-template-columns: 1fr;
  }

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