/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #2c2a28;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;

  background-color: #e8e4df;
  background-image: url("images/NewBackground.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  flex-wrap: wrap;
}

.logo {
  font-family: "Brittany Signature", cursive;
  font-size: clamp(1.35rem, 4vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #2c2a28;
  line-height: 1.2;
  max-width: min(100%, 16rem);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  border: 1px solid rgba(44, 42, 40, 0.15);
  background: rgba(255, 252, 248, 0.85);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #2c2a28;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(0.45rem) 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(-0.45rem) rotate(-45deg);
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  color: #2c2a28;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 0.6;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: calc(100vh - 120px);
  padding: 2.5rem 1.5rem 3rem;
  gap: 0.25rem;
}

.hero-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: #5a5652;
}

.hero h1 {
  font-family: "Brittany Signature", cursive;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  max-width: 18ch;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 28rem;
  margin-bottom: 2rem;
  color: #4a4744;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: #2c2a28;
  color: #faf8f5;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #4a4744;
}

/* Services */
.services {
  padding: 5rem 2rem 6rem;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #5a5652;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 32rem;
  margin: 0 auto 3rem;
  color: #4a4744;
  font-size: 1rem;
}

.services-category {
  margin-bottom: 3.5rem;
}

.services-category:last-of-type {
  margin-bottom: 0;
}

.services-category-title {
  font-family: "Brittany Signature", cursive;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 400;
  color: #2c2a28;
  margin-bottom: 2rem;
}

.brand-name {
  font-family: "Brittany Signature", cursive;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 3rem;
}

.service-card {
  background: rgba(255, 252, 248, 0.85);
  border: 1px solid rgba(44, 42, 40, 0.08);
  padding: 2rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(44, 42, 40, 0.08);
  transform: translateY(-2px);
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #4a4744;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.service-duration {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a5652;
  border-top: 1px solid rgba(44, 42, 40, 0.12);
  padding-top: 1rem;
  width: 100%;
}

.services-cta {
  margin-top: 0.5rem;
}

/* About */
.about {
  padding: 5rem 2rem;
  background: rgba(255, 252, 248, 0.45);
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  aspect-ratio: 4 / 5;
  background: rgba(255, 252, 248, 0.9);
  border: 1px solid rgba(44, 42, 40, 0.1);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 1.25rem;
}

.about-content .section-tagline {
  text-align: left;
}

.about-lead {
  font-size: 1.05rem;
  color: #3a3836;
  margin-bottom: 1.25rem;
}

.about-content p {
  font-size: 0.95rem;
  color: #4a4744;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-credentials {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-credentials li {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(44, 42, 40, 0.15);
  background: rgba(255, 252, 248, 0.7);
}

/* Contact */
.contact {
  padding: 5rem 2rem 6rem;
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
  margin-top: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  color: #4a4744;
  text-decoration: none;
  line-height: 1.7;
}

.contact-item a:hover {
  opacity: 0.65;
}

.contact-form {
  background: rgba(255, 252, 248, 0.85);
  border: 1px solid rgba(44, 42, 40, 0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a5652;
  margin-top: 0.75rem;
}

.contact-form label:first-of-type {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #2c2a28;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(44, 42, 40, 0.12);
  padding: 0.75rem 1rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(44, 42, 40, 0.35);
}

.contact-form button {
  margin-top: 1.25rem;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.contact-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 1.25rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-status--success {
  color: #2f5d3a;
}

.form-status--error {
  color: #8b3a3a;
}

.contact-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Our Space */
.our-space {
  padding: 5rem 2rem 6rem;
}

.our-space-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.space-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.space-gallery-item {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 252, 248, 0.85);
  border: 1px solid rgba(44, 42, 40, 0.08);
  aspect-ratio: 4 / 3;
}

.space-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.space-gallery-item:hover img {
  transform: scale(1.03);
}

.space-cta {
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: #5a5652;
}

/* Mobile */
@media (max-width: 768px) {
  .site-header {
    padding: 1rem 1.25rem;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(44, 42, 40, 0.1);
    background: rgba(255, 252, 248, 0.95);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(44, 42, 40, 0.08);
    text-align: center;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  body {
    background-attachment: scroll;
  }

  .hero {
    min-height: auto;
    padding: 2rem 1.25rem 3rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .services,
  .about,
  .contact,
  .our-space {
    padding: 3.5rem 1.25rem 4rem;
  }

  .space-gallery {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.5rem;
  }

  .about-inner,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo {
    max-width: 220px;
    margin: 0 auto;
  }

  .about-content .section-title,
  .about-content .section-tagline {
    text-align: center;
  }

  .about-credentials {
    justify-content: center;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form button,
  .btn-primary {
    width: 100%;
    text-align: center;
    align-self: stretch;
  }

  .site-footer {
    padding: 1.25rem 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 11rem;
  }

  .hero-tagline {
    letter-spacing: 0.15em;
    font-size: 0.7rem;
  }

  .services-category-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }
}