:root {
  --bg: #080904;
  --panel: #111310;
  --panel-2: #1a1b1a;
  --text: #ffffff;
  --soft: rgba(255, 255, 255, 0.74);
  --muted: rgba(255, 255, 255, 0.56);
  --gold: #e8a83b;
  --gold-dark: #c88921;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 78% 12%, rgba(232, 168, 59, 0.08), transparent 30%),
    #090a05;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 30px clamp(24px, 5vw, 128px);
  transition:
    padding 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 18px;
  background: rgba(8, 9, 4, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  max-width: 455px;
  gap: 2px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.12;
}

.brand span {
  letter-spacing: 0;
}

.brand strong {
  font: inherit;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.4vw, 24px);
  font-weight: 500;
}

.main-nav a {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--gold);
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 38px;
  color: var(--text);
  background: var(--gold);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.header-cta {
  justify-self: end;
  min-width: 190px;
}

.header-cta:hover,
.button:hover {
  background: var(--gold-dark);
  box-shadow: 0 18px 34px rgba(232, 168, 59, 0.18);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 118px);
  align-items: center;
  padding: clamp(150px, 17vw, 270px) clamp(24px, 5vw, 128px) clamp(80px, 8vw, 128px);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: clamp(17px, 1.6vw, 25px);
  font-weight: 850;
  line-height: 1.2;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 3.7vw, 70px);
  font-weight: 950;
  line-height: 1.14;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
}

.hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 44px 0 58px;
  color: var(--soft);
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.55;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #050505;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), transparent 36%, rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  min-height: clamp(420px, 44vw, 700px);
  object-fit: cover;
}

.why,
.services,
.gallery,
.about,
.cta {
  padding: clamp(76px, 8vw, 124px) clamp(24px, 5vw, 128px);
}

.section-heading {
  max-width: 1120px;
  margin-bottom: clamp(38px, 5vw, 72px);
}

.section-heading.row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading.row > div {
  max-width: 1000px;
}

.feature-grid,
.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
}

.feature-card,
.service-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 8, 4, 0.88);
}

.feature-card,
.service-card {
  padding: clamp(28px, 4vw, 48px);
}

.feature-card span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid rgba(232, 168, 59, 0.34);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.feature-card p,
.service-card p,
.about p,
.delivery p,
.site-footer p {
  color: var(--soft);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.7;
}

.delivery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: clamp(26px, 4vw, 72px);
  align-items: end;
  padding: clamp(64px, 7vw, 100px) clamp(24px, 5vw, 128px);
  background: var(--panel);
}

.delivery p {
  margin: 0;
}

.delivery a,
.text-link,
.phone {
  color: var(--gold);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
  white-space: nowrap;
}

.services {
  background: var(--bg);
}

.service-card {
  min-height: 330px;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(232, 168, 59, 0.06), transparent 54%),
    rgba(7, 8, 4, 0.92);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-card h3,
.service-card p {
  margin-inline: clamp(24px, 3vw, 38px);
}

.service-card h3 {
  margin-top: 30px;
}

.service-card p {
  margin-bottom: 34px;
}

.gallery {
  background: #0b0c08;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, 22vw);
  gap: clamp(16px, 2vw, 28px);
}

.gallery-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #050505;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.76));
  pointer-events: none;
}

.gallery-item:hover img {
  filter: brightness(1.08);
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: var(--text);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 900;
}

.testimonials {
  padding: clamp(70px, 8vw, 118px) clamp(24px, 5vw, 128px);
  background: #1b1c1b;
}

.review-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.95fr);
  gap: 36px;
  align-items: start;
  margin-bottom: clamp(54px, 6vw, 88px);
}

.ratings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.ratings strong {
  display: block;
  color: var(--gold);
  font-size: clamp(26px, 2.8vw, 42px);
  letter-spacing: 3px;
}

.ratings div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: center;
}

.ratings span {
  color: var(--gold);
  font-size: 32px;
  font-weight: 900;
}

.ratings p {
  margin: 0;
  color: var(--text);
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 800;
}

.quote-card {
  min-height: 610px;
  padding: clamp(38px, 5vw, 78px);
}

.quote-mark {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 78px;
  font-weight: 950;
  line-height: 0.7;
}

.quote-card p {
  margin: 0 0 50px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.58;
}

.quote-card strong {
  font-size: clamp(17px, 1.4vw, 22px);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: stretch;
  background: var(--bg);
}

.about-panel {
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.about-panel p:not(.eyebrow) {
  max-width: 880px;
  margin: 34px 0 32px;
}

.about-image {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #050505;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metal-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(135deg, #3a3a36, #050505 54%, #6c6254);
}

.metal-panel div {
  position: absolute;
  left: 8%;
  right: -20%;
  height: 72px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #1b1b19, #f7f4ec 30%, #766c5d 47%, #ffffff 55%, #23231f 82%),
    #ddd;
  box-shadow: 0 26px 36px rgba(0, 0, 0, 0.48);
  transform: rotate(-18deg);
}

.metal-panel div:nth-child(1) {
  top: 26%;
}

.metal-panel div:nth-child(2) {
  top: 46%;
  left: -5%;
}

.metal-panel div:nth-child(3) {
  top: 66%;
  left: 20%;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  background: var(--panel-2);
}

.cta h2 {
  max-width: 980px;
}

.cta-actions {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.cta-actions p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(140px, 0.5fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(54px, 6vw, 88px) clamp(24px, 5vw, 128px) 34px;
  background: #080904;
  border-top: 1px solid var(--line);
}

.site-footer h3 {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 22px;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer address {
  font-style: normal;
}

.copyright {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 10px);
    right: 24px;
    display: none;
    width: min(320px, calc(100vw - 48px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(8, 9, 4, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .hero,
  .about,
  .cta,
  .review-head,
  .delivery {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 140px;
  }

  .feature-grid,
  .service-grid,
  .gallery-grid,
  .testimonial-grid,
  .ratings,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: minmax(260px, auto);
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

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

  .section-heading.row {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 18px;
  }

  .brand {
    max-width: 250px;
    font-size: 18px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: 118px 18px 64px;
    gap: 38px;
    overflow: hidden;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 40px);
    line-height: 1.1;
    overflow-wrap: break-word;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 18px;
  }

  .hero-copy p:not(.eyebrow) {
    margin: 28px 0 34px;
  }

  .button {
    width: 100%;
    min-height: 60px;
  }

  .why,
  .services,
  .gallery,
  .about,
  .cta,
  .testimonials,
  .delivery,
  .site-footer {
    padding-inline: 18px;
  }

  .hero-media img {
    min-height: 300px;
  }

  .ratings div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
