*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #555555;
  --gold: #c9a15b;
  --gold-soft: #f4e6c9;
  --border: #111111;
  --card-bg: #ffffff;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 2px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 999px;
  border: 2px solid var(--gold);
  padding: 2px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-name {
  font-weight: 600;
}

.brand-sub {
  color: var(--muted);
}

nav {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

nav a {
  padding-bottom: 0.1rem;
  border-bottom: 1px solid transparent;
}

nav a:hover {
  border-bottom-color: var(--gold);
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid #eee;
}

.section.alt {
  background: #faf8f5;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  color: #111;
}

h1 {
  font-size: 1.9rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 0.98rem;
  color: var(--muted);
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.hero {
  border-bottom: 3px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-box {
  border: 2px solid var(--border);
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #fffdf9;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}

.hero-box h2 {
  font-size: 1.1rem;
  margin-top: 0;
}

.hero-box ul {
  padding-left: 1.1rem;
  margin: 0.75rem 0;
}

.hero-box li {
  margin-bottom: 0.35rem;
}

.cta-text {
  font-weight: 500;
  margin-top: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.3rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--border);
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), #e0c48a);
  border-color: var(--border);
}

.btn.ghost {
  background: transparent;
}

.btn.full {
  width: 100%;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-main-photo {
  border-width: 2px;
  border-style: solid;
  border-color: var(--border);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.card {
  background: var(--card-bg);
  border-radius: 1.25rem;
  border: 2px solid var(--border);
  overflow: hidden;
}

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

.section.promo {
  background: #fffdf9;
  border-top: 3px double var(--border);
  border-bottom: 3px double var(--border);
}

.promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.promo-list {
  padding-left: 1.1rem;
}

.promo-list li {
  margin-bottom: 0.3rem;
}

.promo-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.old-price {
  text-decoration: line-through;
  color: var(--muted);
}

.new-price {
  font-size: 1.3rem;
  font-weight: 700;
}

.promo-badge {
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--gold-soft);
}

.promo-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.4rem;
}

.checklist li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 0.55rem;
  color: var(--gold);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.service {
  padding: 1.25rem 1.5rem;
}

.service ul {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
}

.gallery-rows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-rows .card {
  min-height: 160px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pmu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.pmu-media figure {
  margin: 0 0 1rem 0;
}

.pmu-media figcaption {
  font-size: 0.8rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid #eee;
  background: #fdfbf7;
}

.pmu-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.contact-box {
  padding: 1.5rem;
}

.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.footer {
  padding: 1.25rem 0 1.75rem;
  border-top: 2px solid var(--border);
  background: #f9f7f3;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}

.small {
  font-size: 0.74rem;
}

/* Responsive */
@media (max-width: 880px) {
  nav {
    display: none;
  }
  .hero-grid,
  .promo-grid,
  .about-grid,
  .cards-grid,
  .price-grid,
  .pmu-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3rem 0;
  }

  h1 {
    font-size: 1.6rem;
  }

  .hero-box {
    padding: 1.1rem;
  }

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