:root {
  --ink: #18211d;
  --ink-soft: #3c4a43;
  --stone: #f5efe4;
  --stone-2: #ebe1d2;
  --sand: #d7c0a1;
  --bronze: #a9783a;
  --deep: #202821;
  --moss: #61705e;
  --white: #ffffff;
  --line: rgba(24, 33, 29, 0.13);
  --shadow: 0 24px 70px rgba(24, 33, 29, 0.14);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(169, 120, 58, 0.12), transparent 25%),
    radial-gradient(circle at 92% 18%, rgba(97, 112, 94, 0.16), transparent 28%),
    var(--stone);
  line-height: 1.6;
}

img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 96px 0; }
.center { text-align: center; margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.top-strip {
  background: var(--deep);
  color: rgba(255,255,255,0.88);
  font-size: 14px;
}
.top-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 10px 0; }
.top-strip__links { display: flex; gap: 22px; flex-wrap: wrap; }
.top-strip a:hover { color: var(--sand); }

.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 228, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24,33,29,0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand__mark {
  width: 50px; height: 50px; border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--deep), #39463c);
  color: var(--stone);
  font-family: "Playfair Display", serif;
  font-size: 21px;
  letter-spacing: -1px;
  box-shadow: 0 14px 28px rgba(24,33,29,0.2);
}
.brand__text { display: grid; line-height: 1.05; }
.brand__text strong { font-size: 18px; letter-spacing: -0.4px; }
.brand__text small { color: var(--bronze); font-weight: 800; letter-spacing: 1px; text-transform: uppercase; font-size: 12px; }
.nav-menu { display: flex; align-items: center; gap: 28px; font-weight: 700; color: var(--ink-soft); font-size: 15px; }
.nav-menu a:hover { color: var(--bronze); }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white) !important;
  box-shadow: 0 12px 22px rgba(24,33,29,0.18);
}
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; background: var(--ink); margin: 6px 0; transition: .25s; }

.hero { position: relative; overflow: hidden; padding-top: 92px; }
.hero:before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 55vw; height: 55vw;
  background: repeating-linear-gradient(45deg, rgba(169,120,58,0.08) 0 2px, transparent 2px 28px);
  border-radius: 0 0 0 100%;
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--bronze); font-weight: 800; text-transform: uppercase; letter-spacing: 1.8px; font-size: 12px; margin: 0 0 18px; }
.eyebrow span { width: 34px; height: 1px; background: currentColor; display: inline-block; }
h1, h2, h3 { margin: 0; line-height: 1.05; }
h1, h2 { font-family: "Playfair Display", serif; letter-spacing: -1.2px; }
h1 { font-size: clamp(46px, 6.1vw, 82px); max-width: 760px; }
h2 { font-size: clamp(34px, 4.4vw, 58px); }
h3 { font-size: 20px; letter-spacing: -0.35px; }
p { color: var(--ink-soft); }
.hero__lead { font-size: 19px; max-width: 650px; margin: 26px 0 0; }
.hero__actions, .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 23px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, var(--bronze), #c89a55); color: white; box-shadow: 0 16px 28px rgba(169,120,58,0.28); }
.btn--ghost { border-color: var(--line); background: rgba(255,255,255,0.54); color: var(--ink); }
.btn--dark { background: var(--ink); color: white; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 46px; }
.trust-row div { padding: 18px; background: rgba(255,255,255,0.58); border: 1px solid var(--line); border-radius: 20px; }
.trust-row strong { display: block; font-size: 17px; }
.trust-row span { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 3px; }

.hero__visual { min-height: 600px; display: grid; place-items: center; }
.stone-card--large {
  width: min(470px, 100%);
  aspect-ratio: 4/5;
  position: relative;
  border-radius: 42px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.42), rgba(24,33,29,0.38)),
    url("images/hero-tiles-stones.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.stone-card--large:before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 30px;
}
.tile-grid { transform: rotate(-5deg); }
.tile-grid span {
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.38), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(32,40,33,.9), rgba(169,120,58,.72));
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: inset 0 0 22px rgba(255,255,255,0.08);
}
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 16px 18px;
  width: 220px;
  box-shadow: 0 16px 32px rgba(24,33,29,0.13);
}
.floating-card strong { display: block; }
.floating-card span { display: block; color: var(--ink-soft); font-size: 13px; margin-top: 4px; }
.floating-card--one { left: -2px; bottom: 108px; }
.floating-card--two { right: 0px; bottom: 34px; }

.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.about__text { font-size: 18px; }
.about__text p:first-child { margin-top: 0; }
.section-heading { max-width: 740px; margin-bottom: 48px; }
.section-heading p:not(.eyebrow) { font-size: 18px; margin: 18px auto 0; max-width: 620px; }
.cards-grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card, .process-step, .why-card, .contact-form, .faq-list {
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(24,33,29,0.06);
}
.service-card { padding: 30px; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon {
  width: 54px; height: 54px; border-radius: 18px;
  display: grid; place-items: center;
  background: var(--deep);
  color: var(--sand);
  font-size: 25px;
  margin-bottom: 24px;
}
.service-card p { margin-bottom: 0; }

.material-band { background: var(--deep); color: white; position: relative; overflow: hidden; }
.material-band:before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(32,40,33,.86), rgba(32,40,33,.90)),
    url("images/stone-texture.jpg") center/cover no-repeat;
}
.material-band__grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; gap: 50px; align-items: center; }
.material-band h2, .material-band p { color: white; }
.material-band p { opacity: .76; }
.material-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.material-list span {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-weight: 800;
}
.text-link { display: inline-block; color: var(--sand); font-weight: 800; margin-top: 18px; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.portfolio-card { background: rgba(255,255,255,.64); border: 1px solid var(--line); border-radius: 30px; padding: 12px; box-shadow: 0 16px 44px rgba(24,33,29,.07); overflow: hidden; }
.portfolio-card > div:last-child { padding: 20px 16px 18px; }
.portfolio-card span { color: var(--bronze); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: 1.5px; }
.portfolio-card h3 { margin-top: 9px; }
.portfolio-img { height: 310px; border-radius: 24px; position: relative; overflow: hidden; }
.portfolio-img:before, .portfolio-img:after { content: ""; position: absolute; inset: 0; }
.portfolio-img:before { background: linear-gradient(135deg, rgba(255,255,255,.26), rgba(255,255,255,0)); }
.portfolio-img:after { background-image: linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(0deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 70px 70px; }
.portfolio-img--bath { background: linear-gradient(135deg, rgba(216,208,197,.1), rgba(39,48,42,.28)), url("images/bathroom-tiling.jpg") center/cover no-repeat; }
.portfolio-img--kitchen { background: linear-gradient(135deg, rgba(244,231,212,.08), rgba(50,47,39,.26)), url("images/kitchen-tiles.jpg") center/cover no-repeat; }
.portfolio-img--office { background: linear-gradient(135deg, rgba(217,222,216,.08), rgba(29,36,32,.30)), url("images/commercial-flooring.jpg") center/cover no-repeat; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { padding: 28px; }
.process-step span { display: inline-flex; color: var(--bronze); font-weight: 900; margin-bottom: 34px; }
.process-step p { margin-bottom: 0; font-size: 15px; }
.why__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: stretch; }
.why-card { padding: 42px; }
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-list div { padding: 26px; border-radius: 24px; background: rgba(255,255,255,.62); border: 1px solid var(--line); }
.why-list strong, .why-list span { display: block; }
.why-list span { color: var(--ink-soft); margin-top: 6px; }

.cta-section { padding: 20px 0 96px; }
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, #ede2d2, #ffffff 44%, #e2d3bf);
  border: 1px solid rgba(169,120,58,.2);
  border-radius: 36px;
  padding: 44px;
  box-shadow: var(--shadow);
}
.cta-card h2 { max-width: 700px; }
.cta-actions { margin-top: 0; flex-shrink: 0; }

.contact { background: rgba(255,255,255,0.42); }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
.contact-info p { font-size: 18px; }
.contact-details { display: grid; gap: 14px; margin-top: 28px; }
.contact-details a, .contact-details div {
  display: grid;
  gap: 2px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.66);
}
.contact-details strong { color: var(--bronze); font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; }
.contact-details span { font-weight: 800; }
.contact-form { padding: 30px; display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 9px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.78);
  padding: 15px 16px;
  color: var(--ink);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--bronze); box-shadow: 0 0 0 4px rgba(169,120,58,.12); }
textarea { resize: vertical; }
.form-note { margin: 0; font-size: 13px; }

.faq-list { max-width: 840px; margin: 0 auto; padding: 12px; }
.faq-item {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 18px;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  color: var(--ink);
}
.faq-item strong { font-size: 24px; color: var(--bronze); transition: transform .2s; }
.faq-item.active strong { transform: rotate(45deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; border-bottom: 1px solid var(--line); }
.faq-panel p { margin: 0; padding: 0 18px 22px; }
.faq-panel:last-child { border-bottom: 0; }

.footer { background: #151b17; color: rgba(255,255,255,0.78); padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 1.2fr .9fr .8fr; gap: 48px; padding-bottom: 46px; }
.footer .brand__mark { background: var(--stone); color: var(--ink); box-shadow: none; }
.footer .brand__text strong { color: white; }
.footer p { color: rgba(255,255,255,.64); max-width: 360px; }
.footer h3 { color: white; margin-bottom: 16px; }
.footer a, .footer span { display: block; margin: 9px 0; color: rgba(255,255,255,.72); }
.footer a:hover { color: var(--sand); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.11); display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; font-size: 14px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 980px) {
  .section-pad { padding: 76px 0; }
  .hero__grid, .split, .material-band__grid, .why__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: auto; }
  .services-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    inset: 100% 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,.94);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 13px 14px; }
  .nav-cta { text-align: center; margin-top: 6px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .top-strip__inner { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero { padding-top: 66px; }
  .trust-row, .services-grid, .portfolio-grid, .process-grid, .why-list, .material-list, .footer__grid { grid-template-columns: 1fr; }
  .hero__actions, .cta-actions { width: 100%; }
  .hero__actions .btn, .cta-actions .btn, .contact-form .btn { width: 100%; }
  .floating-card { position: relative; inset: auto; width: auto; margin-top: 12px; }
  .stone-card--large { aspect-ratio: auto; min-height: 560px; }
  .tile-grid { inset: 38px 26px 180px; }
  .portfolio-img { height: 240px; }
  .cta-card, .why-card { padding: 30px 22px; border-radius: 28px; }
  .footer-bottom { flex-direction: column; }
}
