* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Times New Roman", serif;
  background: #ffffff;
  color: #111111;
}

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

/* HEADER */

.site-header {
  background: white;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 60px;
}

.site-logo {
  font-size: 24px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
}

.nav-right {
  display: flex;
  gap: 32px;
}

.site-nav a {
  text-decoration: none;
  color: #111;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 8%;
}

.hero-image {
  height: 650px;
  overflow: hidden;
}

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

.hero-content h1 {
  font-size: 72px;
  line-height: 1;
  font-weight: normal;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 20px;
  line-height: 1.7;
  max-width: 520px;
}

.button {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  transition: 0.3s ease;
}

.button:hover {
  background: #111;
  color: white;
}

/* ABOUT */

.about {
  padding: 100px 8%;
}

.about h2 {
  font-size: 56px;
  font-weight: normal;
}

.about p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 800px;
}

/* GALLERY */

.gallery {
  padding: 100px 8%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.photo-card {
  height: 400px;
  overflow: hidden;
}

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

/* PRICING */

.pricing {
  padding: 100px 8%;
}

.pricing h2 {
  font-size: 56px;
  font-weight: normal;
}

.pricing-item {
  border-top: 1px solid #ddd;
  padding: 24px 0;
  font-size: 20px;
}

/* CONTACT */

.contact {
  padding: 100px 8%;
  text-align: center;
}

.contact h2 {
  font-size: 56px;
  font-weight: normal;
}

.contact a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
}

/* BOOKING PAGE */

.booking-page {
  padding: 80px 8%;
  background: #fafafa;
  min-height: 100vh;
}

.booking-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #666;
}

.booking-hero h1 {
  font-size: 64px;
  font-weight: normal;
  margin: 20px 0;
}

.booking-intro {
  font-size: 20px;
  line-height: 1.7;
}

.booking-form-section {
  max-width: 800px;
  margin: 0 auto;
}

.booking-form {
  background: white;
  padding: 50px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.form-row {
  margin-bottom: 28px;
}

.form-row label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #555;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #d9d9d9;
  font-size: 16px;
  font-family: "Times New Roman", serif;
  background: white;
  color: #111;
  border-radius: 0;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #111;
}

.form-row textarea {
  resize: vertical;
  min-height: 180px;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: #111;
  color: white;
  border: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: 0.3s ease;
}

.form-submit:hover {
  background: #333;
}

.booking-note {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.booking-footer {
  text-align: center;
  padding: 50px 20px;
  border-top: 1px solid #e5e5e5;
  background: white;
}

.booking-footer a {
  text-decoration: none;
  color: #111;
}

.booking-footer p {
  margin-top: 14px;
  color: #666;
}

/* FOOTER */

footer {
  padding: 50px 20px;
  text-align: center;
  border-top: 1px solid #e5e5e5;
}

/* MOBILE */

@media (max-width: 900px) {
  .site-nav {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .nav-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 50px 6%;
  }

  .hero-content h1 {
    font-size: 46px;
  }

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

  .booking-hero h1 {
    font-size: 42px;
  }

  .booking-form {
    padding: 28px;
  }

  .booking-page {
    padding: 50px 6%;
  }
}
