:root {
  --gold: #BC9A5A;
  --gold-dark: #9f7f42;
  --black: #111111;
  --dark: #1a1a1a;
  --gray: #6f6f6f;
  --light: #f7f4ee;
  --white: #ffffff;
  --border: rgba(17, 17, 17, 0.10);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo {
  width: 120px;
  height: auto;
}

.logo-fallback {
  display: none;
  width: 62px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
  border: 2px solid var(--gold);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #333;
  font-size: 15px;
  font-weight: 600;
}

.nav a {
  transition: color 0.2s ease;
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-cta,
.btn-primary {
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(188, 154, 90, 0.32);
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--black);
  background: var(--white);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  padding: 96px 0 76px;
  background:
    radial-gradient(circle at 80% 20%, rgba(188, 154, 90, 0.22), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #faf8f4 52%, #f1eadc 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -140px -220px auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(188, 154, 90, 0.16);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
}

.hero-text {
  max-width: 650px;
  color: var(--gray);
  font-size: 19px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.hero-stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: 28px;
  line-height: 1;
}

.hero-stats span {
  color: var(--gray);
  font-size: 13px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: 26px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.76)),
    radial-gradient(circle at 30% 20%, rgba(188, 154, 90, 0.7), transparent 38%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(188, 154, 90, 0.32);
  border-radius: 22px;
  pointer-events: none;
}

.print-preview {
  position: relative;
  min-height: 390px;
  padding: 36px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 34px);
}

.preview-line {
  display: block;
  width: 74%;
  height: 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.preview-line.short {
  width: 46%;
}

.preview-poster {
  position: absolute;
  right: 36px;
  bottom: 32px;
  width: min(280px, 70%);
  aspect-ratio: 0.74;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(188, 154, 90, 0.96), rgba(255, 255, 255, 0.18)),
    var(--gold);
  transform: rotate(-4deg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.preview-poster span {
  font-size: clamp(38px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.hero-card-content {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 42px;
  z-index: 2;
}

.hero-card-content p {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 10px;
}

.hero-card-content h2 {
  font-size: 34px;
  max-width: 460px;
}

.section {
  padding: 108px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.narrow {
  max-width: 620px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.about-content h2,
.contact-info h2,
.cta-box h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
}

.section-heading p,
.about-content p,
.contact-info p {
  color: var(--gray);
  font-size: 17px;
}

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

.service-card {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(188, 154, 90, 0.45);
  box-shadow: var(--shadow);
}

.service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  color: var(--gold-dark);
  background: var(--light);
  border-radius: 50%;
  font-weight: 800;
}

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

.service-card p {
  color: var(--gray);
}

.accent-card {
  color: var(--white);
  background: var(--black);
}

.accent-card p {
  color: rgba(255, 255, 255, 0.72);
}

.accent-card .service-icon {
  color: var(--black);
  background: var(--gold);
}

.about,
.process {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.about-image {
  min-height: 520px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.image-placeholder {
  height: 100%;
  min-height: 476px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(188, 154, 90, 0.72), rgba(17, 17, 17, 0.88)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.12) 0 2px, transparent 2px 18px);
  border-radius: 22px;
}

.image-placeholder span {
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.about-content p + p {
  margin-top: 16px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.check-list span {
  position: relative;
  padding: 15px 18px 15px 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.check-list span::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 13px;
}

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

.process-step {
  position: relative;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.process-step span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--gold);
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.process-step p {
  color: var(--gray);
}

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

.portfolio-item {
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(17,17,17,0.08), rgba(17,17,17,0.74)),
    radial-gradient(circle at 35% 25%, rgba(188,154,90,0.9), transparent 36%),
    linear-gradient(135deg, #2b2b2b, #111111);
  border-radius: var(--radius-lg);
}

.portfolio-item span {
  display: inline-flex;
  padding: 10px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-weight: 800;
}

.cta-section {
  padding: 0 0 108px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 20%, rgba(188,154,90,0.45), transparent 30%),
    var(--black);
  border-radius: var(--radius-lg);
}

.cta-box .eyebrow {
  color: var(--gold);
}

.cta-box h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.contact {
  background: #fbfaf8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.contact-list a:hover {
  color: var(--gold-dark);
  border-color: rgba(188,154,90,0.45);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px 16px;
  color: var(--black);
  background: #fbfbfb;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(188, 154, 90, 0.14);
}

textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  border: 0;
}

.footer {
  padding: 30px 0;
  color: rgba(255,255,255,0.72);
  background: var(--black);
}

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

.footer-content div {
  display: flex;
  gap: 18px;
}

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

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

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

  .hero {
    padding-top: 72px;
  }

  .hero-card {
    min-height: 520px;
  }

  .service-grid,
  .portfolio-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .site-header {
    position: static;
  }

  .nav-wrapper {
    min-height: 72px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 56px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-text {
    font-size: 17px;
  }

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

  .btn {
    width: 100%;
  }

  .hero-stats,
  .service-grid,
  .portfolio-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 470px;
    padding: 18px;
    border-radius: 22px;
  }

  .hero-card::after {
    inset: 18px;
  }

  .print-preview {
    min-height: 330px;
    padding: 28px;
  }

  .hero-card-content {
    left: 28px;
    right: 28px;
    bottom: 28px;
  }

  .hero-card-content h2 {
    font-size: 28px;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .service-card,
  .process-step,
  .contact-form {
    padding: 24px;
  }

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

  .image-placeholder {
    min-height: 316px;
  }

  .portfolio-item {
    min-height: 190px;
  }

  .cta-section {
    padding-bottom: 74px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
