@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600&display=swap');

:root {
  --dark: #151515;
  --dark2: #222;
  --gold: #f4b41a;
  --cream: #f7f5ef;
  --text: #272727;
  --muted: #6c6c6c;
  --white: #fff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Inter, Arial, sans-serif; color: var(--text); background: var(--cream); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: auto; }

.header { background: var(--dark); color: white; position: sticky; top: 0; z-index: 10; border-bottom: 1px solid #333; }
.nav { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-size: 22px; font-weight: 800; letter-spacing: -.7px; }
.logo span { color: var(--gold); }
nav { display: flex; gap: 28px; color: #ddd; font-size: 14px; }
nav a:hover { color: var(--gold); }
.nav-call { border: 1px solid var(--gold); padding: 9px 17px; border-radius: 4px; color: var(--gold); font-size: 13px; font-weight: 700; }

.hero { min-height: 650px; position: relative; display: flex; align-items: center; color: white; overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.45), rgba(0,0,0,.55)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=85") center/cover;
}
.hero-content { position: relative; z-index: 1; padding: 90px 0; max-width: 760px; }
.eyebrow { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 2.4px; margin-bottom: 13px; }
.hero h1 { font-family: Oswald, sans-serif; font-size: clamp(50px, 8vw, 88px); line-height: .98; text-transform: uppercase; }
.hero h1 span { color: var(--gold); }
.hero-text { max-width: 590px; margin: 24px 0 30px; color: #ddd; font-size: 17px; }
.hero-buttons { display: flex; gap: 13px; flex-wrap: wrap; }
.btn { display: inline-block; border: 0; cursor: pointer; padding: 13px 23px; font-weight: 800; font-size: 14px; border-radius: 4px; }
.primary { background: var(--gold); color: #171717; }
.primary:hover { background: #ffd05b; }
.outline { border: 1px solid white; color: white; }
.outline:hover { background: white; color: #111; }

.section { padding: 92px 0; }
.section-heading { text-align: center; max-width: 670px; margin: 0 auto 45px; }
.section-heading h2, .about h2, .contact h2 { font-family: Oswald, sans-serif; text-transform: uppercase; font-size: clamp(35px, 5vw, 54px); line-height: 1.05; margin-bottom: 13px; }
.section-heading p:last-child, .contact > .container > div > p { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 23px; }
.card { background: white; box-shadow: 0 8px 28px rgba(0,0,0,.08); transition: transform .2s; }
.card:hover { transform: translateY(-5px); }
.material-image { height: 245px; background-position: center; background-size: cover; }
.sand { background-image: url("https://images.unsplash.com/photo-1586864387789-628af9feed72?auto=format&fit=crop&w=900&q=80"); }
.stone { background-image: url("https://images.unsplash.com/photo-1516939884455-1445c8652f83?auto=format&fit=crop&w=900&q=80"); }
.bricks { background-image: url("https://images.unsplash.com/photo-1590479773265-7464e5d48118?auto=format&fit=crop&w=900&q=80"); }
.card-body { padding: 25px; }
.tag { color: #999; font-size: 12px; font-weight: 800; }
.card h3 { font-family: Oswald, sans-serif; font-size: 28px; text-transform: uppercase; margin: 4px 0 7px; }
.card p { color: var(--muted); font-size: 14px; margin-bottom: 17px; }
.card a { color: #b17b00; font-weight: 800; font-size: 13px; }

.about { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-photo { min-height: 530px; position: relative; background:
  linear-gradient(90deg, rgba(0,0,0,.1), rgba(0,0,0,.25)),
  url("https://images.unsplash.com/photo-1590496793929-36417d3117de?auto=format&fit=crop&w=1000&q=85") center/cover; }
.photo-label { position: absolute; right: 0; bottom: 0; background: var(--gold); padding: 18px 24px; font-family: Oswald; font-size: 27px; line-height: 1; }
.about h2 { margin-bottom: 20px; }
.about > .container > div:last-child > p { color: var(--muted); }
.features { margin-top: 27px; display: grid; gap: 17px; }
.features > div { display: flex; gap: 15px; align-items: flex-start; }
.features strong { color: #8f6500; font-size: 21px; }
.features b, .features small { display: block; }
.features small { color: var(--muted); font-size: 13px; margin-top: 2px; }

.stats { background: var(--dark); color: white; padding: 45px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.stats strong { display: block; color: var(--gold); font-family: Oswald; font-size: 35px; }
.stats span { color: #bbb; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; }

.contact { background: #eeeade; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-list { margin-top: 25px; display: grid; gap: 8px; }
.form { background: white; padding: 30px; box-shadow: 0 10px 35px rgba(0,0,0,.07); }
.form input, .form select, .form textarea { width: 100%; border: 1px solid #ddd; padding: 13px 14px; margin-bottom: 13px; font: inherit; outline: none; background: white; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--gold); }
.form textarea { resize: vertical; }

footer { background: #101010; color: #aaa; padding: 30px 0; }
.footer { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer p { font-size: 12px; margin-top: 5px; }

.floating-call { display: none; }

@media (max-width: 800px) {
  nav { display: none; }
  .hero { min-height: 590px; }
  .cards, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { gap: 40px; }
  .about-photo { min-height: 380px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 25px; }
  .footer { flex-direction: column; align-items: flex-start; }
  .floating-call { display: flex; position: fixed; right: 18px; bottom: 18px; z-index: 20; width: 55px; height: 55px; border-radius: 50%; background: var(--gold); color: #111; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 5px 20px rgba(0,0,0,.3); }
}
