:root {
  --ink: #20302f;
  --deep: #173d3a;
  --deep-2: #102b29;
  --accent: #d77b54;
  --accent-dark: #b65e3e;
  --cream: #fbf6ee;
  --sand: #efe3d3;
  --white: #ffffff;
  --muted: #6b7774;
  --line: #ddd3c6;
  --shadow: 0 22px 55px rgba(30, 48, 46, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.return-to-biy {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1000;
  padding: 12px 17px;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-2);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
  font-weight: 700;
  font-size: 14px;
}
.return-to-biy:hover { background: var(--accent); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251,246,238,.94);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(32,48,47,.09);
}
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 46% 54%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
}
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-family: "Playfair Display", serif; font-size: 22px; }
.brand-text small { color: var(--muted); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav a { font-weight: 600; font-size: 14px; }
.site-nav a:hover { color: var(--accent-dark); }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 23px;
  border: 0;
  border-radius: 9px;
  color: var(--white);
  background: var(--accent);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(215,123,84,.22);
}
.button:hover { background: var(--accent-dark); transform: translateY(-1px); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 14px; }

.hero {
  padding: 76px 0 72px;
  background:
    radial-gradient(circle at 92% 8%, rgba(215,123,84,.18), transparent 30%),
    linear-gradient(135deg, #fbf6ee 0%, #f4e9dd 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 58px; }
.eyebrow { margin: 0 0 14px; color: var(--accent-dark); font-weight: 800; letter-spacing: .13em; font-size: 12px; }
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.08; }
h1 { margin: 0; font-size: clamp(46px, 6vw, 76px); letter-spacing: -.035em; }
.hero-lead { max-width: 620px; margin: 24px 0 0; color: var(--muted); font-size: 19px; }
.hero-actions { margin-top: 30px; display: flex; align-items: center; gap: 24px; }
.text-link { font-weight: 800; color: var(--deep); }
.text-link span { color: var(--accent); }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: var(--deep); font-size: 13px; font-weight: 700; }
.hero-photo {
  min-height: 510px;
  border-radius: 28px 28px 90px 28px;
  background:
    linear-gradient(rgba(23,61,58,.12), rgba(23,61,58,.32)),
    url("assets/hero-photo.svg") center/cover,
    linear-gradient(145deg, #5e8176, #c49a7d);
  box-shadow: var(--shadow);
  display: grid;
  place-items: end start;
  overflow: hidden;
}
.photo-label { margin: 24px; padding: 12px 15px; border-radius: 10px; background: rgba(255,255,255,.92); display: grid; }
.photo-label span { font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.photo-label small { color: var(--muted); }

.service-strip { background: var(--deep); color: var(--white); }
.service-strip-grid { min-height: 92px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.service-strip span { display: flex; gap: 13px; align-items: center; justify-content: center; font-weight: 700; }
.service-strip b { color: #efad8f; }

.section { padding: 96px 0; }
.section-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 50px; align-items: end; margin-bottom: 40px; }
.section-heading h2 { margin: 0; font-size: clamp(35px, 5vw, 54px); }
.section-heading > p { color: var(--muted); margin: 0; }
.section-heading.centered { display: block; max-width: 760px; margin: 0 auto 42px; text-align: center; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 14px 34px rgba(30,48,46,.06); }
.service-card.featured { color: var(--white); background: var(--deep); border-color: var(--deep); transform: translateY(-12px); }
.service-card h3 { margin: 24px 0 12px; font-size: 28px; }
.service-card p { color: var(--muted); }
.service-card.featured p { color: rgba(255,255,255,.72); }
.service-card a { display: inline-block; margin-top: 10px; color: var(--accent-dark); font-weight: 800; }
.service-card.featured a { color: #efad8f; }
.service-icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--sand); color: var(--accent-dark); font-weight: 800; }

.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.about-photo {
  min-height: 530px;
  display: grid;
  place-items: center;
  border-radius: 90px 24px 24px 24px;
  color: var(--white);
  background:
    linear-gradient(rgba(23,61,58,.28), rgba(23,61,58,.4)),
    url("assets/about-photo.svg") center/cover,
    linear-gradient(145deg, #c58a6f, #375f58);
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: var(--shadow);
}
.about-copy h2 { margin: 0 0 22px; font-size: clamp(35px, 5vw, 54px); }
.about-copy > p { color: var(--muted); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.stats div { padding: 18px; border-left: 3px solid var(--accent); background: var(--cream); }
.stats strong { display: block; color: var(--deep); font-size: 28px; }
.stats span { color: var(--muted); font-size: 13px; }

.reviews-section { background: var(--sand); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
blockquote { margin: 0; padding: 30px; background: var(--white); border-radius: 16px; box-shadow: 0 12px 28px rgba(30,48,46,.06); }
blockquote p { margin: 0 0 24px; font-family: "Playfair Display", serif; font-size: 23px; line-height: 1.4; }
blockquote footer { color: var(--accent-dark); font-weight: 800; }

.contact-section { color: var(--white); background: var(--deep); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; align-items: start; }
.contact-copy h2 { margin: 0 0 20px; font-size: clamp(38px, 5vw, 58px); }
.contact-copy > p { color: rgba(255,255,255,.72); }
.contact-details { margin-top: 30px; display: grid; gap: 8px; font-weight: 700; }
.contact-form { padding: 32px; color: var(--ink); background: var(--white); border-radius: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 9px; padding: 13px 14px; color: var(--ink); background: #fffcf8; }
.full-field { grid-column: 1 / -1; }
.form-note { margin: -2px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

.site-footer { padding-top: 62px; color: var(--white); background: var(--deep-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 50px; padding-bottom: 48px; }
.footer-grid > div { display: grid; align-content: start; gap: 9px; }
.footer-grid p, .footer-grid span { color: rgba(255,255,255,.66); }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand .brand-text small { color: rgba(255,255,255,.6); }
.footer-bottom { min-height: 70px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.62); font-size: 13px; }
.footer-bottom a { color: #efad8f; font-weight: 700; }

@media (max-width: 900px) {
  .site-nav { position: fixed; inset: 82px 16px auto; display: none; padding: 20px; border-radius: 14px; background: var(--white); box-shadow: var(--shadow); }
  .site-nav.open { display: grid; }
  .menu-toggle { display: inline-flex; border: 0; background: transparent; font-weight: 800; }
  .header-inner > .button { display: none; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-photo, .about-photo { min-height: 430px; }
  .cards, .review-grid { grid-template-columns: 1fr; }
  .service-card.featured { transform: none; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 72px; }
  .site-nav { top: 72px; }
  .brand-text strong { font-size: 19px; }
  .hero { padding: 54px 0; }
  h1 { font-size: 45px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .text-link { text-align: center; }
  .trust-row { display: grid; gap: 7px; }
  .hero-photo { min-height: 350px; }
  .service-strip-grid { grid-template-columns: 1fr; padding: 18px 0; gap: 12px; }
  .service-strip span { justify-content: flex-start; }
  .section { padding: 72px 0; }
  .about-photo { min-height: 360px; }
  .stats { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
  .full-field { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
  .return-to-biy { left: 12px; right: 12px; bottom: 12px; text-align: center; }
}

.field-help{display:block;margin-top:7px;color:#66758c;font-size:12px;line-height:1.45}
