/* Soul Studio — Photo Studio & Event Space */

:root {
  --color-bg: #f8f6f2;
  --color-surface: #fff;
  --color-text: #1c1c1c;
  --color-text-muted: #6b6560;
  --color-accent: #9a7b4f;
  --color-accent-light: #b89868;
  --color-border: #e8e4de;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --space: 1.25rem;
  --radius: 4px;
  --shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

*,
*::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);
}

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

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(248, 246, 242, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--color-text);
}

.nav {
  display: flex;
  gap: 1.75rem;
}

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

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

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

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

/* Hero — rich, minimal, no background image */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  z-index: -1;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
}

.hero-title,
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1.1;
  color: var(--color-text);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 380px;
  margin: 0 0 2.25rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .hero-title,
  .hero h1 {
    letter-spacing: 0.2em;
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--color-text);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

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

.btn-primary {
  background: var(--color-text);
  color: var(--color-surface);
  border-color: var(--color-text);
}

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

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

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

.btn-large {
  padding: 0.75rem 2rem;
  font-size: 0.8rem;
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.75rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.section-intro {
  color: var(--color-text-muted);
  margin: 0 0 2rem;
  max-width: 560px;
}

/* About */
.about {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 5rem 0;
}

.container--about {
  max-width: 1040px;
}

.section-title--about {
  margin-bottom: 2.75rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text {
  padding-right: 0.5rem;
}

.about-text .lead {
  font-size: 1.22rem;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0 0 1.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.about-text p {
  margin: 0 0 1.35rem;
  color: var(--color-text-muted);
  line-height: 1.78;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.about-text p:last-of-type {
  margin-bottom: 0;
}

.link-cta {
  color: var(--color-accent);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.link-cta:hover {
  color: var(--color-accent-light);
  border-bottom-color: var(--color-accent-light);
  text-decoration: none;
}

.about-photo {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06), 0 8px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.about-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.stat {
  padding: 1.35rem 1rem;
  background: var(--color-bg);
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s;
}

.stat:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}

.stat span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

@media (max-width: 900px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .about {
    padding: 3.5rem 0;
  }

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

  .about-photo {
    order: -1;
  }

  .about-text {
    padding-right: 0;
  }

  .about-text .lead {
    font-size: 1.1rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    padding-top: 2rem;
    gap: 1rem;
  }

  .stat strong {
    font-size: 1.65rem;
  }
}

/* Services */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.6rem;
}

.services-list li {
  padding-left: 1.5rem;
  position: relative;
}

.services-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.add-on {
  padding: 1rem 1.25rem;
  background: rgba(139, 105, 20, 0.08);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
  font-size: 0.95rem;
}

/* Amenities */
.amenities {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.amenity-card {
  padding: 1.25rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.amenity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

.amenity-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.amenity-card li {
  padding: 0.2rem 0;
}

.amenity-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Gallery */
.instagram-cta {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-text);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  transition: background 0.2s, color 0.2s;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Booking */
.booking {
  background: linear-gradient(180deg, #f5f0e8 0%, #ebe5db 100%);
  border-top: 1px solid var(--color-border);
}

.booking-actions {
  justify-content: center;
  text-align: center;
}

.booking-actions--center {
  justify-content: center;
}
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.booking-simple {
  text-align: center;
}

.booking-simple .section-title {
  text-align: center;
}

.booking-simple .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.availability-block {
  margin-bottom: 2rem;
}

.calendar-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
}

.calendar-embed-wrap iframe {
  display: block;
}

.booking-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.calendar-block {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.calendar-block h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.calendar-block p {
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.calendar-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-row.two-cols {
  flex-direction: row;
  gap: 1rem;
}

.form-row.two-cols > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.calendar-form label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.calendar-form input,
.calendar-form textarea {
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
}

.calendar-form input:focus,
.calendar-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  margin: 0 0 0.25rem;
}

.footer p,
.footer a {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0.25rem 0;
}

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

/* Mobile */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .nav.is-open {
    display: flex;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    gap: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .form-row.two-cols {
    flex-direction: column;
  }

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