/* Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  background-color: #F5F3EF;
  color: #3D3D3D;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

.container.narrow {
  max-width: 800px;
}

/* Typography */
.section-title,
.page-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #3D3D3D;
}

.page-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

p {
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.7rem 1.6rem;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.btn-pill {
  border-radius: 999px;
}

.btn-primary {
  background-color: #7BA7BC;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(123, 167, 188, 0.35);
}

.btn-primary:hover {
  background-color: #6a94a8;
  box-shadow: 0 10px 22px rgba(123, 167, 188, 0.4);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(123, 167, 188, 0.35);
}

/* Header / Navigation */
.site-header {
  background-color: rgba(245, 243, 239, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(61, 61, 61, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand-logo {
  height: 80px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 1px;
  background-color: #8FAF9F;
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: transparent;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: #3D3D3D;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
  background-color: #F5F3EF;
  padding: 4rem 0 2rem;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.hero-logo {
  max-width: 320px;
}

.hero-name {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-tagline {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-contact {
  margin-top: 0.5rem;
}

/* Generic sections */
.section {
  padding: 3.5rem 0;
}

/* About */
.about {
  background-color: #F5F3EF;
  padding-top: 1.5rem;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.9;
}

.about-content p + p {
  margin-top: 1rem;
}

/* Services page */
.services-intro {
  background-color: #F5F3EF;
}

.intro-text {
  text-align: center;
  font-size: 1.02rem;
}

.services-grid-section {
  background-color: #F5F3EF;
  border-top: 1px solid rgba(61, 61, 61, 0.05);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 1.75rem;
}

.service-card {
  background-color: #F5F3EF;
  border-radius: 18px;
  border: 1px solid #B8A9C9;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 14px 28px rgba(184, 169, 201, 0.16);
}

.service-card-full {
  grid-column: 1 / -1;
}

.service-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-emoji {
  font-size: 1.4rem;
}

.service-body {
  font-size: 0.98rem;
}

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

/* Footer */
.site-footer {
  background-color: #F5F3EF;
  border-top: 1px solid rgba(61, 61, 61, 0.08);
  padding: 1.8rem 0 2.2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo {
  height: 42px;
  width: auto;
  opacity: 0.9;
}

.footer-copy {
  font-size: 0.85rem;
}

.btn-outline {
  background-color: transparent;
  color: #7BA7BC;
  border: 1.5px solid #7BA7BC;
  box-shadow: none;
}

.btn-outline:hover {
  background-color: #7BA7BC;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(123, 167, 188, 0.35);
}

.btn-outline-sm {
  font-size: 0.82rem;
  padding: 0.45rem 1.1rem;
}

.footer-disclaimer {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  max-width: 620px;
  text-align: center;
  color: #3D3D3D;
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background-color: rgba(184, 169, 201, 0.18);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(184, 169, 201, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 1.5rem;
  z-index: 40;
}

.modal-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 2rem 2.25rem 2.1rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
  position: relative;
}

.modal-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.9rem;
  margin-bottom: 0.3rem;
}

.modal-subtext {
  font-size: 0.98rem;
  margin-bottom: 1.3rem;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.95rem;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #3D3D3D;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-field label {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(61, 61, 61, 0.18);
  background-color: #FDFCF9;
  color: #3D3D3D;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #7BA7BC;
  box-shadow: 0 0 0 1px rgba(123, 167, 188, 0.4);
}

.form-submit {
  margin-top: 0.4rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    padding: 0.7rem 0;
  }

  .brand-logo {
    height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #F5F3EF;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1.2rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(61, 61, 61, 0.08);
    margin-top: 0.4rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    display: none;
    min-width: 190px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    padding: 3.2rem 0 3.6rem;
  }

  .hero-logo {
    max-width: 260px;
  }

  .hero-name {
    font-size: 1.7rem;
  }

  .hero-tagline {
    font-size: 1.3rem;
    letter-spacing: 0.14em;
  }

  .section {
    padding: 3rem 0;
  }

  .about-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .modal {
    padding: 1.6rem 1.5rem 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 220px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .service-title {
    font-size: 1.35rem;
  }
}
