:root {
  --marble: #f7f5f1;
  --stone: #c9c3b8;
  --ash: #7d817d;
  --graphite: #1d2225;
  --ink: #0d1114;
  --gold: #c4a36a;
  --line: rgba(29, 34, 37, 0.14);
  --shadow: 0 24px 60px rgba(13, 17, 20, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--marble);
  color: var(--graphite);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at 20% 10%, rgba(196, 163, 106, 0.12), transparent 28%),
    repeating-linear-gradient(115deg, rgba(20, 24, 27, 0.025) 0 1px, transparent 1px 90px);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(196, 163, 106, 0.9);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 10px clamp(18px, 4vw, 58px);
  color: white;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 68px;
  background: rgba(247, 245, 241, 0.96);
  color: var(--graphite);
  border-color: rgba(29, 34, 37, 0.1);
  box-shadow: 0 14px 40px rgba(13, 17, 20, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(181px, 20vw, 271px);
  height: 54px;
  overflow: visible;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.08);
  transform-origin: left center;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.24));
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 17, 20, 0.68) 0%, rgba(13, 17, 20, 0.36) 44%, rgba(13, 17, 20, 0.12) 100%),
    linear-gradient(0deg, rgba(13, 17, 20, 0.28), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 16ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4.3vw, 4.2rem);
  line-height: 1;
  font-weight: 700;
}

h1 span {
  display: block;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

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

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 2px;
  font-weight: 800;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 255, 255, 0.28) 48%, transparent 64%);
  transform: translateX(-120%);
  transition: transform 560ms ease;
}

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

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) 0;
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 36px;
}

.section-head h2,
.about-content h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.06;
}

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

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 236, 229, 0.68)),
    repeating-linear-gradient(118deg, transparent 0 62px, rgba(29, 34, 37, 0.035) 63px 64px);
  box-shadow: 0 8px 28px rgba(13, 17, 20, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(196, 163, 106, 0.72);
  box-shadow: var(--shadow);
}

.service-card span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.service-card h3 {
  margin: auto 0 12px;
  color: var(--ink);
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
  color: #555b5d;
  line-height: 1.65;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(72px, 9vw, 116px) max(18px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: white;
}

.about-image {
  min-height: 460px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: 43% 62%;
  transform: scale(1.12);
}

.about-content h2 {
  color: white;
}

.about-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  line-height: 1.8;
}

.experience {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(196, 163, 106, 0.46);
}

.experience strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.experience span {
  max-width: 170px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

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

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 118px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  font-weight: 800;
}

.why-item span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
}

.why-item strong {
  display: block;
  margin-top: 3px;
}

.why-item p {
  margin: 7px 0 0;
  color: #555b5d;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(210px, 19vw);
  gap: 14px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  background: #ddd8cf;
}

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

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

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

.gallery-item--large img {
  object-position: 50% 55%;
}

.gallery-item--sink img {
  object-position: 44% 70%;
  transform: scale(1.16);
}

.gallery-item--cabinet img {
  object-position: 20% 38%;
  transform: scale(1.18);
}

.gallery-item--surface img {
  object-position: 50% 72%;
  transform: scale(1.32);
}

.gallery-item--sink:hover img,
.gallery-item--cabinet:hover img,
.gallery-item--surface:hover img {
  transform: scale(1.26);
}

.gallery-item--large:hover img {
  transform: scale(1.08);
}

.contact {
  padding: clamp(70px, 9vw, 108px) 18px;
  background: linear-gradient(135deg, #efebe3, #ffffff);
}

.contact-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.contact-copy p:not(.eyebrow) {
  color: #54585a;
  line-height: 1.7;
  font-size: 1.05rem;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.contact-card:hover {
  transform: translateX(6px);
  border-color: rgba(196, 163, 106, 0.76);
  box-shadow: 0 18px 40px rgba(13, 17, 20, 0.08);
}

.contact-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 900;
}

.contact-card span img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 220ms ease, filter 220ms ease;
}

.contact-card span i {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--graphite);
  font-style: normal;
  transition: color 220ms ease, transform 220ms ease;
}

.contact-card strong {
  color: var(--ink);
  text-align: right;
  transition: color 220ms ease;
}

.contact-card:hover span img,
.contact-card:hover span i {
  transform: translateY(-1px) scale(1.06);
}

.contact-card:hover span i,
.contact-card:hover strong {
  color: var(--gold);
}

.map-section {
  width: 100vw;
  height: 30vh;
  min-height: 260px;
  background: #d8d2c7;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.14) contrast(1.02);
}

.site-footer {
  padding: 48px 18px 24px;
  background: #0f1417;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 36px;
}

.footer-grid img {
  width: 178px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: white;
}

.footer-grid p {
  margin: 0;
  line-height: 1.7;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  transition: color 180ms ease;
}

.footer-grid a:hover {
  color: var(--gold);
}

.copyright {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.copyright p {
  margin: 0;
  line-height: 1.7;
}

.copyright a {
  color: white;
  transition: color 180ms ease;
}

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

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-actions a {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 180ms ease;
}

.floating-actions a:hover {
  transform: translateY(-3px) scale(1.05);
}

.floating-actions img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-band,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 360px;
  }

  .about-image img {
    min-height: 360px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(220px, 34vw);
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 70px;
    padding-inline: 16px;
  }

  .brand {
    width: 196px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    display: grid;
    gap: 2px;
    width: min(260px, calc(100vw - 32px));
    padding: 12px;
    background: rgba(247, 245, 241, 0.98);
    color: var(--graphite);
    box-shadow: 0 18px 42px rgba(13, 17, 20, 0.18);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    padding: 12px 10px;
  }

  h1 {
    max-width: 16ch;
  }

  .hero-content {
    margin-inline: 18px;
    padding-top: 42px;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 210px;
  }

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

@media (max-width: 520px) {
  .hero {
    min-height: 720px;
    align-items: start;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.68rem, 8.6vw, 2.36rem);
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-inline: 14px;
    padding-top: 116px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding-block: 64px;
  }

  .section-head h2,
  .about-content h2,
  .contact h2 {
    font-size: clamp(1.58rem, 7.6vw, 1.95rem);
    line-height: 1.12;
  }

  .about-band {
    padding-inline: 14px;
  }

  .experience {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

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

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .contact-card strong {
    text-align: left;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .floating-actions a {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: clamp(1.55rem, 8vw, 1.9rem);
  }

  .section-head h2,
  .about-content h2,
  .contact h2 {
    font-size: 1.42rem;
    line-height: 1.16;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
