:root {
  --green: #8f8f74;
  --deep-green: #4f513f;
  --cream: #f7efe5;
  --beige: #e7d8c8;
  --light-pink: #f3d8d3;
  --soft-pink: #faeee9;
  --espresso: #2f241d;
  --muted: #75695f;
  --white: #fffaf4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(243, 216, 211, 0.65), transparent 28rem),
    radial-gradient(circle at bottom right, rgba(143, 143, 116, 0.28), transparent 32rem),
    var(--cream);
  color: var(--espresso);
  line-height: 1.6;
}

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

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 239, 229, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.9rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(143, 143, 116, 0.3);
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--espresso);
}

.logo-script {
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: 2.25rem;
  font-weight: normal;
  letter-spacing: -1px;
}

.logo-studios {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--deep-green);
  margin-top: -0.15rem;
}

.logo-studios span {
  display: block;
  width: 1.4rem;
  height: 1px;
  background: var(--deep-green);
}

#menu-toggle {
  display: none;
}

.hamburger {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: var(--deep-green);
  border-radius: 999px;
  transition: 0.3s ease;
}

/* Mobile and Tablet Navigation */

.nav-links {
  position: absolute;
  top: 100%;
  right: 6%;
  width: 88%;
  background: rgba(255, 250, 244, 0.97);
  border: 1px solid rgba(143, 143, 116, 0.35);
  border-radius: 1.5rem;
  box-shadow: 0 20px 45px rgba(47, 36, 29, 0.14);
  display: none;
  flex-direction: column;
  padding: 1.2rem;
  gap: 0.3rem;
}

.nav-links a {
  padding: 1rem;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--deep-green);
}

.nav-links a:hover {
  background: rgba(243, 216, 211, 0.5);
}

#menu-toggle:checked ~ .nav-links {
  display: flex;
}

#menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

#menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Typography */

.eyebrow {
  color: var(--green);
  letter-spacing: 2.4px;
  font-size: 0.62rem;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 0.65rem;
}

h1,
h2,
h3 {
  line-height: 1.05;
  font-weight: normal;
}

h1 {
  font-size: clamp(2rem, 10vw, 3rem);
  letter-spacing: -1.5px;
  margin-bottom: 0.9rem;
}

h2 {
  font-size: clamp(2.3rem, 10vw, 4rem);
  letter-spacing: -1.5px;
}

p {
  color: var(--muted);
}

/* Buttons */

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.8rem 1.05rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--deep-green), var(--green));
  color: white;
  box-shadow: 0 18px 35px rgba(79, 81, 63, 0.22);
}

.btn.secondary {
  border: 1px solid var(--green);
  color: var(--deep-green);
  background: rgba(255, 250, 244, 0.6);
}

.btn.light {
  background: var(--white);
  color: var(--deep-green);
}

.btn:hover {
  transform: translateY(-2px);
}

/* Home Hero */

.hero {
  min-height: 62vh;
  padding: 11rem 6% 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  background: url("images/OriginalLocs.jpg");
  background-size: cover;
  background-position: right 25% ;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(143, 143, 116, 0.25);
}

.hero-content {
  width: 88%;
  max-width: 19rem;
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(255, 250, 244, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 250, 244, 0.85);
  box-shadow: 0 18px 45px rgba(47, 36, 29, 0.16);
}

.hero .eyebrow {
  font-size: 0.48rem;
  letter-spacing: 1.4px;
  margin-bottom: 0.45rem;
}

.hero h1 {
  max-width: 30rem;
  font-size: clamp(1.55rem, 7vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 0.65rem;
}

.hero-content p {
  max-width: 28rem;
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.hero-image,
.hero-image::before,
.hero-image img {
  display: none;
}

/* Page Hero */

.page-hero {
  padding: 4.5rem 6%;
  text-align: center;
}

.page-hero p {
  max-width: 42rem;
  margin: 0 auto;
}

/* Intro */

.intro {
  padding: 4.5rem 7%;
  text-align: center;
  background: var(--white);
}

.intro p:last-child {
  max-width: 38rem;
  margin: 1rem auto 0;
}

/* Services Preview */

.services-preview {
  padding: 4.5rem 6%;
  text-align: center;
  background: var(--soft-pink);
}

.service-button-grid {
  display: grid;
  gap: 1rem;
  margin: 2rem auto;
  max-width: 52rem;
}

.service-button {
  display: block;
  padding: 1.5rem;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.75);
  border: 1px solid rgba(143, 143, 116, 0.35);
  color: var(--deep-green);
  font-size: 1.25rem;
  box-shadow: 0 15px 35px rgba(47, 36, 29, 0.08);
  transition: 0.3s ease;
}

.service-button:hover {
  transform: translateY(-3px);
  background: var(--white);
}

.menu-btn {
  margin-top: 0.5rem;
}

/* Gallery */

.gallery {
  padding: 4.5rem 6%;
  background:
    linear-gradient(rgba(79, 81, 63, 0.82), rgba(79, 81, 63, 0.82)),
    url("images/PLACEHOLDER-gallery-background.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  display: grid;
  gap: 2rem;
}

.gallery p,
.gallery .eyebrow {
  color: var(--beige);
}

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

.gallery-grid img {
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 250, 244, 0.45);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

/* Booking Card */

.booking-card {
  margin: 4rem 6%;
  padding: 3rem 2rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(79, 81, 63, 0.95), rgba(143, 143, 116, 0.9)),
    url("images/PLACEHOLDER-booking-background.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  border: 1px solid rgba(255, 250, 244, 0.45);
  box-shadow: 0 25px 60px rgba(47, 36, 29, 0.22);
}

.booking-card p {
  max-width: 32rem;
  margin: 1rem auto 1.5rem;
  color: var(--cream);
}

.book-button-wrap {
  display: flex;
  justify-content: center;
}

/* About Page */

.about-hero {
  padding: 4.5rem 6% 2rem;
  text-align: center;
}

.about-hero h1 {
  max-width: 58rem;
  margin: 0 auto;
}

.about-story {
  padding: 4.5rem 6%;
  display: grid;
  gap: 2.5rem;
  background: rgba(255, 250, 244, 0.55);
  border-bottom: 1px solid rgba(243, 216, 211, 0.6);
}

.about-story:nth-of-type(odd) {
  background: var(--white);
}

.about-image {
  border-radius: 2.4rem;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(47, 36, 29, 0.14);
  background: var(--white);
}

.about-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-text {
  align-self: center;
}

.about-text h2 {
  margin-bottom: 1.3rem;
}

.about-text p {
  max-width: 46rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.split-section {
  padding: 4.5rem 6%;
  display: grid;
  gap: 2rem;
  background: var(--white);
}

.split-section img {
  border-radius: 2rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 22px 50px rgba(47, 36, 29, 0.16);
}

.split-section p:last-child {
  margin-top: 1rem;
}

.experience-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.experience-list li {
  background: rgba(255, 250, 244, 0.85);
  border: 1px solid rgba(143, 143, 116, 0.28);
  border-radius: 999px;
  padding: 1rem 1.2rem;
  color: var(--muted);
}

.experience-list li::before {
  content: "•";
  color: var(--green);
  font-weight: bold;
  margin-right: 0.7rem;
}

/* Why Section */

.why {
  padding: 4.5rem 6%;
  display: grid;
  gap: 2rem;
  background: var(--soft-pink);
}

.why-list {
  display: grid;
  gap: 1rem;
}

.why-list p {
  background: rgba(255, 250, 244, 0.8);
  padding: 1.2rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(143, 143, 116, 0.25);
}

.why-list strong {
  color: var(--green);
  margin-right: 1rem;
}

/* Booking Page */

.booking-services {
  padding: 2rem 6% 4.5rem;
  display: grid;
  gap: 1.2rem;
}

.booking-service-card {
  background: rgba(255, 250, 244, 0.85);
  border: 1px solid rgba(143, 143, 116, 0.3);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(47, 36, 29, 0.08);
}

.booking-service-card h2 {
  margin-bottom: 1rem;
}

.booking-service-card p {
  margin-bottom: 1.5rem;
}

.booking-service-card.featured {
  background: linear-gradient(135deg, var(--soft-pink), var(--white));
  border-color: rgba(143, 143, 116, 0.45);
}

.tag {
  display: inline-block;
  color: var(--deep-green);
  background: rgba(143, 143, 116, 0.18);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.policy-section {
  padding: 4.5rem 6%;
  text-align: center;
  background: var(--white);
}

.policy-list {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
  margin: 2rem auto 0;
}

.policy-list p {
  background: var(--cream);
  padding: 1.2rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(143, 143, 116, 0.25);
}

/* Contact Page */

.contact-section {
  padding: 2rem 6% 4.5rem;
  display: grid;
  gap: 2rem;
}

.contact-info,
.contact-form {
  background: rgba(255, 250, 244, 0.85);
  border: 1px solid rgba(143, 143, 116, 0.3);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(47, 36, 29, 0.08);
}

.contact-info p {
  margin-top: 0.8rem;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  color: var(--deep-green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(143, 143, 116, 0.35);
  background: var(--cream);
  font: inherit;
  color: var(--espresso);
}

.contact-form textarea {
  min-height: 10rem;
  resize: vertical;
}

/* Tablet */

@media (min-width: 700px) {
  .hero {
    min-height: 78vh;
    padding: 4rem 6%;
    justify-content: flex-start;
    align-items: center;
    background-position: center;
  }

  .hero-content {
    width: min(56%, 35rem);
    max-width: 35rem;
    text-align: left;
    padding: 2rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 7vw, 5.2rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .btn {
    padding: 0.9rem 1.35rem;
    font-size: 0.7rem;
  }
}

/* Desktop */

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .site-header {
    padding: 1rem 7%;
  }

  .nav-links {
    position: static;
    width: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-left: auto;
  }

  .nav-links a {
    padding: 0;
  }

  .nav-links a:hover {
    background: transparent;
    color: var(--green);
  }

  .hero {
    min-height: 85vh;
    padding: 6rem 7%;
    justify-content: flex-start;
    align-items: center;
    background: url("images/locks.jpg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
  }

  .hero-content {
    width: min(46%, 46rem);
    max-width: 46rem;
    padding: 3rem;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 7vw, 6.8rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .service-button-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    padding: 5rem 7%;
  }

  .split-section {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    padding: 5rem 7%;
  }

  .why {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 5rem 7%;
  }

  .about-story {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    padding: 5.5rem 7%;
    gap: 3.5rem;
  }

  .about-story.reverse .about-image {
    order: 2;
  }

  .about-story.reverse .about-text {
    order: 1;
  }

  .about-image img {
    min-height: 560px;
  }

  .booking-services {
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem 7% 5rem;
  }

  .booking-service-card.featured {
    transform: translateY(-1.5rem);
  }

  .contact-section {
    grid-template-columns: 0.8fr 1.2fr;
    padding: 2rem 7% 5rem;
  }
}