*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --cream: #faf8f4;
  --warm-white: #f5f2ed;
  --sand: #e8e0d4;
  --stone: #c9bfb0;
  --charcoal: #2a2520;
  --warm-gray: #6b6259;
  --light-gray: #9c9289;
  --gold: #b8965a;
  --gold-light: #d4ad73;
  --text: #2a2520;
  --text-soft: #5a5149;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3.5rem;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 150, 90, 0.15);
}
.nav-logo,
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-logo {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
}
.nav-links,
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links li {
  position: relative;
}
.nav-links a,
.footer-links a {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
}
.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold);
}
.footer-social {
  display: flex;
  align-items: center;
}
.footer-social a {
  color: var(--warm-gray);
  transition: color 0.2s ease;
}
.footer-social a:hover {
  color: var(--gold);
}
.footer-social svg {
  width: 20px;
  height: 20px;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  padding: 0.75rem 0;
  background: rgba(250, 248, 244, 0.98);
  border: 1px solid rgba(184, 150, 90, 0.18);
  box-shadow: 0 22px 45px rgba(42, 37, 32, 0.08);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}
.nav-dropdown a {
  display: block;
  padding: 0.8rem 1.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}
.nav-item-services:hover .nav-dropdown,
.nav-item-services:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-cta,
.btn-primary,
.btn-gold {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}
.nav-cta {
  color: var(--charcoal) !important;
  border: 1px solid var(--gold);
  padding: 0.55rem 1.4rem;
}
.nav-cta:hover {
  background: var(--gold);
  color: white !important;
}
section {
  padding: 6rem 3.5rem;
}
.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label-no-margin {
  margin-top: 0;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.consultation-form-title {
  font-size: clamp(2rem, 3vw, 3rem);
}
.section-intro {
  font-size: 0.98rem;
  color: var(--text-soft);
  max-width: 640px;
  line-height: 1.85;
}
.page-hero {
  background: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?w=1600&q=85&fit=crop")
    center/cover;
  min-height: 64vh;
  display: flex;
  align-items: end;
  padding: 8rem 3.5rem 4rem;
}
.hero-card {
  max-width: 760px;
  background: rgba(250, 248, 244, 0.9);
  padding: 2.5rem;
  border: 1px solid rgba(184, 150, 90, 0.22);
  backdrop-filter: blur(8px);
}
.consultation-section {
  background: var(--warm-white);
}
.request-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}
.request-card,
.request-side {
  background: var(--cream);
  border: 1px solid rgba(184, 150, 90, 0.18);
}
.request-card {
  padding: 3rem;
}
.request-form {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
}
.request-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.request-field.full-width {
  grid-column: 1 / -1;
}
.request-field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.request-field input,
.request-field select,
.request-field textarea {
  width: 100%;
  border: 1px solid var(--sand);
  background: white;
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
}
.request-field input:focus,
.request-field select:focus,
.request-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.request-field textarea {
  min-height: 170px;
  resize: vertical;
}
.request-note {
  grid-column: 1 / -1;
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.8;
}
.media-upload-group {
  border: 1px dashed rgba(184, 150, 90, 0.5);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
}
.media-upload-group input[type="file"] {
  border-style: dashed;
  cursor: pointer;
}
.media-hint {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.media-preview-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.media-preview-item {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--warm-gray);
}
.form-status {
  grid-column: 1 / -1;
  display: none;
  padding: 0.85rem 1rem;
  border: 1px solid var(--sand);
  background: #fff;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--warm-gray);
}
.calendly-booking {
  margin-top: 1.5rem;
  display: none;
  border: 1px solid rgba(184, 150, 90, 0.25);
  background: #fff;
  padding: 1.25rem;
}
.calendly-booking-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
}
.calendly-booking-copy {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.calendly-inline-host {
  min-width: 320px;
  height: 760px;
}
.btn-primary,
.btn-gold {
  display: inline-block;
  padding: 1rem 2.4rem;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
  cursor: pointer;
}
.btn-primary:hover,
.btn-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.request-side {
  padding: 2.5rem;
}
.request-side-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.request-side-copy {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-areas,
.benefit-list {
  display: grid;
  gap: 0.7rem 1rem;
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.service-areas {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-areas li,
.benefit-list li {
  font-size: 0.84rem;
  color: var(--warm-gray);
  position: relative;
  padding-left: 1rem;
}
.service-areas li::before,
.benefit-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.7rem;
}
.contact-lines {
  display: grid;
  gap: 0.6rem;
}
.contact-lines a {
  font-size: 0.86rem;
  color: var(--charcoal);
  text-decoration: none;
}
.contact-lines a:hover {
  color: var(--gold);
}
footer {
  background: #1a1612;
  padding: 3rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(184, 150, 90, 0.15);
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--warm-gray);
  letter-spacing: 0.06em;
}
@media (max-width: 900px) {
  nav {
    padding: 1.25rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 4rem 1.5rem;
  }
  .page-hero {
    min-height: auto;
    padding: 6.5rem 1.5rem 2rem;
  }
  .hero-card,
  .request-card,
  .request-side {
    padding: 2rem;
  }
  .request-layout,
  .request-form,
  .service-areas {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile and tablet navigation */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 150, 90, 0.35);
  background: rgba(250, 248, 244, 0.72);
  color: var(--charcoal);
  cursor: pointer;
}
.mobile-menu-toggle span {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    top 0.2s ease;
}
.mobile-menu-toggle span::before {
  top: -6px;
}
.mobile-menu-toggle span::after {
  top: 6px;
}
nav.nav-open .mobile-menu-toggle span {
  background: transparent;
}
nav.nav-open .mobile-menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}
nav.nav-open .mobile-menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}
@media (max-width: 1024px) {
  nav {
    flex-wrap: wrap;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
  }
  .nav-logo {
    font-size: clamp(1rem, 4vw, 1.25rem);
    max-width: calc(100% - 60px);
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .nav-links {
    display: none !important;
    flex: 0 0 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0 0;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(184, 150, 90, 0.18);
  }
  nav.nav-open .nav-links {
    display: flex !important;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    line-height: 1.35;
  }
  .nav-item-services > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .nav-item-services > a::after {
    content: "+";
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0;
  }
  .nav-item-services.dropdown-open > a::after {
    content: "-";
  }
  .nav-dropdown {
    position: static !important;
    display: none;
    min-width: 0;
    padding: 0.25rem 0 0.7rem 0.9rem;
    margin: 0 0 0.45rem 0.2rem;
    border: 0;
    border-left: 1px solid rgba(184, 150, 90, 0.28);
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none !important;
  }
  .nav-item-services.dropdown-open .nav-dropdown {
    display: block;
  }
  .nav-dropdown a {
    padding: 0.55rem 0 0.55rem 0.85rem;
    white-space: normal;
  }
  .nav-cta {
    display: inline-block;
    width: 100%;
    margin-top: 0.4rem;
    text-align: center;
  }
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}
.lang-switch a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.25rem 0.5rem;
}
.lang-switch a:hover {
  color: var(--gold);
}
.lang-switch a.active {
  color: var(--charcoal);
  font-weight: 600;
}
.lang-switch .lang-sep {
  color: var(--stone);
  font-size: 0.7rem;
  user-select: none;
}
