
:root {
  
      --bg: #f7efe4; --surface: #fffaf2; --ink: #2f261f; --muted: #766858;
      --line: #dccbb7; --primary: #6f4e37; --accent: #b37a45; --accent-2: #50614a;
      --shadow: rgba(111, 78, 55, 0.15); --hero-filter: saturate(0.94) contrast(1.02);
      --font-heading: Georgia, "Times New Roman", serif; --font-body: "Trebuchet MS", Arial, sans-serif;
    
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  background-image: none;
  letter-spacing: 0;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 240px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--primary);
  color: var(--surface);
  box-shadow: 0 12px 30px var(--shadow);
}
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 1rem; line-height: 1.1; }
.brand-copy small { color: var(--muted); font-size: 0.75rem; }
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.primary-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  padding: 9px 11px;
  border: 1px solid transparent;
}
.primary-nav > a:hover {
  border-color: var(--line);
  color: var(--primary);
}
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px 22px 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: 32px;
  background-image: none;
}
.hero-copy { position: relative; z-index: 2; }
.kicker,
.section-heading span {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-heading); }
h1 {
  font-size: 3rem;
  line-height: 1.04;
  margin-bottom: 20px;
}
.hero-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--primary);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}
.button.primary {
  background: var(--primary);
  color: var(--surface);
}
.button.secondary {
  color: var(--primary);
  background: transparent;
}
.hero-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--surface);
  background-image: none;
  box-shadow: 0 24px 60px var(--shadow);
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: var(--hero-filter);
}
.hero-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  max-width: calc(100% - 36px);
  padding: 13px 15px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.hero-label strong { font-size: 0.78rem; color: var(--primary); text-transform: uppercase; }
.hero-label span { font-size: 0.92rem; color: var(--ink); }
.profile-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.profile-strip div {
  padding: 18px;
  border-top: 3px solid var(--accent);
  background: var(--surface);
  box-shadow: 0 12px 35px var(--shadow);
}
.profile-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.profile-strip strong { font-size: 1rem; }
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px 22px;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-heading h2,
.split-section h2 {
  font-size: 2.05rem;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-heading p,
.split-section p,
.detail-block p,
.detail-block li,
.narrative p {
  color: var(--muted);
  line-height: 1.75;
}
.product-grid,
.service-grid,
.narrative-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-grid,
.narrative-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-card,
.service-card,
.narrative-grid article,
.detail-block,
.contact-panel,
.contact-form {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 6px;
  padding: 22px;
  box-shadow: 0 16px 40px var(--shadow);
}
.product-card h3,
.service-card h3 { font-size: 1.18rem; line-height: 1.2; }
.product-card p,
.service-card p { color: var(--muted); line-height: 1.65; }
.card-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
}
.product-card a,
.service-card a,
.related-links a,
.side-nav a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.product-card a:hover,
.service-card a:hover,
.related-links a:hover,
.side-nav a:hover { text-decoration: underline; }
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.two-column {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}
.side-nav {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 6px;
}
.side-nav strong { margin-bottom: 8px; }
.side-nav a {
  padding: 10px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.06);
}
.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-flow {
  display: grid;
  gap: 16px;
}
.detail-block h2 { font-size: 1.5rem; }
.detail-block ul { margin: 0; padding-left: 20px; }
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 14px;
}
.related-links strong { margin-right: 6px; }
.related-links a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: var(--surface);
}
.profile-table {
  width: 100%;
  border-collapse: collapse;
}
.profile-table th,
.profile-table td {
  padding: 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.profile-table th { width: 190px; color: var(--primary); }
.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
}
.contact-panel p { color: var(--muted); line-height: 1.6; }
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
}
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 22px 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.site-footer p,
.footer-contact span {
  color: var(--muted);
  line-height: 1.65;
}
.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
  align-content: start;
}
.footer-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}
@media (max-width: 980px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .brand { min-width: 0; }
  .hero,
  .split-section,
  .two-column,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 2.28rem; }
  .hero-visual,
  .hero-visual img { min-height: 310px; }
  .profile-strip,
  .product-grid,
  .service-grid,
  .narrative-grid,
  .compact {
    grid-template-columns: 1fr;
  }
  .side-nav { position: static; }
}
@media (max-width: 560px) {
  .primary-nav { justify-content: flex-start; }
  .primary-nav a { padding: 8px 7px; font-size: 0.86rem; }
  .hero { padding-top: 42px; }
  h1 { font-size: 2rem; }
  .section-heading h2,
  .split-section h2 { font-size: 1.65rem; }
}

body.pons .site-header {
  background: rgba(255, 250, 242, 0.93);
  justify-content: center;
}
body.pons .brand {
  min-width: 310px;
}
body.pons .brand-mark {
  border-radius: 50%;
  background: #fffaf2;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}
body.pons .brand-mark::before {
  content: "P"; font-family: Georgia, "Times New Roman", serif; font-size: 1.6rem; font-weight: 700;
}
body.pons .hero {
  grid-template-columns: 1fr;
  padding-top: 34px;
  text-align: center;
}
body.pons .hero-copy p { margin-left: auto; margin-right: auto; }
body.pons .hero-actions { justify-content: center; }
body.pons .hero-visual {
  min-height: 500px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
body.pons .hero-visual img { min-height: 500px; }
body.pons .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
body.pons .product-card,
body.pons .service-card,
body.pons .detail-block {
  box-shadow: none;
  border-color: #cfb99f;
}
body.pons .card-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}