:root {
  --cream: #f8f1e7;
  --off-white: #fffaf3;
  --beige: #e6d2b8;
  --sand: #c9aa83;
  --bronze: #a6733f;
  --brown: #2a1c14;
  --muted: #6f6258;
  --shadow: 0 24px 70px rgba(42, 28, 20, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--brown);
  background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 54%, #f3e5d1 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-padding { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 243, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(166, 115, 63, 0.12);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -0.02em; }
.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--off-white);
  background: linear-gradient(135deg, var(--brown), var(--bronze));
  font-family: "Playfair Display", serif;
}
.nav-links { display: flex; gap: 28px; color: var(--muted); font-size: 0.95rem; font-weight: 600; }
.nav-links a:hover { color: var(--bronze); }

.hero { overflow: hidden; padding-top: 82px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 64px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--bronze); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.05; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; letter-spacing: -0.04em; }
h1 { max-width: 720px; font-size: clamp(3.15rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.25rem, 4vw, 4.2rem); }
h3 { font-size: 1.15rem; }
.hero-text { max-width: 650px; margin: 28px 0 34px; color: var(--muted); font-size: clamp(1.04rem, 2vw, 1.25rem); }
.button-group { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--off-white); background: var(--brown); box-shadow: 0 18px 36px rgba(42, 28, 20, 0.24); }
.button-secondary { color: var(--brown); background: rgba(255, 250, 243, 0.72); border: 1px solid rgba(42, 28, 20, 0.12); }
.button-secondary.light { color: var(--off-white); background: rgba(255, 250, 243, 0.12); border-color: rgba(255, 250, 243, 0.28); }

.hero-visual { position: relative; min-height: 560px; }
.visual-card-main {
  position: absolute;
  inset: 24px 32px 38px 12px;
  overflow: hidden;
  border: 1px solid rgba(166, 115, 63, 0.22);
  border-radius: 44px;
  background:
    radial-gradient(circle at 72% 18%, rgba(166, 115, 63, 0.22), transparent 28%),
    linear-gradient(145deg, #f5e7d4 0%, #d8bd99 52%, #8e6543 100%);
  box-shadow: var(--shadow);
}
.arch-window { position: absolute; top: 46px; right: 54px; width: 150px; height: 240px; border-radius: 90px 90px 12px 12px; background: rgba(255, 250, 243, 0.48); }
.sofa-shape { position: absolute; left: 48px; right: 58px; bottom: 118px; height: 86px; border-radius: 44px 44px 24px 24px; background: #f7efe4; box-shadow: inset 0 -18px 0 rgba(201, 170, 131, 0.35); }
.table-shape { position: absolute; left: 120px; bottom: 70px; width: 180px; height: 22px; border-radius: 50px; background: var(--brown); }
.lamp-shape { position: absolute; left: 58px; top: 74px; width: 82px; height: 82px; border-radius: 50% 50% 8px 8px; background: #fff3dc; box-shadow: 0 0 46px rgba(255, 243, 220, 0.7); }
.floating-card { position: absolute; padding: 18px 20px; border-radius: 20px; background: rgba(255, 250, 243, 0.86); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.floating-card span { display: block; color: var(--muted); font-size: 0.8rem; }
.floating-card strong { display: block; margin-top: 2px; }
.floating-card-top { top: 0; left: 0; }
.floating-card-bottom { right: 0; bottom: 4px; }

.section-heading { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.section-heading p:not(.eyebrow), .split-section > p { color: var(--muted); font-size: 1.08rem; }
.align-left { margin: 0; text-align: left; }
.card-grid, .process-grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card, .process-grid article {
  padding: 30px;
  border: 1px solid rgba(166, 115, 63, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.72);
  box-shadow: 0 18px 45px rgba(42, 28, 20, 0.08);
}
.service-card span, .process-grid span { color: var(--bronze); font-family: "Playfair Display", serif; font-size: 1.35rem; font-weight: 700; }
.service-card h3, .process-grid h3 { margin-top: 18px; }
.service-card p, .process-grid p { margin-bottom: 0; color: var(--muted); }

.about { background: rgba(255, 250, 243, 0.44); }
.split-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.feature-list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.feature-list li { padding: 18px 20px; border-radius: 18px; background: rgba(255, 250, 243, 0.68); box-shadow: 0 10px 30px rgba(42, 28, 20, 0.06); }
.feature-list li::before { content: "✦"; margin-right: 12px; color: var(--bronze); }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.cta-panel { padding: 64px 28px; border-radius: 40px; color: var(--off-white); text-align: center; background: linear-gradient(135deg, var(--brown), #4a3022 64%, var(--bronze)); box-shadow: var(--shadow); }
.cta-panel p:not(.eyebrow) { max-width: 660px; margin: 20px auto 28px; color: rgba(255, 250, 243, 0.82); }
.centered { justify-content: center; }

.footer { padding: 52px 0; background: #20140f; color: rgba(255, 250, 243, 0.78); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 0.8fr; gap: 32px; }
.footer strong, .footer-brand { color: var(--off-white); }
.footer p { max-width: 420px; margin-bottom: 0; }
address { display: grid; gap: 8px; font-style: normal; }
.socials p { margin-top: 8px; }

@media (max-width: 900px) {
  .section-padding { padding: 72px 0; }
  .hero-grid, .split-section { grid-template-columns: 1fr; gap: 42px; }
  .hero-visual { min-height: 460px; }
  .services-grid, .process-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { align-items: flex-start; flex-direction: column; gap: 14px; padding: 14px 0; }
  .nav-links { gap: 18px; font-size: 0.9rem; }
  .hero { padding-top: 54px; }
  .button, .button-group { width: 100%; }
  .services-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 390px; }
  .visual-card-main { inset: 20px 0 30px; border-radius: 32px; }
  .floating-card { position: relative; display: inline-block; margin: 0 8px 10px 0; }
  .floating-card-bottom { float: right; }
  .section-heading { text-align: left; }
  .cta-panel { padding: 46px 20px; border-radius: 28px; }
}
