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

/* ── VARIABLES ── */
:root {
  --ink: #1a1714;
  --ink-mid: #4a4640;
  --ink-light: #8a8480;
  --cream: #f6f2eb;
  --cream-dark: #ede8df;
  --gold: #b07d3a;
  --gold-light: #d4a55e;
  --red: #8b2c2c;
  --white: #fdfbf8;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans SC', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

section { padding: 6rem 5vw; }

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

.section-label span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  transition: background 0.25s, transform 0.15s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  transition: all 0.25s;
  cursor: pointer;
  background: transparent;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.img-placeholder {
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--ink-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.img-placeholder .photo-icon {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5vw;
  background: rgba(246,242,235,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(176,125,58,0.2);
}

.nav-logo {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--ink-mid);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 5vw 5rem;
  gap: 4rem;
}

.hero-text { max-width: 520px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
}

.hero-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 420px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 580px;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 85%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-img-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 52%;
  height: 240px;
  object-fit: cover;
  border: 5px solid var(--cream);
}

.hero-badge {
  position: absolute;
  top: 2rem;
  left: -1rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.stat-float {
  position: absolute;
  bottom: 3.5rem;
  right: 0.5rem;
  background: var(--ink);
  color: var(--cream);
  padding: 1.2rem 1.6rem;
  text-align: center;
}

.stat-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  opacity: 0.7;
  margin-top: 0.3rem;
  display: block;
}

/* ── SERVICES ── */
.services { background: var(--white); }

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services-desc {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
  cursor: default;
}

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

.service-card:hover .service-num,
.service-card:hover .service-name,
.service-card:hover .service-text { color: var(--cream); }

.service-card:hover .service-icon-wrap { border-color: rgba(255,255,255,0.15); }

.service-card:hover .service-icon-wrap svg { stroke: var(--gold-light); }

.service-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  transition: color 0.3s;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: border-color 0.3s;
}

.service-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink-mid);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s;
}

.service-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}

.service-text {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.85;
  transition: color 0.3s;
}

/* ── PHOTOS ── */
.photos-section { background: var(--cream-dark); padding: 5rem 5vw; }

.photos-inner { max-width: 1100px; margin: 0 auto; }

.photos-head { margin-bottom: 3rem; }

.photo-wrap {
  overflow: hidden;
  position: relative;
}

.photo-wrap img,
.photo-wrap .img-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.photo-wrap:hover img { transform: scale(1.04); }

.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(transparent, rgba(26,23,20,0.7));
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 0.3s;
}

.photo-wrap:hover .photo-caption { opacity: 1; }

/* ── VIDEO ── */
.video-section { background: var(--white); padding: 5rem 5vw; }

.video-inner { max-width: 1100px; margin: 0 auto; }

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.video-item-label {
  font-size: 0.82rem;
  color: var(--ink-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── TESTIMONIAL ── */
.testimonial-section { background: var(--ink); padding: 6rem 5vw; }

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

.testimonial-section .section-label::before { background: var(--gold); }
.testimonial-section .section-label { justify-content: center; }
.testimonial-section .section-label span { color: var(--gold-light); }

.testimonial-section .section-title { color: var(--cream); margin-bottom: 4rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

.testimonial-card {
  border: 1px solid rgba(176,125,58,0.25);
  padding: 2rem;
  position: relative;
}

.quote-mark {
  font-family: 'Noto Serif SC', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: -1rem;
  display: block;
}

.quote-text {
  font-size: 0.95rem;
  color: rgba(246,242,235,0.85);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.author-info span {
  font-size: 0.78rem;
  color: rgba(246,242,235,0.5);
}

.results-strip {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(176,125,58,0.2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.result-item { text-align: center; }

.result-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.result-desc {
  font-size: 0.78rem;
  color: rgba(246,242,235,0.55);
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  display: block;
}

/* ── CONTACT ── */
.contact-section { background: var(--cream); padding: 6rem 5vw; }

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info { max-width: 440px; }

.contact-info .section-title { margin-bottom: 1.5rem; }

.contact-info p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.contact-details { list-style: none; display: flex; flex-direction: column; gap: 1rem; }

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--ink-mid);
}

.contact-details .detail-label {
  font-weight: 500;
  color: var(--ink);
  min-width: 48px;
}

.contact-form-wrap {
  background: var(--white);
  padding: 2.5rem;
}

.form-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.8rem;
  letter-spacing: 0.05em;
}

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--ink-mid);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

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

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s;
  margin-top: 0.5rem;
}

.btn-submit:hover { background: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 2rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(176,125,58,0.15);
}

.footer-logo {
  font-family: 'Noto Serif SC', serif;
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(246,242,235,0.4);
  letter-spacing: 0.08em;
}

/* ── MOBILE BOTTOM CTA BAR ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--ink);
  padding: 0.9rem 5vw;
  gap: 0.75rem;
  border-top: 1px solid rgba(176,125,58,0.3);
}

.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Noto Sans SC', sans-serif;
}

.mobile-cta-bar .m-btn-primary {
  background: var(--gold);
  color: var(--white);
}

.mobile-cta-bar .m-btn-secondary {
  border: 1px solid rgba(176,125,58,0.5);
  color: var(--gold-light);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text > * { animation: fadeUp 0.7s ease both; }
.hero-eyebrow  { animation-delay: 0.05s; }
.hero-title    { animation-delay: 0.15s; }
.hero-subtitle { animation-delay: 0.25s; }
.hero-cta      { animation-delay: 0.35s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  nav { padding: 1rem 5vw; }
  .nav-links { display: none; }
  .nav-logo { font-size: 0.95rem; }

  .mobile-cta-bar { display: flex !important; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
    gap: 0;
  }
  .hero-visual {
    order: -1;
    height: 70vw;
    max-height: 360px;
    width: 100%;
    position: relative;
  }
  .hero-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .hero-img-accent { display: none; }
  .hero-badge { display: none; }
  .stat-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1.1rem;
  }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.65rem; }

  .hero-text {
    padding: 2rem 5vw 5rem;
    max-width: 100%;
  }
  .hero-eyebrow { margin-bottom: 1rem; }
  .hero-eyebrow span { font-size: 0.68rem; }
  .hero-title { font-size: 2rem; margin-bottom: 0.8rem; }
  .hero-subtitle { font-size: 0.92rem; margin-bottom: 1.8rem; }
  .hero-cta { gap: 0.75rem; }
  .btn-primary, .btn-secondary {
    padding: 0.8rem 1.6rem;
    font-size: 0.82rem;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .about-portrait {
    max-width: 220px;
    margin: 0 auto;
  }
  .about-portrait .name-card {
    right: -0.5rem !important;
    bottom: -1rem !important;
  }

  section { padding: 3.5rem 5vw; }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .service-card { padding: 1.8rem 1.4rem; }

  .photos-grid-outer > div:first-child {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    height: auto !important;
    gap: 4px !important;
    margin-bottom: 4px !important;
  }
  .photos-grid-outer > div:first-child > div:first-child {
    height: 44vw !important;
  }
  .photos-grid-outer > div:first-child > div:last-child {
    display: grid !important;
    grid-template-rows: 1fr 1fr !important;
    height: 44vw !important;
    gap: 4px !important;
  }
  .photos-grid-outer > div:last-child {
    height: 28vw !important;
  }

  .video-section { padding: 3.5rem 5vw !important; }

  .testimonial-section { padding: 3.5rem 5vw; }
  .testimonial-card { padding: 1.5rem; }
  .quote-mark { font-size: 3rem; }
  .quote-text { font-size: 0.88rem; }
  .results-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }
  .result-num { font-size: 1.6rem; }
  .result-desc { font-size: 0.68rem; }

  .contact-section { padding: 3.5rem 5vw 7rem; }
  .contact-form-wrap { padding: 1.5rem; }

  footer {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
    padding: 1.5rem 5vw;
  }
}
