:root {
  --ink: #1f1712;
  --muted: #6d5f55;
  --cream: #fbf5ea;
  --paper: #fffaf2;
  --gold: #b98136;
  --ruby: #8f2f27;
  --sage: #61715c;
  --line: rgba(31, 23, 18, 0.14);
  --shadow: 0 24px 80px rgba(31, 23, 18, 0.14);
  --radius: 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(185,129,54,.20), transparent 35rem),
    linear-gradient(180deg, #fffaf2 0%, #fbf5ea 52%, #f5eadc 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251,245,234,.84);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 22px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.03em; }
.logo-mark { width: 42px; height: 42px; border-radius: 14px; background: conic-gradient(from 45deg, var(--ruby), var(--gold), var(--sage), var(--ruby)); box-shadow: inset 0 0 0 6px rgba(255,255,255,.48); }
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--muted); font-weight: 650; font-size: 14px; }
.nav-links a:hover { color: var(--ink); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 999px; padding: 13px 20px; font-weight: 800; cursor: pointer; transition: .2s ease; }
.btn-primary { background: var(--ink); color: var(--paper); box-shadow: 0 14px 35px rgba(31,23,18,.20); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 45px rgba(31,23,18,.25); }
.btn-secondary { background: rgba(255,255,255,.66); border: 1px solid var(--line); color: var(--ink); }
.hero { padding: 78px 0 54px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 52px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--ruby); background: rgba(143,47,39,.08); border: 1px solid rgba(143,47,39,.13); padding: 7px 12px; border-radius: 999px; font-size: 13px; font-weight: 850; }
h1, h2, h3 { line-height: 1.05; letter-spacing: -.055em; margin: 0; }
h1 { font-size: clamp(46px, 7vw, 88px); margin: 20px 0; }
h2 { font-size: clamp(34px, 5vw, 58px); }
h3 { font-size: 24px; }
.lede { font-size: clamp(18px, 2vw, 22px); color: var(--muted); max-width: 670px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.trust-card, .card { background: rgba(255,250,242,.75); border: 1px solid var(--line); border-radius: 22px; padding: 18px; box-shadow: 0 14px 42px rgba(31,23,18,.06); }
.trust-card strong { display: block; font-size: 23px; }
.trust-card span { color: var(--muted); font-size: 14px; }
.rug-showcase { position: relative; min-height: 560px; }
.rug-card { position: absolute; inset: 18px 10px 42px 40px; border-radius: 44px; background: #5d211d; box-shadow: var(--shadow); overflow: hidden; transform: rotate(2deg); }
.rug-pattern { position: absolute; inset: 18px; border: 3px solid rgba(255,250,242,.78); border-radius: 36px; background:
  repeating-linear-gradient(45deg, rgba(255,250,242,.12) 0 8px, transparent 8px 18px),
  radial-gradient(circle at center, rgba(185,129,54,.9) 0 7%, transparent 7.2% 12%, rgba(97,113,92,.75) 12.3% 19%, transparent 19.2%),
  linear-gradient(135deg, #8f2f27, #4b1c1a);
}
.rug-pattern::before, .rug-pattern::after { content: ""; position: absolute; border: 2px solid rgba(255,250,242,.68); border-radius: 50%; inset: 23%; }
.rug-pattern::after { inset: 38%; background: rgba(255,250,242,.18); }
.floating-note { position: absolute; right: 0; bottom: 0; width: min(330px, 78%); background: rgba(255,250,242,.92); border: 1px solid var(--line); border-radius: 26px; padding: 20px; box-shadow: var(--shadow); }
.floating-note p { margin: 8px 0 0; color: var(--muted); }
.section { padding: 78px 0; }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 34px; }
.section-head p { color: var(--muted); max-width: 560px; margin: 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-number { width: 46px; height: 46px; border-radius: 16px; display: grid; place-items: center; background: var(--ink); color: var(--paper); font-weight: 900; margin-bottom: 24px; }
.quote-wrap { display: grid; grid-template-columns: .86fr 1.14fr; gap: 28px; align-items: start; }
.quote-panel { background: var(--ink); color: var(--paper); border-radius: var(--radius); padding: 34px; position: sticky; top: 100px; overflow: hidden; }
.quote-panel::after { content: ""; position: absolute; width: 240px; height: 240px; right: -90px; bottom: -90px; border-radius: 50%; background: rgba(185,129,54,.35); }
.quote-panel p, .quote-panel li { color: rgba(255,250,242,.76); }
.quote-panel ul { padding-left: 18px; }
.form-card { background: rgba(255,250,242,.9); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-size: 14px; color: var(--muted); font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid rgba(31,23,18,.16); background: rgba(255,255,255,.78); border-radius: 16px; padding: 14px 15px; color: var(--ink); font: inherit; outline: none; transition: .2s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(185,129,54,.14); }
textarea { min-height: 132px; resize: vertical; }
.file-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.file-drop { position: relative; min-height: 150px; border: 1.5px dashed rgba(31,23,18,.22); border-radius: 20px; background: rgba(255,255,255,.55); display: grid; place-items: center; padding: 16px; text-align: center; transition: .2s ease; overflow: hidden; }
.file-drop:hover, .file-drop.dragover { border-color: var(--ruby); background: rgba(143,47,39,.06); }
.file-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-label strong { display: block; }
.file-label span { color: var(--muted); font-size: 13px; }
.preview { width: 100%; height: 118px; object-fit: cover; border-radius: 14px; display: none; }
.file-drop.has-preview .file-label { display: none; }
.file-drop.has-preview .preview { display: block; }
.privacy { color: var(--muted); font-size: 13px; margin: 14px 0 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { overflow: hidden; }
.blog-thumb { height: 178px; border-radius: 20px; margin-bottom: 18px; background: linear-gradient(135deg, rgba(143,47,39,.86), rgba(185,129,54,.76)), repeating-linear-gradient(90deg, transparent 0 12px, rgba(255,255,255,.22) 12px 18px); }
.blog-card p { color: var(--muted); }
.tag { display: inline-flex; font-size: 12px; font-weight: 900; color: var(--sage); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; }
details { background: rgba(255,250,242,.78); border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; margin-bottom: 12px; }
summary { font-weight: 900; cursor: pointer; }
details p { color: var(--muted); margin-bottom: 0; }
.site-footer { padding: 44px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.article { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 68px 0; }
.article p, .article li { color: var(--muted); font-size: 18px; }
.article h1 { font-size: clamp(42px, 6vw, 72px); }
.article h2 { margin-top: 42px; font-size: 34px; }
.article a { color: var(--ruby); font-weight: 800; }
.mobile-menu { display: none; }
.hidden { display: none !important; }
@media (max-width: 900px) {
  .hero-grid, .quote-wrap, .faq { grid-template-columns: 1fr; }
  .rug-showcase { min-height: 420px; }
  .rug-card { inset: 0 0 36px 0; }
  .quote-panel { position: relative; top: auto; }
  .steps, .blog-grid, .trust-row { grid-template-columns: 1fr; }
  .file-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .nav-links { display: none; }
  .mobile-menu { display: inline-flex; }
  .form-grid { grid-template-columns: 1fr; }
}
