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

:root {
  --black: #060606;
  --black-2: #111111;
  --charcoal: #191919;
  --gold: #d7bd73;
  --gold-2: #f1dc9c;
  --cream: #f7f1df;
  --muted: #bdbdbd;
  --white: #ffffff;
  --line: rgba(215, 189, 115, .24);
  --shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(6, 6, 6, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: 0 0 35px rgba(215, 189, 115, .22);
}

.brand strong {
  display: block;
  font-family: Cinzel, serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 16px;
}

.brand small {
  display: block;
  color: var(--gold);
  font-size: 12px;
  margin-top: 2px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #e9e9e9;
  font-size: 14px;
}

.menu a {
  transition: color .2s ease;
}

.menu a:hover {
  color: var(--gold-2);
}

.phone {
  padding: 13px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.72) 42%, rgba(0,0,0,.92) 100%),
    url('images/hero-maison-renovee.webp') center/cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -25% -10%;
  height: 360px;
  background: radial-gradient(circle, rgba(215,189,115,.24), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
  gap: 40px;
}

.tagline,
.section-kicker {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  font-family: Cinzel, serif;
  font-size: clamp(42px, 6vw, 78px);
  max-width: 860px;
  letter-spacing: -.03em;
}

.lead {
  max-width: 700px;
  margin-top: 26px;
  color: #dedede;
  font-size: 19px;
}

.hero-center {
  max-width: 940px;
  margin: 0 auto;
}

.hero-logo-main {
  width: 190px;
  height: 190px;
  object-fit: cover;
  margin: 0 auto 26px;
  border-radius: 36px;
  border: 1px solid rgba(241, 220, 156, .55);
  box-shadow: 0 0 70px rgba(215, 189, 115, .28);
}

.hero-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}

.hero-center .lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-center .hero-actions {
  justify-content: center;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.hero-services span {
  padding: 12px 16px;
  border: 1px solid rgba(215, 189, 115, .34);
  border-radius: 999px;
  background: rgba(0,0,0,.36);
  color: #f4e8bd;
  font-weight: 800;
  font-size: 14px;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #111;
  box-shadow: 0 18px 45px rgba(215, 189, 115, .22);
}

.btn-outline {
  border-color: rgba(255,255,255,.38);
  color: var(--white);
  background: rgba(255,255,255,.06);
}

.btn-dark {
  background: var(--black);
  border-color: var(--gold);
  color: var(--gold-2);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
  max-width: 820px;
}

.proof div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  padding: 20px;
  border-radius: 22px;
}

.proof span {
  color: var(--gold-2);
  font-weight: 900;
}

.proof p {
  color: #e1e1e1;
  margin-top: 6px;
  font-size: 14px;
}

.hero-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(26,26,26,.92), rgba(6,6,6,.88));
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 190px;
  height: 190px;
  object-fit: cover;
  margin: 0 auto 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.18);
}

.hero-card h2 {
  font-family: Cinzel, serif;
  font-size: 28px;
  color: var(--gold-2);
  text-align: center;
}

.hero-card p {
  color: #dedede;
  margin: 16px 0 22px;
  text-align: center;
}

.hero-card a {
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 18px;
  background: rgba(215, 189, 115, .12);
  border: 1px solid var(--line);
  color: var(--gold-2);
  font-weight: 900;
}

.intro,
.services,
.craft,
.gallery,
.contact {
  padding: 100px 0;
}

.intro {
  background: var(--black-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.intro h2,
.section-head h2,
.craft-content h2,
.contact-info h2,
.cta-strip h2 {
  font-family: Cinzel, serif;
  font-size: clamp(32px, 4vw, 54px);
}

.intro p:last-child {
  color: #d4d4d4;
  font-size: 18px;
}

.services {
  background:
    radial-gradient(circle at top right, rgba(215,189,115,.18), transparent 36%),
    var(--black);
}

.section-head {
  max-width: 740px;
  margin-bottom: 46px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, #151515, #0b0b0b);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(215,189,115,.14), transparent 38%);
  opacity: 0;
  transition: opacity .2s ease;
}

.service-card:hover::before,
.service-card.featured::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(215,189,115,.14);
  border: 1px solid var(--line);
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 26px;
}

.service-card h3 {
  font-size: 25px;
  margin-bottom: 14px;
}

.service-card p {
  color: #cfcfcf;
}

.featured {
  border-color: rgba(241,220,156,.55);
  box-shadow: 0 30px 70px rgba(215,189,115,.12);
}

.craft {
  background: var(--cream);
  color: #101010;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 64px;
  align-items: center;
}

.craft-image img {
  height: 560px;
  width: 100%;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}

.craft-content .section-kicker {
  color: #8e7130;
}

.checklist {
  list-style: none;
  margin: 28px 0 32px;
}

.checklist li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: #333;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #8e7130;
  font-weight: 900;
}

.gallery {
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery figure {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
}

.gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
  transition: transform .4s ease;
}

.gallery figure:hover img {
  transform: scale(1.06);
}

.gallery figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.68);
  border: 1px solid var(--line);
  color: var(--gold-2);
  font-weight: 900;
}

.cta-strip {
  padding: 70px 0;
  background:
    linear-gradient(135deg, rgba(215,189,115,.18), rgba(215,189,115,.04)),
    var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.contact {
  background:
    radial-gradient(circle at left top, rgba(215,189,115,.16), transparent 34%),
    var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
}

.contact-info > p {
  color: #d4d4d4;
  margin: 22px 0 30px;
  font-size: 18px;
}

.contact-box {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  margin-bottom: 14px;
}

.contact-box span {
  display: block;
  color: var(--gold-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
  margin-bottom: 8px;
}

.contact-box p,
.contact-box a {
  color: #fff;
  font-weight: 700;
}

.contact-form {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, #151515, #090909);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  color: var(--gold-2);
  font-weight: 800;
  margin-bottom: 18px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  background: #050505;
  color: #fff;
  border: 1px solid rgba(215,189,115,.3);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(215,189,115,.12);
}

.contact-form .btn {
  width: 100%;
  cursor: pointer;
  font: inherit;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #030303;
  color: #bdbdbd;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }

  .hero-grid,
  .intro-grid,
  .craft-grid,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 135px;
  }

  .hero-logo-main {
    width: 165px;
    height: 165px;
  }

  .cards,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof {
    grid-template-columns: 1fr;
  }

  .craft-image img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 76px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 13px;
  }

  .phone {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 70px;
  }

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .intro,
  .services,
  .craft,
  .gallery,
  .contact {
    padding: 70px 0;
  }

  .service-card {
    min-height: auto;
  }

  .gallery figure,
  .gallery img {
    min-height: 330px;
    height: 330px;
  }

  .footer-grid {
    flex-direction: column;
  }
}


.gallery-grid-large {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
}

.gallery-grid-large figure {
  min-height: 330px;
}

.gallery-grid-large figure.wide {
  grid-column: span 2;
}

.gallery-grid-large img {
  height: 100%;
  min-height: 330px;
}

@media (max-width: 980px) {
  .gallery-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid-large figure.wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .gallery-grid-large {
    grid-template-columns: 1fr;
  }

  .gallery-grid-large figure.wide {
    grid-column: span 1;
  }
}
