:root {
  --paper: #f7f5f0;
  --paper-deep: #eeeae1;
  --ink: #242722;
  --ink-soft: #5e625b;
  --green: #344b3d;
  --green-dark: #26382e;
  --green-light: #dfe7df;
  --gold: #b7905b;
  --white: #fff;
  --line: rgba(36, 39, 34, 0.12);
  --shadow: 0 24px 70px rgba(30, 39, 31, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(36, 39, 34, 0.08);
  background: rgba(247, 245, 240, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px 5px 13px 5px;
  color: var(--white);
  background: var(--green);
  font-family: "STSong", "Songti SC", serif;
  font-size: 22px;
  box-shadow: 0 8px 22px rgba(52, 75, 61, 0.2);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  letter-spacing: 0.08em;
  font-size: 17px;
}

.brand-copy small {
  margin-top: 4px;
  color: #777b74;
  letter-spacing: 0.22em;
  font-size: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #4d514b;
  font-size: 14px;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--green);
}

.site-nav .nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 86px;
  background:
    radial-gradient(circle at 6% 20%, rgba(183, 144, 91, 0.12), transparent 25%),
    var(--paper);
}

.hero::after {
  position: absolute;
  right: -90px;
  bottom: -280px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(52, 75, 61, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 76px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 650;
}

.eyebrow {
  display: flex;
  align-items: center;
  letter-spacing: 0.08em;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  margin-right: 12px;
  background: var(--gold);
}

.hero h1 {
  margin: 0;
  letter-spacing: -0.04em;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.25;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-description {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.process-intro a:focus-visible {
  outline: 3px solid rgba(183, 144, 91, 0.4);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 26px rgba(52, 75, 61, 0.2);
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 30px rgba(52, 75, 61, 0.25);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.hero-points {
  display: flex;
  margin: 34px 0 0;
  padding: 0;
  gap: 22px;
  color: #676b65;
  list-style: none;
  font-size: 13px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-points span {
  color: var(--green);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 2px 68px 2px 68px;
  background: #dfddd4;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 29%;
  background: linear-gradient(170deg, #c3ad91 0%, #aa9173 100%);
  content: "";
}

.visual-light {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 74%;
  height: 100%;
  background: rgba(255, 252, 238, 0.6);
  clip-path: polygon(45% 0, 100% 0, 100% 100%, 0 100%);
}

.wall-art {
  position: absolute;
  top: 64px;
  border: 8px solid #eee9dd;
  background: linear-gradient(145deg, #9da79a, #52675a 48%, #cbb796 49%, #e2d7c4);
  box-shadow: 0 8px 20px rgba(50, 49, 42, 0.12);
}

.wall-art-large {
  left: 90px;
  width: 106px;
  height: 142px;
}

.wall-art-small {
  top: 94px;
  left: 210px;
  width: 76px;
  height: 100px;
  background: linear-gradient(35deg, #decdb5 0 45%, #7b897a 46% 100%);
}

.sofa {
  position: absolute;
  right: 60px;
  bottom: 78px;
  left: 58px;
  height: 176px;
}

.sofa-back,
.sofa-seat {
  position: absolute;
  right: 0;
  left: 0;
  border: 1px solid rgba(44, 52, 45, 0.09);
  background: #829184;
  box-shadow: 0 14px 22px rgba(35, 44, 37, 0.14);
}

.sofa-back {
  top: 0;
  height: 104px;
  border-radius: 22px 22px 10px 10px;
}

.sofa-seat {
  bottom: 8px;
  height: 80px;
  border-radius: 10px 10px 20px 20px;
  background: #76887a;
}

.pillow {
  position: absolute;
  z-index: 2;
  top: 28px;
  width: 82px;
  height: 69px;
  transform: rotate(-6deg);
  border-radius: 9px 14px 9px 14px;
  background: #d9c6a8;
  box-shadow: 0 6px 16px rgba(50, 51, 44, 0.12);
}

.pillow-left {
  left: 32px;
}

.pillow-right {
  right: 32px;
  transform: rotate(5deg);
  background: #d7d7ca;
}

.sofa-leg {
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 20px;
  transform: skew(-8deg);
  background: #4f4c43;
}

.leg-left { left: 38px; }
.leg-right { right: 38px; }

.floor-lamp {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 103px;
  width: 42px;
  height: 240px;
}

.floor-lamp i {
  display: block;
  width: 42px;
  height: 50px;
  border-radius: 50% 50% 8px 8px;
  background: #e7dfcc;
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}

.floor-lamp::before {
  position: absolute;
  top: 48px;
  left: 20px;
  width: 2px;
  height: 175px;
  background: #5e5c52;
  content: "";
}

.floor-lamp span {
  position: absolute;
  right: 3px;
  bottom: 0;
  width: 36px;
  height: 6px;
  border-radius: 50%;
  background: #5e5c52;
}

.plant {
  position: absolute;
  z-index: 2;
  bottom: 110px;
  left: 20px;
  width: 55px;
  height: 150px;
}

.plant::after {
  position: absolute;
  bottom: -34px;
  left: 8px;
  width: 42px;
  height: 48px;
  border-radius: 3px 3px 18px 18px;
  background: #b9825f;
  content: "";
}

.plant span {
  position: absolute;
  right: 26px;
  bottom: 5px;
  width: 2px;
  height: 120px;
  background: #526552;
}

.plant i {
  position: absolute;
  z-index: 1;
  width: 38px;
  height: 20px;
  transform: rotate(38deg);
  border-radius: 100% 0 100% 0;
  background: #617560;
}

.plant i:nth-child(1) { top: 25px; left: 7px; }
.plant i:nth-child(2) { top: 50px; left: 28px; transform: rotate(140deg); }
.plant i:nth-child(3) { top: 72px; left: 0; }
.plant i:nth-child(4) { top: 95px; left: 27px; transform: rotate(140deg); }
.plant i:nth-child(5) { top: 3px; left: 25px; transform: rotate(130deg); }

.side-table {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 62px;
  width: 77px;
  height: 80px;
}

.side-table i {
  display: block;
  width: 77px;
  height: 11px;
  border-radius: 50%;
  background: #615447;
}

.side-table::before,
.side-table::after {
  position: absolute;
  top: 8px;
  width: 2px;
  height: 63px;
  background: #615447;
  content: "";
}

.side-table::before { left: 12px; transform: rotate(7deg); }
.side-table::after { right: 12px; transform: rotate(-7deg); }

.side-table span {
  position: absolute;
  top: -24px;
  left: 27px;
  width: 25px;
  height: 25px;
  border-radius: 3px 3px 11px 11px;
  background: #ebe4d5;
}

.visual-badge {
  position: absolute;
  z-index: 10;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-width: 205px;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 25px rgba(44, 48, 42, 0.13);
  backdrop-filter: blur(10px);
}

.badge-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 20px;
}

.visual-badge > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.visual-badge strong { font-size: 14px; }
.visual-badge small { color: #777b74; font-size: 11px; }

.trust-strip {
  color: var(--white);
  background: var(--green);
}

.trust-grid {
  display: grid;
  padding: 24px 0;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { font-size: 15px; }
.trust-grid span { color: rgba(255, 255, 255, 0.6); font-size: 12px; }

.section {
  padding: 104px 0;
}

.section h2 {
  margin: 0;
  letter-spacing: -0.03em;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.35;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.about-copy {
  padding-top: 8px;
}

.about-copy p {
  margin: 0 0 20px;
  color: var(--ink-soft);
}

.about-copy .lead {
  color: var(--ink);
  font-family: "Songti SC", "STSong", serif;
  font-size: 23px;
  line-height: 1.8;
}

.company-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.55);
}

.company-card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-light);
  font-weight: 700;
}

.company-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  line-height: 1.55;
}

.company-card small { color: #858980; font-size: 12px; }
.company-card strong { font-size: 16px; }

.company-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #66816b;
  font-size: 12px;
}

.company-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6f9a78;
  box-shadow: 0 0 0 4px rgba(111, 154, 120, 0.12);
}

.services {
  background: #ece9e1;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-title-row > p {
  max-width: 280px;
  margin: 0 0 6px;
  color: var(--ink-soft);
  text-align: right;
}

.service-grid {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  padding: 38px 34px;
  border: 1px solid rgba(36, 39, 34, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(40, 47, 41, 0.09);
}

.service-card.featured {
  color: var(--white);
  background: var(--green);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(52, 75, 61, 0.25);
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: italic;
}

.featured .service-number { color: rgba(255, 255, 255, 0.2); }

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 58px;
  place-items: center;
  border-radius: 18px;
  color: var(--green);
  background: var(--green-light);
}

.featured .service-icon {
  color: #eddfc8;
  background: rgba(255, 255, 255, 0.1);
}

.service-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.service-card p {
  margin: 0;
  color: #6b6f68;
  font-size: 14px;
}

.featured p { color: rgba(255, 255, 255, 0.65); }

.process {
  background: #faf9f6;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 120px;
}

.process-intro > p:not(.section-kicker) {
  margin: 22px 0;
  color: var(--ink-soft);
}

.process-intro a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 700;
}

.process-intro a span {
  transition: transform 0.2s ease;
}

.process-intro a:hover span { transform: translateX(4px); }

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  gap: 38px 52px;
}

.process-list li {
  display: flex;
  gap: 17px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  padding-top: 1px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.process-list h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.process-list p {
  margin: 0;
  color: #777b74;
  font-size: 13px;
}

.contact {
  padding-top: 90px;
  background: #faf9f6;
}

.contact-shell {
  display: grid;
  overflow: hidden;
  border-radius: 32px;
  background: var(--green);
  box-shadow: 0 25px 70px rgba(37, 52, 42, 0.14);
  grid-template-columns: 0.82fr 1.18fr;
}

.contact-copy {
  position: relative;
  overflow: hidden;
  padding: 66px 56px;
  color: var(--white);
}

.contact-copy::before,
.contact-copy::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.contact-copy::before {
  right: -190px;
  bottom: -260px;
  width: 430px;
  height: 430px;
}

.contact-copy::after {
  right: -120px;
  bottom: -190px;
  width: 290px;
  height: 290px;
}

.section-kicker.light { color: #d8c39f; }

.contact-copy h2 {
  font-size: 43px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 340px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.contact-note {
  display: flex;
  max-width: 360px;
  align-items: flex-start;
  gap: 12px;
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-note > span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 13px;
}

.contact-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.contact-note strong {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.consult-form {
  margin: 12px;
  padding: 42px;
  border-radius: 24px;
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  position: relative;
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #3a3e38;
  font-size: 13px;
  font-weight: 650;
}

.form-field label b,
.privacy-check b {
  color: #b2695d;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #dedfd9;
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: #fafaf8;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input,
.form-field select {
  height: 48px;
  padding: 0 14px;
}

.form-field textarea {
  display: block;
  min-height: 96px;
  resize: vertical;
  padding: 12px 14px 26px;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #a7aaa3; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #708477;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(52, 75, 61, 0.09);
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 7px;
  height: 7px;
  transform: translateY(-70%) rotate(45deg);
  border-right: 1.5px solid #6b716a;
  border-bottom: 1.5px solid #6b716a;
  pointer-events: none;
  content: "";
}

.form-field select {
  padding-right: 38px;
  appearance: none;
}

.character-count {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: #a0a39d;
  font-size: 11px;
}

.field-error {
  display: block;
  min-height: 17px;
  margin-top: 3px;
  color: #b05e55;
  font-size: 11px;
  line-height: 1.4;
}

.form-field.invalid input,
.form-field.invalid select {
  border-color: #c78278;
  background: #fffafa;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
  color: #747870;
  font-size: 12px;
}

.privacy-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.privacy-check > span {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  border: 1px solid #c9cbc5;
  border-radius: 4px;
  background: #fafaf8;
}

.privacy-check input:checked + span {
  border-color: var(--green);
  background: var(--green);
}

.privacy-check input:checked + span::after {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  transform: rotate(45deg);
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  content: "";
}

.privacy-check input:focus-visible + span {
  outline: 3px solid rgba(183, 144, 91, 0.35);
  outline-offset: 2px;
}

.privacy-check em { font-style: normal; }
.privacy-error { min-height: 15px; }

.submit-button {
  width: 100%;
  margin-top: 3px;
  color: var(--white);
  background: var(--green);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.8;
  transform: none;
}

.button-loading {
  display: none;
  align-items: center;
  gap: 8px;
}

.button-loading i {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.submit-button.is-loading .button-label { display: none; }
.submit-button.is-loading .button-loading { display: inline-flex; }

.form-caption {
  margin: 13px 0 0;
  color: #a0a39d;
  text-align: center;
  font-size: 10px;
}

.site-footer {
  padding: 64px 0 24px;
  color: #d9ddd8;
  background: #202d25;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 48px;
}

.footer-brand .brand-mark {
  color: var(--green-dark);
  background: #d8c7aa;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong { font-size: 17px; }
.footer-brand small { margin-top: 4px; color: rgba(255, 255, 255, 0.42); font-size: 11px; }

.footer-info {
  display: flex;
  gap: 55px;
}

.footer-info div {
  display: flex;
  flex-direction: column;
}

.footer-info small {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.footer-info span { font-size: 12px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

.success-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  visibility: hidden;
  background: rgba(22, 30, 25, 0.62);
  opacity: 0;
  backdrop-filter: blur(7px);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.success-overlay.is-visible {
  visibility: visible;
  opacity: 1;
}

.success-dialog {
  width: min(440px, 100%);
  padding: 42px 40px 34px;
  transform: translateY(18px) scale(0.98);
  border-radius: 24px;
  outline: none;
  text-align: center;
  background: var(--white);
  box-shadow: 0 35px 90px rgba(17, 24, 19, 0.35);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.success-overlay.is-visible .success-dialog {
  transform: translateY(0) scale(1);
}

.success-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 21px;
  place-items: center;
  border-radius: 50%;
  background: #e2ebe3;
}

.success-icon span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 23px;
  animation: success-pop 0.4s 0.15s both;
}

.success-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 10px;
  font-weight: 700;
}

.success-dialog h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: 28px;
}

.success-dialog > p:not(.success-kicker) {
  margin: 13px 0 20px;
  color: #70746d;
  font-size: 14px;
}

.success-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 13px 16px;
  border-radius: 10px;
  color: #858981;
  background: #f4f5f1;
  font-size: 12px;
}

.success-summary strong { color: var(--green); font-size: 13px; }
.success-dialog .button { width: 100%; }
.success-dialog > small { display: block; margin-top: 12px; color: #aaaDA7; font-size: 10px; }

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes success-pop {
  from { transform: scale(0.4); opacity: 0; }
  70% { transform: scale(1.12); }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 960px) {
  .site-nav { gap: 22px; }
  .hero-grid { gap: 38px; }
  .hero-visual { min-height: 460px; }
  .hero h1 { font-size: 50px; }
  .about-grid, .process-grid { gap: 60px; }
  .contact-copy { padding: 54px 36px; }
  .consult-form { padding: 34px; }
  .footer-info { gap: 25px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), 580px); }
  .site-header { position: relative; }
  .header-inner { min-height: 70px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .site-nav .nav-cta { padding: 8px 16px; }
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(40px, 12vw, 52px); }
  .hero-description { font-size: 15px; }
  .hero-actions .button { flex: 1; padding: 0 18px; }
  .hero-points { flex-wrap: wrap; gap: 8px 18px; }
  .hero-visual { min-height: 410px; border-radius: 2px 42px 2px 42px; }
  .wall-art-large { left: 64px; }
  .wall-art-small { left: 180px; }
  .sofa { right: 48px; left: 48px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div { padding: 12px 5px; }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .section { padding: 76px 0; }
  .about-grid, .process-grid, .contact-shell { grid-template-columns: 1fr; gap: 40px; }
  .section-title-row { display: block; }
  .section-title-row > p { margin-top: 16px; text-align: left; }
  .service-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .service-card { min-height: 285px; }
  .service-icon { margin-bottom: 38px; }
  .process-list { gap: 26px; }
  .contact { padding-top: 54px; }
  .contact-shell { gap: 0; }
  .contact-copy { padding: 48px 30px 38px; }
  .contact-note { margin-top: 34px; }
  .consult-form { margin: 8px; padding: 30px 24px; }
  .footer-main { display: block; }
  .footer-info { display: grid; margin-top: 38px; grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { letter-spacing: 0.12em; }
  .hero-visual { min-height: 360px; }
  .wall-art { top: 44px; }
  .wall-art-large { left: 50px; width: 82px; height: 110px; }
  .wall-art-small { top: 68px; left: 143px; width: 62px; height: 82px; }
  .sofa { right: 36px; bottom: 60px; left: 36px; transform: scale(0.95); transform-origin: bottom center; }
  .floor-lamp { right: 10px; bottom: 82px; transform: scale(0.86); transform-origin: bottom center; }
  .plant { left: 4px; bottom: 89px; transform: scale(0.82); transform-origin: bottom center; }
  .side-table { right: 7px; bottom: 43px; transform: scale(0.82); }
  .visual-badge { right: 14px; bottom: 14px; min-width: 190px; }
  .trust-grid div { flex-direction: column; gap: 0; }
  .about-copy .lead { font-size: 20px; }
  .company-card { align-items: flex-start; padding: 18px; }
  .company-status { display: none; }
  .process-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .consult-form { padding: 28px 20px; }
  .contact-copy h2 { font-size: 36px; }
  .footer-info { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .success-dialog { padding: 36px 24px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
