@font-face {
  font-family: "GmarketSans";
  src: url("../fonts/GmarketSansTTFMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #FBF4E6;
  --cream-deep: #F3E8D2;
  --brown: #3B2418;
  --brown-soft: #6B4B37;
  --red: #B5342B;
  --red-deep: #8C2721;
  --gold: #C9A15A;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(59, 36, 24, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "GmarketSans", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

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

ul { list-style: none; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--brown-soft);
  font-size: 1.02rem;
  max-width: 640px;
}

.section-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 700px;
}

.section-head .section-desc { margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 244, 230, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(59, 36, 24, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red-deep);
  letter-spacing: -0.02em;
}

.logo span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--brown-soft);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 36px;
}

.nav-menu a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown);
  position: relative;
  padding: 6px 0;
}

.nav-menu a:hover { color: var(--red); }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
}

.header-cta:hover { background: var(--red-deep); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid rgba(59,36,24,0.08);
  transition: max-height 0.3s ease;
}

.mobile-menu.open { max-height: 320px; }

.mobile-menu a {
  padding: 16px 24px;
  font-weight: 600;
  border-bottom: 1px solid rgba(59,36,24,0.06);
}

.mobile-menu a:hover { background: var(--cream-deep); }

/* Hero */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-jeonbyeong.jpg");
  background-size: cover;
  background-position: center 65%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,17,10,0.55) 0%, rgba(30,17,10,0.72) 60%, rgba(30,17,10,0.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 80px 24px;
}

.hero-badge {
  display: inline-block;
  background: var(--white);
  padding: 14px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.hero-badge img { height: 92px; }

.hero h1 {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.96rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(181, 52, 43, 0.4);
}

.btn-primary:hover { background: var(--red-deep); }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}

.btn-ghost:hover { background: rgba(255,255,255,0.22); }

.btn-dark {
  background: var(--brown);
  color: var(--white);
}

.btn-dark:hover { background: #251409; }

/* Video showcase */
.video-showcase {
  padding: 52px 0 56px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 175px));
  justify-content: center;
  gap: 18px;
}

.video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 9 / 16;
  background: var(--brown);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card .video-tag {
  position: absolute;
  top: 9px;
  left: 9px;
  background: rgba(255,255,255,0.92);
  color: var(--red-deep);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.video-card .video-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 10px 10px;
  background: linear-gradient(0deg, rgba(20,10,5,0.75), rgba(20,10,5,0));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}

@media (max-width: 560px) {
  .video-grid { grid-template-columns: repeat(3, minmax(0, 104px)); gap: 10px; }
  .video-card { border-radius: 13px; }
  .video-card .video-caption { font-size: 0.58rem; padding: 12px 6px 7px; }
  .video-card .video-tag { font-size: 0.5rem; padding: 2px 6px; top: 6px; left: 6px; }
}

/* Strengths */
.strengths {
  padding: 90px 0 70px;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.strength-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.strength-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem;
}

.strength-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: var(--red-deep);
}

.strength-card p {
  font-size: 0.92rem;
  color: var(--brown-soft);
}

.cert-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
}

.cert-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(59,36,24,0.12);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brown-soft);
}

.cert-pill b { color: var(--red-deep); }

/* Products */
.products {
  padding: 70px 0 90px;
  background: var(--cream-deep);
  position: relative;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.product-card:hover { transform: translateY(-6px); }

.product-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info { padding: 16px 18px 20px; }

.product-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.product-info span {
  font-size: 0.8rem;
  color: var(--brown-soft);
}

.products-more {
  text-align: center;
  margin-top: 40px;
}

/* Company */
.company {
  padding: 90px 0;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.company-media {
  position: relative;
}

.company-media img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.company-media .float-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--white);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
  width: 130px;
}

.company-copy h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.4;
}

.company-copy p {
  color: var(--brown-soft);
  margin-bottom: 26px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.timeline li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 0.94rem;
}

.timeline b {
  color: var(--red-deep);
  min-width: 90px;
  font-weight: 800;
}

/* Trade CTA */
.trade {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.trade .section-title { color: var(--white); }
.trade .section-desc { color: rgba(255,255,255,0.85); margin: 0 auto 34px; }

.trade-info {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trade-info div {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 22px 30px;
  min-width: 200px;
}

.trade-info h4 {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.trade-info p { font-size: 1.15rem; font-weight: 800; }

/* Footer */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 30px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.footer-logo {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-info p { font-size: 0.88rem; margin-bottom: 6px; }

.footer-menu {
  display: flex;
  gap: 28px;
}

.footer-menu a { font-size: 0.9rem; }
.footer-menu a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Nav active state */
.nav-menu a.active, .mobile-menu a.active { color: var(--red); }

/* Page hero (subpages) */
.page-hero {
  position: relative;
  padding: 64px 0 56px;
  text-align: center;
  background: linear-gradient(160deg, var(--cream-deep), var(--cream));
  overflow: hidden;
}

.page-hero .deco {
  position: absolute;
  opacity: 0.5;
}

.page-hero .deco.moon { width: 90px; top: 20px; left: 8%; }
.page-hero .deco.house { width: 130px; bottom: -10px; right: 6%; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--brown-soft);
  margin-bottom: 14px;
}

.breadcrumb b { color: var(--red-deep); }

.page-hero h1 {
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  color: var(--brown-soft);
  position: relative;
  z-index: 2;
}

/* Generic content section */
.content-section { padding: 80px 0; }
.content-section.alt { background: var(--cream-deep); }

/* Timeline (history) */
.history-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  border-left: 2px solid rgba(181,52,43,0.25);
  padding-left: 30px;
}

.history-item {
  position: relative;
  padding-bottom: 34px;
}

.history-item:last-child { padding-bottom: 0; }

.history-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--cream);
}

.history-item b {
  display: block;
  color: var(--red-deep);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.history-item span { color: var(--brown-soft); font-size: 0.95rem; }

/* Info cards (trade / greeting) */
/* Catalog embed */
.catalog-embed {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.catalog-embed iframe {
  width: 100%;
  max-width: 420px;
  height: 700px;
  border: none;
  border-radius: 20px;
  box-shadow: var(--shadow);
  background: #2a1810;
}

.catalog-embed-link {
  text-align: center;
  margin-top: 14px;
}

.catalog-embed-link a {
  font-weight: 700;
  color: var(--red-deep);
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .catalog-embed iframe { height: 640px; }
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  color: var(--red-deep);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.info-card p { color: var(--brown-soft); margin-bottom: 14px; }

.info-card ul { color: var(--brown-soft); font-size: 0.94rem; }
.info-card ul li { margin-bottom: 8px; padding-left: 18px; position: relative; }
.info-card ul li::before {
  content: "•";
  color: var(--red);
  position: absolute;
  left: 0;
}

/* Greeting */
.greeting-box {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 48px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.greeting-box img { height: 70px; margin: 0 auto 24px; }
.greeting-box p { color: var(--brown-soft); margin-bottom: 16px; line-height: 1.8; }
.greeting-sign { margin-top: 24px; font-weight: 800; color: var(--red-deep); }

/* Map */
.map-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: none;
  width: 100%;
  height: 340px;
}

/* Product category tabs */
.category-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.category-tabs a {
  padding: 10px 22px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid rgba(59,36,24,0.12);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown-soft);
}

.category-tabs a:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.category-heading {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red-deep);
  margin: 56px 0 24px;
  padding-top: 20px;
  scroll-margin-top: 96px;
}

.category-heading:first-of-type { margin-top: 0; }

/* FAQ accordion */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 6px 26px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 18px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.3rem;
  color: var(--red);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  color: var(--brown-soft);
  padding-bottom: 20px;
  font-size: 0.94rem;
}

/* Form */
.form-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 44px;
  max-width: 760px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-row.full { grid-template-columns: 1fr; }

.form-card label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--brown);
}

.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(59,36,24,0.15);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--brown);
}

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

.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--brown-soft);
  margin-top: 16px;
}

/* Contact quick cards */
.contact-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.contact-quick div {
  background: var(--white);
  border-radius: 18px;
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-quick .ico { font-size: 1.6rem; margin-bottom: 10px; }
.contact-quick h4 { font-size: 0.85rem; color: var(--brown-soft); margin-bottom: 6px; }
.contact-quick p { font-weight: 800; font-size: 1.05rem; }

/* Notice list */
.notice-list {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.notice-list li {
  display: flex;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(59,36,24,0.08);
  font-size: 0.94rem;
}

.notice-list li:last-child { border-bottom: none; }
.notice-list .tag {
  background: var(--cream-deep);
  color: var(--red-deep);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  margin-right: 10px;
}
.notice-list .date { color: var(--brown-soft); font-size: 0.85rem; }

/* Product detail pages */
.pd-topbar {
  max-width: 860px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pd-topbar a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red-deep);
}

.pd-topbar span {
  font-size: 0.85rem;
  color: var(--brown-soft);
}

.pd-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pd-hero img {
  width: 100%;
  display: block;
}

/* Per-product name hero (mirrors master template header) */
.pd-namehero {
  background: var(--white);
  text-align: center;
  padding: 90px 32px 80px;
}

.pd-namehero .pd-tagline,
.pd-namehero .pd-subtitle {
  color: var(--brown);
  font-size: 1.25rem;
  line-height: 1.6;
}

.pd-namehero .pd-tagline { margin-bottom: 70px; }
.pd-namehero .pd-subtitle { margin-top: 46px; }

.pd-namehero .pd-nameimg {
  max-width: 62%;
  margin: 0 auto;
  display: block;
}

.pd-namehero .pd-nametext {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.02em;
}

@media (max-width: 600px) {
  .pd-namehero { padding: 52px 20px 46px; }
  .pd-namehero .pd-tagline,
  .pd-namehero .pd-subtitle { font-size: 1rem; }
  .pd-namehero .pd-tagline { margin-bottom: 40px; }
  .pd-namehero .pd-subtitle { margin-top: 28px; }
  .pd-namehero .pd-nameimg { max-width: 80%; }
  .pd-namehero .pd-nametext { font-size: 1.8rem; }
}

.pd-intro {
  padding: 36px 32px 8px;
  text-align: center;
}

.pd-intro h1 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--brown);
}

.pd-intro p {
  color: var(--brown-soft);
  max-width: 560px;
  margin: 0 auto;
}

.pd-facts {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 40px;
  padding: 0 32px;
}

.pd-facts span {
  background: var(--cream-deep);
  color: var(--red-deep);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
}

.pd-section {
  padding: 0 0 40px;
}

.pd-section img {
  width: 100%;
  display: block;
}

.pd-caption {
  padding: 18px 32px 0;
  text-align: center;
  color: var(--brown-soft);
  font-size: 0.92rem;
}

.pd-footer-cta {
  padding: 40px 32px 48px;
  text-align: center;
  border-top: 1px solid rgba(59,36,24,0.08);
}

.pd-footer-cta p {
  color: var(--brown-soft);
  margin-bottom: 18px;
  font-size: 0.92rem;
}

/* Per-product info blocks */
.pd-block { padding: 54px 32px 10px; }
.pd-block.tinted { background: var(--cream-deep); padding-bottom: 54px; }

.pd-block h2 {
  text-align: center;
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 28px;
}

.pd-delivery {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-delivery li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  color: var(--brown-soft);
  font-size: 0.95rem;
}

.pd-delivery b {
  color: var(--red-deep);
  font-size: 1.05rem;
  min-width: 26px;
}

.pd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  line-height: 1.55;
}

.pd-table th, .pd-table td {
  border: 1px solid rgba(59,36,24,0.16);
  padding: 11px 14px;
  text-align: left;
  vertical-align: top;
}

.pd-table th {
  background: var(--cream);
  color: var(--brown);
  font-weight: 700;
  white-space: nowrap;
  width: 30%;
}

.pd-table td { color: var(--brown-soft); background: var(--white); }

.pd-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--brown-soft);
  line-height: 1.7;
}

.pd-pending {
  background: var(--white);
  border: 1px dashed rgba(181,52,43,0.45);
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  color: var(--brown-soft);
  font-size: 0.92rem;
}

@media (max-width: 600px) {
  .pd-block { padding: 40px 20px 8px; }
  .pd-block.tinted { padding-bottom: 40px; }
  .pd-block h2 { font-size: 1.25rem; }
  .pd-table { font-size: 0.8rem; }
  .pd-table th, .pd-table td { padding: 9px 10px; }
  .pd-table th { width: 34%; }
}

@media (max-width: 600px) {
  .pd-intro { padding: 28px 20px 8px; }
  .pd-intro h1 { font-size: 1.3rem; }
  .pd-facts { padding: 0 20px; }
  .pd-caption { padding: 14px 20px 0; }
  .pd-footer-cta { padding: 32px 20px 40px; }
}

/* Responsive */
@media (max-width: 960px) {
  .nav-menu { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .strength-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .company-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .company-media .float-badge { display: none; }
  .info-grid { grid-template-columns: 1fr; }
  .contact-quick { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .greeting-box { padding: 30px 24px; }
  .page-hero h1 { font-size: 1.5rem; }
  .page-hero .deco { display: none; }
}
