:root {
  --bg: #0D0D0D;
  --text: #FFFFFF;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Neue Haas Grotesk', Arial, sans-serif;
  text-transform: uppercase;
}

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

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

/* Header / Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: var(--bg);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  color: #FFFFFF;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

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

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

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #FFFFFF;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  appearance: none;
  border-radius: 0px;
  font-family: inherit;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #FFFFFF;
  color: #000000;
  padding: 0.75rem 1.75rem;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  min-height: 80vh;
  padding: 2rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.heading-primary {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-paragraph {
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 420px;
  opacity: 0.85;
  letter-spacing: 0.03em;
}

.heading-secondary {
  font-size: 4rem;
  font-weight: 300;
  font-style: normal;
  text-align: right;
  margin-top: 1rem;
}

.hero-address {
  display: flex;
  flex-direction: column;
  font-style: normal;
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 2rem;
}

.social-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.social-icon {
  color: #FFFFFF;
  display: flex;
}

.btn-services {
  padding: 0.75rem 2.5rem;
}

.hero-media {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}

/* Gallery Teaser */

.gallery-teaser {
  width: 100%;
  min-height: 400px;
  margin-top: 2rem;
}

.gallery-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: grayscale(100%);
}

/* About Us */

.about-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 2rem;
  min-height: 100vh;
}

.about-collage {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 5;
  justify-self: center;
}

.collage-primary {
  width: 80%;
  height: 80%;
  object-fit: cover;
  filter: grayscale(100%);
}

.collage-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  filter: grayscale(100%);
  border: 8px solid var(--bg);
  z-index: 2;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.about-title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-body p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #CCCCCC;
  text-transform: uppercase;
  max-width: 500px;
}

/* Gallery */

.gallery {
  width: 100%;
  max-width: 1440px;
  margin: 2rem auto 0 auto;
  padding: 0 4rem 6rem 4rem;
}

.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery-title {
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.gallery-subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A3A3A3;
  line-height: 1.5;
  max-width: 300px;
}

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

.gallery-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

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

/* About Us (text variant) */

.about-info {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 6rem 4rem 4rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-info-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.about-info-title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  padding: 0.875rem 2.25rem;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.btn-outline:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
}

.about-info-right {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 580px;
}

.about-info-right p {
  font-size: 0.8125rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: #B3B3B3;
  text-transform: uppercase;
  font-weight: 400;
}

/* Our Services (expanded card row list) */

.services-expanded-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 3.5rem;
}

.services-expanded-title {
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
}

.services-expanded-subtitle {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #A3A3A3;
  text-align: center;
}

.services-card-list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease;
}

.service-card-row:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.service-card-title {
  flex-grow: 1;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E5E5E5;
}

.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3rem;
  flex-shrink: 0;
}

.service-card-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

.service-card-cta {
  flex-shrink: 0;
}

.btn-book {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: #000000;
  border: none;
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.btn-book:hover {
  opacity: 0.9;
  cursor: pointer;
}

.btn-book.is-selected {
  background-color: #0D0D0D;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.services-final-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.btn-final-book {
  padding: 1rem 3rem;
  font-size: 0.875rem;
}

/* Booking */

.booking {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem 6rem 2rem;
}

.booking-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.booking-title {
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.booking-subtitle {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #A3A3A3;
}

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

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

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

.booking-field label,
.booking-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E5E5E5;
}

.booking-field input[type="text"],
.booking-field input[type="tel"],
.booking-field input[type="date"] {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  text-transform: none;
  color-scheme: dark;
}

.booking-field input:focus {
  outline: none;
  border-color: #FFFFFF;
}

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

.booking-service-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  color: #CCCCCC;
  cursor: pointer;
}

.booking-service-check input {
  width: 16px;
  height: 16px;
  accent-color: #FFFFFF;
  cursor: pointer;
}

.booking-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.booking-slots-hint {
  font-size: 0.8125rem;
  color: #888888;
  text-transform: none;
}

.booking-slot {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.booking-slot:hover:not(:disabled) {
  border-color: #FFFFFF;
}

.booking-slot.is-active {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.booking-slot.is-booked,
.booking-slot:disabled {
  color: #555555;
  border-color: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-submit {
  padding: 1rem;
  font-size: 0.8125rem;
}

.booking-status {
  min-height: 1.2em;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

.booking-status-error {
  color: #FF6B6B;
}

.booking-status-success {
  color: #6BFFA3;
}

/* Responsive */

@media (max-width: 900px) {
  .site-header {
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: var(--bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: max-height 0.3s ease;
  }

  .main-nav.is-open {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    height: 60vh;
  }

  .heading-primary,
  .heading-secondary {
    font-size: 2.5rem;
  }

  .about-us {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .about-collage {
    max-width: 400px;
  }

  .gallery {
    padding: 0 1.5rem 4rem 1.5rem;
    margin-top: 1.5rem;
  }

  .gallery-title {
    font-size: 1.75rem;
  }

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

  .about-info {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.5rem 2.5rem 1.5rem;
  }

  .about-info-left {
    min-height: auto;
    gap: 2rem;
  }

  .about-info-title {
    font-size: 2.25rem;
  }

  .services-expanded-title {
    font-size: 1.75rem;
  }

  .service-card-title {
    font-size: 0.8rem;
  }

  .service-card-meta {
    margin-right: 1.5rem;
  }

  .booking {
    padding: 4rem 1.5rem 4rem 1.5rem;
  }

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

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

@media (max-width: 600px) {
  .site-header {
    padding: 1rem 1.25rem;
  }

  .brand-name {
    display: none;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .main-nav ul {
    gap: 0.75rem;
    font-size: 0.75rem;
  }

  .heading-primary,
  .heading-secondary {
    font-size: 2rem;
  }

  .hero-paragraph {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .gallery-image {
    height: 250px;
  }

  .about-title {
    font-size: 1.5rem;
  }

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

  .gallery-title {
    font-size: 1.5rem;
  }

  .about-info-title {
    font-size: 1.75rem;
  }

  .services-expanded-title {
    font-size: 1.5rem;
  }

  .service-card-row {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .service-card-title {
    flex-grow: 1;
    font-size: 0.75rem;
    order: 1;
  }

  .service-card-meta {
    margin-right: 0;
    order: 2;
  }

  .service-card-cta {
    order: 3;
  }

  .booking-title {
    font-size: 1.5rem;
  }

  .booking-slot {
    padding: 0.65rem 1rem;
    font-size: 0.75rem;
  }

  .booking-submit {
    font-size: 0.75rem;
  }
}
