:root {
  --navy: #1c2b39;
  --navy-dark: #121e29;
  --gold: #b8934a;
  --gold-light: #d4af6e;
  --off-white: #f7f5f1;
  --text: #2c2c2c;
  --muted: #6b6b6b;
  --border: #e4e0d8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  font-weight: 400;
  margin-top: 0;
}

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

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

/* Header */
.site-header {
  background: var(--navy);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo img { height: 54px; display: block; }
.header-photo {
  height: 54px;
  width: 90px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: auto;
  margin-left: 16px;
}
.phone {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.phone:hover { color: var(--gold-light); text-decoration: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18,30,41,0.92) 0%, rgba(18,30,41,0.55) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 60px 24px; }
.hero h1 { color: #fff; font-size: 2.4rem; margin-bottom: 12px; }
.hero-contact { font-size: 1.05rem; }
.hero-contact a { color: var(--gold-light); }

/* Sections */
section { padding: 56px 0; }
.intro { text-align: center; max-width: 780px; }
.intro h2 { font-size: 1.7rem; margin-bottom: 16px; }

.explainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.explainer-block h3 {
  font-size: 1.3rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.explainer-block p { color: var(--muted); font-size: 0.97rem; }

.services { background: var(--off-white); }
.services h2 { text-align: center; margin-bottom: 32px; font-size: 1.7rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
}
.service-card img { width: 100%; height: 150px; object-fit: cover; display: block; }
.service-card h4 { padding: 16px; font-size: 1.05rem; }

.pricing-block + .pricing-block { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.pricing-block h2 { font-size: 1.5rem; }
.delivery { color: var(--gold); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em; margin-top: -8px; }
.pricing-block p { color: var(--muted); }

.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.95rem;
}
.rate-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.rate-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.rate-table tr:nth-child(odd) { background: var(--off-white); }

.ordering { background: var(--off-white); }
.ordering h2 { text-align: center; margin-bottom: 24px; }
.ordering p { max-width: 780px; margin-left: auto; margin-right: auto; color: var(--muted); }

.archiapp {
  background: var(--navy);
  color: #e8ebee;
  padding: 48px 0;
}
.archiapp-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.archiapp-logo {
  height: 110px;
  width: 110px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.archiapp-copy h2 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.archiapp-copy p { color: #c3cbd2; max-width: 640px; margin-bottom: 16px; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
}
.btn-outline:hover { background: var(--gold-light); color: var(--navy-dark); text-decoration: none; }

.cta { text-align: center; }
.cta h2 { font-size: 1.7rem; }
.cta p { color: var(--muted); max-width: 600px; margin: 0 auto 8px; }
.btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--navy);
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.btn:hover { background: var(--gold); text-decoration: none; }

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.location h3 { font-size: 1.1rem; }
.location p { color: var(--muted); }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #cfd6dc;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo { height: 60px; }
.footer-contact a { color: var(--gold-light); }
.copyright { font-size: 0.85rem; color: #8b95a0; margin-top: 8px; }

/* Responsive */
@media (max-width: 800px) {
  .explainer { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .location { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .archiapp-inner { flex-direction: column; text-align: center; }
}
