:root {
  --ink: #232323;
  --ink-soft: #5c5c5c;
  --charcoal: #2f2f2f;
  --charcoal-deep: #212121;
  --amber: #e0a868;
  --amber-deep: #c68f4f;
  --paper: #ffffff;
  --paper-deep: #f7f5f2;
  --line: #e6e2db;
  --radius: 5px;
  --shadow: 0 10px 26px rgba(30, 27, 22, 0.10);
  --serif: Georgia, "PT Serif", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 15.5px;
}

img { max-width: 100%; display: block; }
a { color: var(--amber-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.55em;
  color: var(--ink);
}

.section-title { font-size: clamp(22px, 2.6vw, 27px); text-align: center; margin-bottom: 10px; }
.section-lead { color: var(--ink-soft); max-width: 620px; margin: 0 auto 30px; font-size: 15px; text-align: center; }

/* Header */
.site-header { background: var(--charcoal); color: #fff; }
.header-row { display: flex; align-items: center; gap: 18px; padding: 16px 0; }
.brand { font-family: var(--serif); font-weight: 700; font-size: 20px; letter-spacing: 0.04em; color: #fff; text-decoration: none; }
.brand span { display: block; font-family: var(--sans); font-weight: 400; font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.02em; text-transform: none; }
.main-nav { display: flex; flex-wrap: wrap; gap: 20px; margin-left: auto; font-size: 13.5px; }
.main-nav a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 500; }
.main-nav a:hover { color: var(--amber); text-decoration: none; }
.header-call { text-align: right; flex-shrink: 0; }
.header-call a { display: block; font-family: var(--serif); font-weight: 700; font-size: 16px; color: var(--amber); }
.header-call span { font-size: 11px; color: rgba(255,255,255,0.55); }

/* Hero */
.hero { position: relative; height: 380px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('../img/hero-roses.jpg'); background-size: cover; background-position: center; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,25,22,0.86) 0%, rgba(28,25,22,0.45) 60%, rgba(28,25,22,0.18) 100%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; color: #fff; max-width: 600px; }
.hero h1 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 14px; }
.hero p { color: rgba(255,255,255,0.88); font-size: 16px; margin: 0 0 24px; }
.btn { display: inline-block; padding: 13px 26px; border-radius: var(--radius); text-decoration: none; font-weight: 700; font-size: 14.5px; }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--amber-deep); text-decoration: none; color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.1); text-decoration: none; }

/* Content */
.section { padding: 52px 0; }
.section.alt { background: var(--paper-deep); }
.section.dark { background: var(--charcoal-deep); color: rgba(255,255,255,0.85); }
.section.dark h2 { color: #fff; }
.section.dark .section-lead { color: rgba(255,255,255,0.6); }

/* Cards grid (services / products) */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.svc-card img { width: 100%; height: 150px; object-fit: cover; }
.svc-card-body { padding: 18px 20px; }
.svc-card h3 { font-size: 15.5px; margin: 0; }

.cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.prod-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-align: center; }
.prod-card img { width: 100%; height: 130px; object-fit: cover; }
.prod-card h3 { font-size: 14px; margin: 12px 16px 16px; }

/* USP */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.usp-item { text-align: center; }
.usp-item .mark { width: 46px; height: 46px; border-radius: 50%; background: rgba(224,168,104,0.15); color: var(--amber-deep); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-family: var(--serif); font-weight: 700; font-size: 18px; }
.usp-item h3 { font-size: 14.5px; margin-bottom: 8px; }
.usp-item p { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.price-group h3 { font-size: 18px; text-align: center; margin-bottom: 16px; }
.price-tiers { display: flex; flex-direction: column; gap: 10px; }
.price-tier { display: flex; justify-content: space-between; align-items: baseline; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 20px; }
.price-tier .tier-name { font-weight: 600; }
.price-tier .tier-price { font-family: var(--serif); font-weight: 700; color: var(--amber-deep); }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.testimonial-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 12px; font-style: italic; }
.testimonial-card cite { font-style: normal; font-weight: 700; font-size: 12.5px; color: var(--ink); }

/* About */
.about-text p { color: rgba(255,255,255,0.75); font-size: 15px; margin: 0 0 16px; max-width: 820px; }

/* Footer */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.75); padding: 34px 0 20px; font-size: 13.5px; }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 17px; }
.footer-addr p { margin: 0 0 6px; }
.footer-addr a { color: var(--amber); }
.footer-bottom { padding-top: 14px; font-size: 12px; color: rgba(255,255,255,0.45); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hero { height: 320px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
}
@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
}
