:root {
  --black: #1a1a1a;
  --orange: #e8720b;
  --gray: #555555;
  --light-gray: #f2f2f2;
  --border: #e2e2e2;
}

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

body {
  font-family: "Calibri", "Segoe UI", Arial, sans-serif;
  color: var(--black);
  line-height: 1.5;
  background: #fff;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */
header.site-header {
  border-bottom: 3px solid var(--orange);
  padding: 18px 0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo img { height: 48px; width: auto; }

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav a {
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero img.hero-bg {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 24px;
}

.hero-content .inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  max-width: 620px;
}

.hero h1 span { color: var(--orange); }

.hero p {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 26px;
  color: #eaeaea;
}

.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.03em;
  margin-right: 14px;
  margin-top: 6px;
}

.btn:hover { background: #cf640a; text-decoration: none; }

.btn.btn-outline {
  background: transparent;
  border: 2px solid #fff;
}

.btn.btn-outline:hover { background: #fff; color: var(--black); }

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--light-gray); }

.section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.section-sub {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 640px;
}

.tagline {
  display: flex;
  gap: 24px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-top: 10px;
}

.tagline span.mark { color: var(--orange); margin-right: 6px; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  border-radius: 4px;
  padding: 28px 24px;
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray);
  font-size: 15px;
}

/* Pricing tables */
.price-table-wrap { margin-bottom: 40px; }

table.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

table.price-table caption {
  text-align: left;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  padding: 12px 14px;
  caption-side: top;
}

table.price-table caption em {
  font-style: italic;
  font-weight: 400;
  margin-left: 6px;
  font-size: 14px;
}

table.price-table th,
table.price-table td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}

table.price-table thead th {
  background: var(--light-gray);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

table.price-table td.num { text-align: right; }
table.price-table td.center { text-align: center; }
table.price-table td.ttc { font-weight: 700; }
table.price-table tr.info td { font-style: italic; color: var(--gray); background: #fafafa; }

.remarks {
  background: var(--light-gray);
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  margin-top: 30px;
  font-size: 14px;
  color: var(--gray);
}

.remarks h4 {
  color: var(--black);
  margin-bottom: 8px;
  font-size: 15px;
}

.remarks ul { list-style: none; }
.remarks li { margin-bottom: 4px; }
.remarks li::before { content: "– "; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 30px;
}

.contact-card h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
}

.contact-row .label {
  font-weight: 700;
  min-width: 90px;
  color: var(--black);
}

.map-embed {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

.map-embed iframe { width: 100%; height: 100%; min-height: 300px; border: 0; }

/* Footer */
footer.site-footer {
  background: var(--black);
  color: #cfcfcf;
  padding: 36px 0;
  margin-top: 20px;
}

footer.site-footer .footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}

footer.site-footer strong { color: #fff; }
footer.site-footer a { color: var(--orange); }

@media (max-width: 820px) {
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  nav ul { gap: 16px; flex-wrap: wrap; }
}
