/* ═══════════════════════════════════════════
   Level One Management — Global Styles
   Studio McGee–inspired: warm, calm, airy
   ═══════════════════════════════════════════ */

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

:root {
  --linen: #f5f0eb;
  --warm-white: #faf8f5;
  --cream: #ede8e2;
  --stone: #c4bab0;
  --warm-gray: #9a918a;
  --charcoal: #3d3832;
  --ink: #2a2520;
  --sage: #8a9580;
  --sage-light: #e8ebe5;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

html.js body {
  opacity: 0;
  transition: opacity 0.7s ease;
}

html.js body.is-loaded {
  opacity: 1;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
}

/* ─── TYPOGRAPHY ─── */
.serif {
  font-family: "Cormorant Garamond", serif;
}

.label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ─── NAV ─── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.logo span {
  font-weight: 400;
  color: var(--warm-gray);
}
.logo a {
  color: inherit;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.nav-links a {
  color: inherit;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--charcoal);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--charcoal);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links .active {
  color: var(--charcoal);
}
.nav-links .active::after {
  width: 100%;
}

.nav-contact {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--stone);
  cursor: pointer;
  transition: all 0.3s;
}

.nav-contact:hover {
  background: var(--charcoal);
  color: var(--warm-white);
  border-color: var(--charcoal);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--charcoal);
  color: var(--warm-white);
  border: 1px solid var(--charcoal);
  font-size: 0.82rem;
  font-weight: 400;
  font-family: inherit;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.btn-text {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.btn-text:hover {
  color: var(--charcoal);
}
.btn-text .arrow {
  font-size: 1rem;
  transition: transform 0.3s;
}
.btn-text:hover .arrow {
  transform: translateX(4px);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 10rem 5vw 5rem;
  text-align: center;
  background: var(--linen);
}

.page-hero .label {
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto;
}

/* ─── SECTION UTILITIES ─── */
.section {
  padding: 6rem 5vw;
}

.section--linen {
  background: var(--linen);
}
.section--white {
  background: var(--warm-white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .label {
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 2.5rem 5vw;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--warm-white);
}

.trust-item {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--linen);
  padding: 3rem 2.5rem;
  transition: background 0.4s;
}

.service-card:hover {
  background: var(--cream);
}

.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: var(--stone);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.service-divider {
  width: 24px;
  height: 1px;
  background: var(--stone);
  margin-bottom: 1.5rem;
}

.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.service-text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--warm-gray);
}

/* ─── PHOTO STRIP ─── */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.photo-strip-item {
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s;
}

.photo-strip-item:hover img {
  transform: scale(1.03);
}

/* ─── QUOTE ─── */
.quote-section {
  padding: 6rem 5vw;
  text-align: center;
  background: var(--linen);
}

.quote-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

.quote-attr {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ─── TWO COLUMN LAYOUT ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.two-col--gap {
  gap: 4rem;
  align-items: center;
}

.two-col .col-image {
  overflow: hidden;
}

.two-col .col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.two-col .col-content {
  padding: 4rem 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.two-col .col-content .label {
  margin-bottom: 1.25rem;
}

.two-col .col-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.two-col .col-content p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}

.two-col .col-content p:last-of-type {
  margin-bottom: 2rem;
}

/* ─── DETAIL LIST (services page) ─── */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.detail-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.detail-item p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--warm-gray);
}

.detail-item .detail-divider {
  width: 20px;
  height: 1px;
  background: var(--stone);
  margin-bottom: 1rem;
}

/* ─── CONTACT FORM ─── */
.contact-form {
  max-width: 560px;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--stone);
  background: var(--warm-white);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink);
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--charcoal);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  padding: 0.9rem 2.5rem;
  background: var(--charcoal);
  color: var(--warm-white);
  border: 1px solid var(--charcoal);
  font-size: 0.82rem;
  font-weight: 400;
  font-family: inherit;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  background: var(--ink);
  border-color: var(--ink);
}

/* ─── CONTACT INFO ─── */
.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  margin-bottom: 2rem;
}

.contact-info-list .info-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.4rem;
}

.contact-info-list .info-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--ink);
}

.contact-info-list .info-value a {
  color: var(--ink);
  transition: color 0.3s;
}

.contact-info-list .info-value a:hover {
  color: var(--warm-gray);
}

/* ─── FOOTER ─── */
footer {
  padding: 3rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--warm-white);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
}

.footer-contact {
  font-size: 0.78rem;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.footer-contact:hover {
  color: var(--charcoal);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 5rem 5vw;
  text-align: center;
  background: var(--charcoal);
  color: var(--warm-white);
}

.cta-banner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--stone);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-banner .btn-primary {
  background: var(--warm-white);
  color: var(--charcoal);
  border-color: var(--warm-white);
}

.cta-banner .btn-primary:hover {
  background: var(--linen);
  border-color: var(--linen);
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-contact {
    display: none;
  }
  .nav-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-content {
    max-width: 100% !important;
    margin: 0 !important;
  }
  .hero-image-wrap {
    height: 55vw;
    min-height: 280px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
  .two-col .col-image img {
    min-height: 280px;
  }
  .two-col .col-content {
    padding: 3rem 6vw;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }
  .photo-strip-item img {
    height: 240px;
  }

  .trust-strip {
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js body {
    transition: none;
  }

  .fade-in {
    transition: none;
    transform: none;
  }
}
