:root {
  --gold: #b9924a;
  --gold-deep: #8d6a2e;
  --charcoal: #1f2228;
  --charcoal-soft: #2f343d;
  --gray: #6b7280;
  --bg: #f5f5f3;
  --white: #ffffff;
  --red: #9f2d2d;
  --line: #e6e3dd;
  --shadow: 0 10px 25px rgba(31, 34, 40, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
}

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

section[id] {
  scroll-margin-top: 76px;
}

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

.container { width: min(1160px, 92%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

.brand { font-weight: 700; letter-spacing: 0.04em; }

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.brand-logo span {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  flex-wrap: wrap;
}

.nav-links > a,
.nav-item > a {
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  line-height: 1;
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-item > a:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(180, 140, 70, 0.28);
  border-radius: 999px;
  background: rgba(255, 248, 235, 0.92);
  white-space: nowrap;
}

.nav-phone:hover,
.nav-phone.active {
  border-bottom-color: rgba(180, 140, 70, 0.28);
}

.nav-phone-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: transparent;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.nav-phone-number {
  color: #3a2a12;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  z-index: 80;
}

.dropdown-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
}

.dropdown-menu a:hover {
  background: #f4efe5;
  color: var(--gold-deep);
}

.nav-item.has-dropdown:hover .dropdown-menu {
  display: block;
}

.nav-item.has-dropdown:focus-within .dropdown-menu {
  display: block;
}

.nav-item.has-dropdown.is-open .dropdown-menu {
  display: block;
}

.hero-banner {
  position: relative;
  min-height: clamp(360px, 31.25vw, 600px);
  overflow: hidden;
  background: #1f2228;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #12151b;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 21, 26, 0.78), rgba(19, 21, 26, 0.34));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(580px, calc(100% - 48px));
  max-width: 580px;
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: 40px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-align: left;
  margin-left: clamp(16px, 8vw, 92px);
  margin-right: auto;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.08;
  color: #fff;
  max-width: 100%;
}

.hero-content h2 {
  margin: 12px 0 14px;
  font-weight: 500;
  font-size: clamp(18px, 3vw, 30px);
  line-height: 1.35;
  color: #efe8d7;
  max-width: 100%;
}

.hero-compact .hero-content h2 {
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.45;
  max-width: 22ch;
}

.hero-content p {
  margin: 0;
  max-width: 56ch;
  color: #e1e6ef;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 11px 20px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
}

.btn-primary { background: var(--gold); color: #251d10; }
.btn-primary:hover { background: #c6a258; }

/* Outline button default for light backgrounds */
.btn-outline {
  color: #2b2f36;
  border: 1px solid rgba(43, 47, 54, 0.45);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover {
  color: #111827;
  border-color: #b99045;
  background: rgba(185, 144, 69, 0.08);
}

/* Keep white-outline style only on dark sections */
.section-dark .btn-outline,
.hero-banner .btn-outline,
.cta-block .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.section-dark .btn-outline:hover,
.hero-banner .btn-outline:hover,
.cta-block .btn-outline:hover {
  color: #fff;
  border-color: #b99045;
  background: rgba(185, 144, 69, 0.18);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(20, 24, 30, 0.52);
  color: #fff;
  z-index: 4;
  cursor: pointer;
}

.hero-prev { left: 18px; }
.hero-next { right: 18px; }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
}

.hero-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.section {
  padding: 62px 0;
}

.section-dark {
  background: linear-gradient(160deg, #f0eee9, #f7f5f1);
}

.section h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 36px);
}

.section-intro {
  color: var(--gray);
  margin-bottom: 24px;
}

.tab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tab-tag {
  border: 1px solid #d8d3c6;
  background: #fff;
  color: #4b525f;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
}

.tab-tag.is-active,
.tab-tag:hover {
  border-color: var(--gold);
  background: #f8f0df;
  color: #473111;
}

.tab-panel {
  display: none;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.tab-panel.is-active {
  display: grid;
}

.feature-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.feature-image {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 240px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}

.feature-copy h4 {
  margin: 0 0 10px;
  font-size: 24px;
}

.feature-copy p {
  margin: 0 0 8px;
  color: var(--gray);
}

.image-grid {
  display: grid;
  gap: 16px;
}

.image-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.showcase-card .media-slot {
  margin: 0;
  border: 0;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f5f2ec;
}

.showcase-card .media-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-card h4,
.showcase-card p {
  margin: 0;
  padding: 0 14px;
}

.showcase-card h4 {
  padding-top: 16px;
  font-size: 18px;
}

.showcase-card p {
  color: var(--gray);
  font-size: 14px;
  padding-bottom: 8px;
}

.showcase-card p:last-child {
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.showcase-card p .btn,
.showcase-card p a.btn {
  margin-top: auto;
}

.process-line {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.process-line li {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.strength-list {
  margin: 0;
  padding-left: 20px;
}

.strength-list li {
  margin-bottom: 10px;
}

.cta-block {
  background: linear-gradient(130deg, #262a31, #1b1f26);
  border-radius: 16px;
  color: #f5efe0;
  padding: 28px;
}

.cta-block h3 {
  margin: 0 0 10px;
}

.site-footer {
  margin-top: 50px;
  background: #181b21;
  color: #d5dae4;
  padding: 28px 0 92px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.mobile-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  gap: 1px;
  background: #d8dce4;
}

.mobile-fixed a {
  flex: 1;
  text-align: center;
  padding: 12px 6px;
  background: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.mobile-fixed a.primary {
  background: var(--gold);
  color: #21190d;
}

.media-slot {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #ece8df;
}

.media-slot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(120deg, #f2efe8, #d9d3c8);
}

.media-slot .media-fallback {
  display: none;
  padding: 22px 14px;
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  background: #f8f6f1;
}

.media-slot.is-broken .media-fallback { display: block; }
.media-slot.is-broken img { display: none; }

@media (max-width: 980px) {
  .image-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tab-panel,
  .feature-split,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: auto;
    padding: 10px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    gap: 10px 14px;
    font-size: 14px;
  }

  .nav-phone {
    padding: 7px 10px;
  }

  .nav-phone-tag {
    font-size: 11px;
  }

  .nav-phone-number {
    font-size: 13px;
  }

  .brand-logo img {
    height: 34px;
  }

  .dropdown-menu {
    display: none !important;
  }

  .hero-banner {
    min-height: 420px;
  }

  .hero-content {
    padding-top: 120px;
    width: calc(100% - 32px);
    max-width: none;
    margin-left: 16px;
  }

  .hero-nav {
    width: 32px;
    height: 32px;
  }

  .section {
    padding: 50px 0;
  }

  .image-grid-3,
  .process-line {
    grid-template-columns: 1fr;
  }

  .tab-tags {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .mobile-fixed { display: flex; }
}

.material-craft-grid .showcase-card h4,
.material-craft-grid .showcase-card p {
  text-align: left;
}

.material-craft-grid .showcase-card h4 {
  font-size: 17px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.process-num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #c9a45d, #9f7a3e);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.process-card h4 {
  margin: 0 0 8px;
  font-size: 20px;
}

.process-card p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
}

.about-copy {
  height: 100%;
}

.about-image-card {
  padding: 18px;
  overflow: hidden;
}

.about-image-card img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  min-height: 0;
  object-fit: cover;
  border-radius: 10px;
  margin: 14px auto 0;
}

.about-profile-text {
  white-space: pre-wrap;
}

.honor-scroll-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  overflow: hidden;
}

.honor-scroll-wrap h4 {
  margin: 0 0 10px;
  font-size: 24px;
}

.honor-image-stack {
  display: grid;
  gap: 14px;
}

.honor-image-card img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  border-radius: 10px;
  margin: 14px auto 0;
}

.honor-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.honor-item {
  background: #f7f5f1;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
}

.honor-item img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.honor-item p {
  margin: 0;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--gray);
}

@media (max-width: 980px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.material-craft-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.material-craft-column {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(180,140,70,0.18);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.section-subhead {
  margin-bottom: 18px;
}

.section-subhead h4 {
  margin: 0 0 8px;
  font-size: 22px;
}

.section-subhead p {
  margin: 0;
  color: #666;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  grid-auto-rows: 1fr;
}

.mini-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mini-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.mini-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.mini-card-body h5 {
  margin: 0;
  font-size: 16px;
}

.mini-card-body p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  min-height: 44px;
}

@media (max-width: 900px) {
  .material-craft-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .mini-card-grid {
    grid-template-columns: 1fr;
  }
}

/* EN Materials & Craftsmanship alignment fix */
html[lang="en"] #materials .material-craft-column {
  display: flex;
  flex-direction: column;
}

html[lang="en"] #materials .section-subhead {
  min-height: 92px;
}

html[lang="en"] #materials .mini-card-grid {
  align-items: stretch;
}

html[lang="en"] #materials .mini-card-body p {
  min-height: 52px;
}


@media (max-width: 1200px) {
  .hero-content {
    width: min(560px, calc(100% - 48px));
    max-width: 560px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    width: min(520px, calc(100% - 40px));
    max-width: 520px;
    margin-left: clamp(14px, 4vw, 36px);
  }
}

@media (max-width: 768px) {
  .hero-content {
    width: calc(100% - 32px);
    max-width: none;
    margin-left: 16px;
    padding-top: 112px;
  }
}

/* Final nav size lock: prevent shrink on anchor/hash/active states */
.site-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  height: auto !important;
  min-height: 64px !important;
  transform: none !important;
  zoom: 1 !important;
  left: 0;
  right: 0;
}

.nav-wrap {
  min-height: 64px !important;
  height: 64px !important;
  display: flex !important;
  align-items: center !important;
  transform: none !important;
}

.brand-logo img {
  height: 42px !important;
  width: auto !important;
  max-height: 42px !important;
  display: block !important;
  transform: none !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 24px;
  transform: none !important;
}

.nav-phone {
  display: inline-flex !important;
  align-items: center !important;
}

.nav-links a,
.nav-links a:visited,
.nav-links a:hover,
.nav-links a:focus,
.nav-links a:active,
.nav-links a.active {
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 500;
  transform: none !important;
  zoom: 1 !important;
}

.nav-item > a,
.nav-item > a:visited,
.nav-item > a:hover,
.nav-item > a:focus,
.nav-item > a:active {
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 500;
  transform: none !important;
}

.dropdown-menu a,
.dropdown-menu a:hover,
.dropdown-menu a:focus,
.dropdown-menu a:active {
  font-size: 14px !important;
  line-height: 1.6 !important;
  transform: none !important;
}

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

section[id] {
  scroll-margin-top: 76px;
}

body {
  padding-top: 64px;
}

@media (max-width: 900px) {
  .nav-wrap {
    min-height: 64px !important;
    height: auto !important;
  }

  .brand-logo img {
    height: 38px !important;
    max-height: 38px !important;
  }

  .nav-links a,
  .nav-item > a {
    font-size: 14px !important;
  }
}

@media (max-width: 640px) {
  .brand-logo img {
    height: 36px !important;
    max-height: 36px !important;
  }

  .nav-links a,
  .nav-item > a {
    font-size: 14px !important;
  }
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-top: 28px;
  align-items: stretch;
}

.contact-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(180, 140, 70, 0.2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.contact-card-advice {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-card h4 {
  margin: 0 0 10px;
  color: #2b2f36;
}

.contact-card p {
  margin: 0;
  color: #4b5563;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-note {
  margin-top: 16px !important;
  color: #6b7280 !important;
  font-size: 14px;
}

.contact-advice-visual {
  margin-top: auto;
  padding-top: 24px;
}

.contact-advice-visual img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
}

#contact .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

#contact .contact-card .btn-outline {
  color: #2b2f36;
  border-color: rgba(180, 140, 70, 0.45);
}

@media (max-width: 900px) {
  .contact-cta-grid {
    grid-template-columns: 1fr;
  }
}

/* Inquiry page polish */
.inquiry-section .inquiry-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.inquiry-form-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(180, 140, 70, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  padding: clamp(24px, 3vw, 40px);
}

.inquiry-form-card h3,
.prep-card h3 {
  margin: 0 0 18px;
}

.inquiry-form {
  display: grid;
  gap: 14px;
}

.inquiry-form .form-group {
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.inquiry-form .form-group label {
  text-align: right;
  color: #2b2f36;
  font-size: 14px;
  line-height: 1.45;
}

html[lang="en"] .inquiry-form .form-group {
  grid-template-columns: 185px minmax(0, 1fr);
}

.form-control {
  width: 100%;
  height: 46px;
  padding: 12px 14px;
  border: 1px solid #d8dce4;
  border-radius: 9px;
  background: #fff;
  color: #222;
  font-size: 14px;
  line-height: 1.4;
}

textarea.form-control {
  min-height: 120px;
  height: auto;
  resize: vertical;
}

.form-control:focus {
  outline: none;
  border-color: #b99045;
  box-shadow: 0 0 0 3px rgba(185, 144, 69, 0.18);
}

input[type="file"].form-control {
  padding: 10px 12px;
}

.form-actions {
  margin-top: 8px;
  padding-left: 164px;
}

html[lang="en"] .form-actions {
  padding-left: 203px;
}

.form-actions .btn {
  width: min(280px, 100%);
}

.form-tip {
  margin: 8px 0 0;
  padding-left: 164px;
  color: #6b7280;
  font-size: 13px;
}

html[lang="en"] .form-tip {
  padding-left: 203px;
}

.prep-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(180, 140, 70, 0.14);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05);
  padding: 24px;
  position: relative;
}

.prep-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: #b99045;
  border-radius: 16px 16px 0 0;
}

.prep-card p {
  margin: 0;
  color: #5f6672;
}

.prep-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.prep-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #2b2f36;
}

.prep-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #b99045;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .inquiry-section .inquiry-container {
    grid-template-columns: 1fr;
  }

  .inquiry-form .form-group,
  html[lang="en"] .inquiry-form .form-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .inquiry-form .form-group label {
    text-align: left;
  }

  .form-actions,
  .form-tip,
  html[lang="en"] .form-actions,
  html[lang="en"] .form-tip {
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .form-actions .btn {
    width: 100%;
  }
}
