@font-face {
  font-family: "Fraunces";
  src: url(../fonts/Fraunces-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url(../fonts/WorkSans-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --bg: #F5F1EA;
  --surface: #FFFFFF;
  --surface-2: #1C1C1C;
  --text: #1C1C1C;
  --text-muted: #6B6B6B;
  --text-light: #E8E2D5;
  --accent: #B8653A;
  --accent-2: #3D5A4C;
  --sage: #4A6B5A;
  --cream: #F5F1EA;
  --border: #E5DDD0;
  --border-dark: #2E2E2E;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, system-ui, sans-serif;

  --fs-display: clamp(2.8rem, 6vw, 5rem);
  --fs-h1: clamp(2.2rem, 4.5vw, 3.8rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 2.8rem);
  --fs-h3: clamp(1.3rem, 2vw, 1.6rem);
  --fs-body: clamp(1rem, 1.2vw, 1.05rem);
  --fs-small: 0.9rem;
  --fs-tiny: 0.8rem;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(28, 28, 28, 0.06);
  --shadow-md: 0 10px 40px -15px rgba(28, 28, 28, 0.15);
  --shadow-lg: 0 25px 70px -25px rgba(28, 28, 28, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-variation-settings: "opsz" 144;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
}

.overline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--accent);
}

.overline-light {
  color: var(--accent-2);
}

.overline-light::before {
  background: var(--accent-2);
}

.overline i {
  margin-right: 0.5rem;
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #9A5228;
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--text);
  color: var(--text);
}

.btn-light {
  background: var(--surface);
  color: var(--surface-2);
  border-color: var(--surface);
}

.btn-light:hover {
  background: transparent;
  color: var(--surface);
  border-color: var(--surface);
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
}

.logo:hover {
  color: var(--text);
}

.logo-mark {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
}

.logo-line1 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-line2 {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.2rem;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-list a.active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 101, 58, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 101, 58, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-home {
  position: relative;
  padding: 5rem 0 4rem;
  background: var(--bg);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  color: var(--surface-2);
}

.hero-content h1::first-line {
  color: var(--accent);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-support {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.support-chip {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.support-chip + .support-chip {
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
}

.chip-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

.chip-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
    margin-bottom: 50px;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(28, 28, 28, 0.85);
  color: white;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}

.hero-floating-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--surface);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-left: 3px solid var(--accent);
}

.hero-floating-card i {
  font-size: 1.4rem;
  color: var(--accent);
}

.hero-floating-card strong {
  display: block;
  font-size: 0.95rem;
}

.hero-floating-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.profile-divider {
  height: 3px;
  background: var(--surface-2);
  position: relative;
  margin: 0;
}

.profile-divider::before,
.profile-divider::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 10px;
  height: 9px;
  background: var(--accent);
}

.profile-divider::before {
  left: 10%;
}

.profile-divider::after {
  right: 10%;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-cream { background: var(--bg); }
.section-dark { background: var(--surface-2); color: var(--text-light); }
.section-sage { background: var(--accent-2); color: white; }
.section-surface { background: var(--surface); }

.section-dark h1, .section-dark h2, .section-dark h3,
.section-sage h1, .section-sage h2, .section-sage h3 {
  color: white;
}

.section-dark .overline,
.section-sage .overline {
  color: #E8C9A8;
}

.section-dark .overline::before,
.section-sage .overline::before {
  background: #E8C9A8;
}

.section-head {
  max-width: 720px;
  margin-bottom: 4rem;
}

.section-head h2 {
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.section-dark .section-sub,
.section-sage .section-sub {
  color: rgba(232, 226, 213, 0.8);
}

.section-foot {
  text-align: center;
  margin-top: 3.5rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.intro-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
  padding-top: 0.5rem;
}

.intro-body h2 {
  margin-bottom: 1.5rem;
}

.intro-body p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.intro-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.signature-line {
  width: 60px;
  height: 1px;
  background: var(--accent);
}

.intro-signature span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.intro-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.intro-visual {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
}

.intro-ruler {
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 0.5rem;
  border-right: 1px solid var(--border);
}

.ruler-tick {
  width: 8px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.ruler-tick:nth-child(odd) {
  width: 5px;
}

.intro-principles {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 1.5rem;
}

.principle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 1rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--accent);
}

.principle::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.intro-note {
  display: block;
  margin-top: 1.5rem;
  margin-left: 1.5rem;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}

.service-card {
  background: var(--surface-2);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  background: #252525;
}

.service-code {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(232, 226, 213, 0.4);
  letter-spacing: 0.1em;
}

.service-card i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: block;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  color: white;
}

.service-card p {
  font-size: 0.92rem;
  color: rgba(232, 226, 213, 0.75);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.service-tag {
  display: inline-block;
  font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
  background: rgba(184, 101, 58, 0.15);
  color: #E8C9A8;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.adv-card {
  background: var(--surface);
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.3s ease;
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.adv-icon {
  width: 54px;
  height: 54px;
  background: var(--bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--accent);
  border: 1px solid var(--border);
}

.adv-card h3 {
  margin-bottom: 0.75rem;
}

.adv-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: rgba(232, 226, 213, 0.3);
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.step-body {
  background: rgba(255, 255, 255, 0.04);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 2px solid rgba(232, 226, 213, 0.15);
}

.step-body h3 {
  margin-bottom: 0.75rem;
  color: white;
}

.step-body p {
  color: rgba(232, 226, 213, 0.8);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #E8C9A8;
  padding: 0.35rem 0.8rem;
  background: rgba(184, 101, 58, 0.15);
  border-radius: var(--radius-sm);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-quote {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.author-mark {
  width: 44px;
  height: 44px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 500;
  border: 1px solid var(--border);
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
}

.review-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.reviews-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cta-text h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-text p {
  color: rgba(232, 226, 213, 0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(232, 226, 213, 0.9);
}

.cta-list i {
  color: #E8C9A8;
}

.form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.form-head h3 {
  color: var(--text);
}

.form-tag {
  font-size: 0.78rem;
  color: var(--accent);
  padding: 0.3rem 0.7rem;
  background: rgba(184, 101, 58, 0.08);
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

.cta-form, .contact-form {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.form-row {
  margin-bottom: 1.2rem;
}

.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: all 0.2s ease;
  min-height: 48px;
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(184, 101, 58, 0.1);
}

.form-check label {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--accent);
}

.form-check a {
  color: var(--accent);
  text-decoration: underline;
}

.page-hero {
  position: relative;
  padding: 6rem 0 4rem;
  background: var(--surface-2);
  color: white;
  overflow: hidden;
}

.page-hero .overline {
  color: #E8C9A8;
}

.page-hero .overline::before {
  background: #E8C9A8;
}

.page-hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.page-hero-lead {
  font-size: 1.15rem;
  color: rgba(232, 226, 213, 0.85);
  max-width: 640px;
}

.page-hero .profile-divider::before,
.page-hero .profile-divider::after {
  background: #E8C9A8;
}

.service-detail {
  padding: 5rem 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.service-detail-grid.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.service-detail-grid.reverse .service-detail-visual {
  order: 2;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-code-lg {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.6;
}

.service-detail-body h2 {
  margin-bottom: 0.75rem;
}

.service-tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.section-dark .service-tagline {
  color: rgba(232, 226, 213, 0.7);
  border-bottom-color: var(--border-dark);
}

.service-detail-body > p:not(.service-tagline) {
  margin-bottom: 1.5rem;
}

.section-dark .service-detail-body > p:not(.service-tagline) {
  color: rgba(232, 226, 213, 0.85);
}

.service-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(184, 101, 58, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.section-dark .service-specs {
  background: rgba(232, 226, 213, 0.04);
  border-color: var(--border-dark);
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec i {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.spec strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 500;
}

.section-dark .spec strong {
  color: rgba(232, 226, 213, 0.6);
}

.spec span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
}

.section-dark .spec span {
  color: white;
}

.service-includes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.service-includes i {
  color: var(--accent);
  font-size: 0.85rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.story-body h2 {
  margin-bottom: 1.5rem;
}

.story-body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.signature-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}

.number-card {
  background: var(--surface-2);
  padding: 3rem 2rem;
  text-align: center;
}

.num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.num-label {
  font-size: 0.88rem;
  color: rgba(232, 226, 213, 0.8);
  line-height: 1.4;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.approach-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.approach-card:hover::before {
  transform: scaleX(1);
}

.approach-icon {
  width: 54px;
  height: 54px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--accent);
}

.approach-card h3 {
  margin-bottom: 0.75rem;
}

.approach-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.objects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.object-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(232, 226, 213, 0.15);
  transition: all 0.3s ease;
}

.object-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.object-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.object-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.object-card:hover .object-image img {
  transform: scale(1.04);
}

.object-body {
  padding: 2rem;
}

.object-body h3 {
  color: white;
  margin-bottom: 0.75rem;
}

.object-body p {
  font-size: 0.92rem;
  color: rgba(232, 226, 213, 0.85);
  margin-bottom: 1.2rem;
}

.object-tag {
  display: inline-block;
  font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
  background: rgba(184, 101, 58, 0.2);
  color: #E8C9A8;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.quality-body h2 {
  margin-bottom: 1.5rem;
}

.quality-body p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

.section-cta-small {
  text-align: center;
}

.cta-small-inner {
  max-width: 620px;
  margin: 0 auto;
}

.cta-small-inner h2 {
  margin-bottom: 1rem;
}

.section-sage .cta-small-inner h2,
.section-dark .cta-small-inner h2 {
  color: white;
}

.cta-small-inner p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  opacity: 0.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.contact-block-detail {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-block-detail strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.contact-block-detail a,
.contact-block-detail span {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-block-detail a:hover {
  color: var(--accent);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.8rem;
  transition: all 0.2s ease;
}

.faq-item[open] {
  background: rgba(184, 101, 58, 0.06);
  border-color: var(--accent);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.02rem;
  color: white;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin-top: 1rem;
  color: rgba(232, 226, 213, 0.85);
  font-size: 0.92rem;
}

.thanks-section {
  padding: 5rem 2rem;
  background: var(--bg);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-card {
  max-width: 640px;
  background: var(--surface);
  padding: 3.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
}

.thanks-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: rgba(184, 101, 58, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
}

.thanks-card h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.thanks-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.thanks-lead strong {
  color: var(--text);
}

.thanks-steps {
  text-align: left;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--radius-md);
}

.thanks-steps h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.step-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.step-item:last-child {
  border-bottom: none;
}

.step-item .step-num {
  width: 44px;
  height: 44px;
  font-size: 1rem;
}

.step-item strong {
  display: block;
  margin-bottom: 0.3rem;
}

.step-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

.thanks-info,
.thanks-contacts {
  text-align: left;
  margin-bottom: 2rem;
}

.thanks-info h3,
.thanks-contacts h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.thanks-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.thanks-info li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
}

.thanks-info i {
  color: var(--accent);
}

.thanks-contacts a {
  color: var(--accent);
  text-decoration: underline;
}

.site-footer {
  background: #151515;
  color: rgba(232, 226, 213, 0.8);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(232, 226, 213, 0.1);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.logo-footer .logo-line1 {
  color: white;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(232, 226, 213, 0.7);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-block strong {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
  font-weight: 500;
}

.contact-block span {
  font-size: 0.88rem;
  color: rgba(232, 226, 213, 0.7);
}

.footer-disclaimer {
  padding: 2rem 0;
  border-top: 1px solid rgba(232, 226, 213, 0.1);
  border-bottom: 1px solid rgba(232, 226, 213, 0.1);
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(232, 226, 213, 0.55);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(232, 226, 213, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.legal-update {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 1.5rem;
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  color: var(--accent);
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.legal-content ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.legal-content ul li {
  padding-left: 1.8rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--text);
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.legal-callout {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0 2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.legal-callout h2,
.legal-callout h3 {
  margin-top: 0;
  border: none;
  padding: 0;
  color: var(--text);
}

.legal-callout p {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  body {
    word-break: break-word;
  }
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
  }

  .nav-list.active {
    transform: translateY(0);
  }

  .hero-inner,
  .intro-grid,
  .services-grid,
  .adv-grid,
  .reviews-grid,
  .cta-grid,
  .contact-grid,
  .service-detail-grid,
  .service-detail-grid.reverse,
  .story-grid,
  .numbers-grid,
  .approach-grid,
  .objects-grid,
  .quality-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid.reverse .service-detail-visual {
    order: 0;
  }

  .hero-home {
    padding: 3rem 0;
  }

  .hero-floating-card {
    position: static;
    margin-top: 1.5rem;
  }

  .hero-support {
    flex-wrap: wrap;
  }

  .support-chip + .support-chip {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
  }

  .footer-top,
  .footer-contacts,
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .thanks-card {
    padding: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

@media screen and (max-width: 768px) {
  .hero-support {
    flex-direction: column;
  }
    .process-step {
      grid-template-columns: 1fr;
    }
    .footer-contacts, .step-item {
      grid-template-columns: 1fr;
    }
        .legal-content {
          padding: 0;
        }
}