:root {
  --gold: #ffc001;
  --deep-gold: #cea64b;
  --ink: #111111;
  --muted: #8f8f8f;
  --line: #e8e1d2;
  --paper: #fbfaf7;
  --charcoal: #2c2a26;
  --max: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-width: 0;
}
.top-strip {
  height: 38px;
  color: #999;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}
.top-strip .wrap,
.brand-row .wrap,
.nav-row .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quick-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.quick-links a:hover,
.nav a:hover,
.nav a.active {
  color: var(--gold);
}
.search-mini {
  display: flex;
  align-items: center;
  width: 250px;
  height: 33px;
  border: 1px solid #ececec;
  background: #fff;
}
.search-mini input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 12px;
  color: #777;
}
.search-mini button,
.menu-toggle {
  position: relative;
  width: 42px;
  height: 100%;
  border: 0;
  background: var(--gold);
  cursor: pointer;
}
.search-mini button::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  left: 12px;
  top: 8px;
}
.search-mini button::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
  left: 25px;
  top: 22px;
}
.brand-row {
  height: 118px;
  background: #fff;
}
.brand {
  display: grid;
  grid-template-columns: 86px auto;
  gap: 16px;
  align-items: center;
  min-width: 0;
}
.brand img {
  width: 78px;
  height: 78px;
}
.brand h1 {
  margin: 0;
  color: var(--gold);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
}
.brand p {
  margin: 8px 0 0;
  color: #a9a9a9;
  font-size: 16px;
}
.hotline {
  text-align: right;
  color: #a9a9a9;
}
.hotline strong {
  display: block;
  color: #dab86c;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}
.nav-row {
  height: 58px;
  background: #fff;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #e9e9e9;
  position: sticky;
  top: 0;
  z-index: 30;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}
.nav a {
  min-width: 136px;
  text-align: center;
  padding: 18px 10px;
  color: #333;
  font-size: 15px;
  border-right: 1px solid #ededed;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}
.nav a:first-child {
  border-left: 1px solid #ededed;
}
.nav a.active {
  background: #fffdf7;
}
.nav a:hover {
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  height: 38px;
  background: transparent;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  margin: 6px auto;
}
.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: #d3b77d;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.5s ease, transform 4.5s ease;
  filter: sepia(.18) saturate(.92) contrast(.98);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.55), rgba(255,255,255,.08) 48%, rgba(0,0,0,.04));
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 700px;
  display: flex;
  align-items: center;
  min-width: 0;
}
.hero-copy {
  width: 620px;
  max-width: 100%;
  min-width: 0;
  padding-top: 46px;
  color: #050505;
}
.eyebrow {
  margin: 0 0 12px;
  font-size: 16px;
  font-style: italic;
  color: #000;
}
.hero h2,
.page-hero h2 {
  margin: 0;
  max-width: 760px;
  font-size: 60px;
  line-height: .95;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
  overflow-wrap: break-word;
}
.hero .script {
  margin: 14px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
}
.hero p {
  max-width: 530px;
  margin: 0 0 24px;
  color: #3e3e3e;
  font-size: 16px;
}
.feature-line {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 24px 0 34px;
}
.feature-line span {
  position: relative;
  padding-left: 34px;
  color: #111;
  font-size: 16px;
}
.feature-line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--deep-gold);
  border-radius: 50%;
}
.feature-line span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--deep-gold);
  border-bottom: 2px solid var(--deep-gold);
  transform: rotate(-45deg);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  height: 44px;
  padding: 0 22px;
  color: #fff;
  background: var(--gold);
  border: 1px solid var(--gold);
  font-size: 15px;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}
.btn:hover {
  background: #111;
  border-color: #111;
  transform: translateY(-2px);
}
.btn.outline {
  color: #111;
  background: transparent;
  border-color: #222;
}
.btn.outline:hover {
  color: #fff;
  background: #111;
}
.section {
  padding: 86px 0;
  background: #fff;
}
.section.alt {
  background: var(--paper);
}
.section.dark {
  color: #fff;
  background: var(--charcoal);
}
.section-title {
  margin: 0 auto 50px;
  max-width: 920px;
  min-width: 0;
  text-align: center;
}
.section-title h3 {
  margin: 0;
  color: var(--deep-gold);
  font-size: 24px;
  line-height: 1.5;
  overflow-wrap: break-word;
}
.section-title p {
  margin: 8px 0 0;
  color: #555;
  font-size: 16px;
}
.section.dark .section-title p {
  color: #d8d1c5;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.vintage-photo {
  position: relative;
  overflow: hidden;
  border: 12px solid #fff;
  box-shadow: 0 18px 38px rgba(0,0,0,.12);
}
.vintage-photo img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  filter: sepia(.22) saturate(.85);
}
.copy h4 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.2;
  overflow-wrap: break-word;
}
.copy p {
  margin: 0 0 16px;
  color: #666;
  font-size: 15px;
}
.bullet-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.bullet-list li {
  padding-left: 22px;
  position: relative;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--deep-gold);
}
.criteria {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px 72px;
  margin-top: 22px;
}
.criterion {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  align-items: start;
}
.criterion:nth-child(odd) {
  grid-template-columns: 1fr 78px;
  text-align: right;
}
.criterion:nth-child(odd) .icon-ring {
  order: 2;
}
.icon-ring {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: var(--deep-gold);
  border: 2px solid var(--deep-gold);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}
.criterion h4 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 500;
}
.criterion p {
  margin: 0;
  color: #9c9c9c;
  font-size: 14px;
  line-height: 1.7;
}
.service-grid,
.portfolio-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.service-card {
  position: relative;
  min-height: 420px;
  background: #fff;
  overflow: hidden;
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: sepia(.18) saturate(.88);
  transition: transform .45s ease;
}
.service-card:hover img,
.portfolio-item:hover img {
  transform: scale(1.06);
}
.service-card h4 {
  margin: 24px 28px 8px;
  font-size: 21px;
}
.service-card p {
  margin: 0 28px 24px;
  color: #777;
}
.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  background: #000;
}
.portfolio-item img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  opacity: .88;
  transition: transform .45s ease, opacity .45s ease;
}
.portfolio-item:hover img {
  opacity: .55;
}
.portfolio-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 24px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,.78), transparent);
}
.portfolio-caption h4 {
  margin: 0;
  font-size: 20px;
}
.portfolio-caption span {
  color: var(--gold);
}
.price-grid {
  grid-template-columns: repeat(3, 1fr);
}
.price-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 38px 34px;
  min-height: 460px;
}
.price-card.featured {
  border-color: var(--deep-gold);
  box-shadow: inset 0 4px 0 var(--deep-gold);
}
.price-card h4 {
  margin: 0 0 8px;
  font-size: 24px;
}
.price-card .price {
  margin: 18px 0;
  color: var(--deep-gold);
  font-size: 34px;
  font-weight: 700;
}
.price-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: #666;
}
.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.page-hero {
  min-height: 500px;
  color: #111;
  background-position: center;
  background-size: cover;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.68), rgba(255,255,255,.14));
}
.page-hero .wrap {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}
.page-hero p {
  max-width: 620px;
  color: #555;
  font-size: 17px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: steps;
}
.timeline article {
  padding: 28px;
  border-top: 3px solid var(--deep-gold);
  background: #fff;
}
.timeline article::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  color: var(--deep-gold);
  font-size: 30px;
  font-weight: 800;
}
.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-panel {
  padding: 36px;
  background: var(--charcoal);
  color: #fff;
}
.contact-panel h4 {
  margin: 0 0 18px;
  font-size: 26px;
}
.contact-panel p {
  color: #d6d1c8;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid label {
  display: grid;
  gap: 8px;
  color: #666;
}
.form-grid label.full {
  grid-column: 1 / -1;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px 14px;
  font: inherit;
  outline: 0;
  background: #fff;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--deep-gold);
}
.footer {
  color: #bdbdbd;
  background: #23211e;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 48px;
  padding: 58px 0;
}
.footer h5 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 17px;
}
.footer p,
.footer a {
  color: #bdbdbd;
}
.footer a {
  display: block;
  margin: 7px 0;
}
.footer a:hover {
  color: var(--gold);
}
.copyright {
  padding: 18px 0;
  color: #888;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
}
.animate {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}
.animate.from-left {
  transform: translateX(-46px);
}
.animate.from-right {
  transform: translateX(46px);
}
.animate.visible {
  opacity: 1;
  transform: translate(0, 0);
}
@keyframes fkFloatIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 42px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
mark.search-hit {
  background: rgba(255, 192, 1, .38);
  color: inherit;
}
@media (max-width: 980px) {
  .top-strip {
    display: none;
  }
  .brand-row {
    height: auto;
    padding: 18px 0;
  }
  .brand-row .wrap {
    gap: 18px;
  }
  .brand h1 {
    font-size: 28px;
  }
  .hotline {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-row {
    height: auto;
  }
  .nav-row .wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    width: 100%;
    border: 0;
    border-top: 1px solid #eee;
  }
  .hero,
  .hero-content {
    min-height: 640px;
  }
  .hero h2,
  .page-hero h2 {
    font-size: 46px;
  }
  .two-col,
  .criteria,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }
  .criterion,
  .criterion:nth-child(odd) {
    grid-template-columns: 70px 1fr;
    text-align: left;
  }
  .criterion:nth-child(odd) .icon-ring {
    order: 0;
  }
  .service-grid,
  .portfolio-grid,
  .price-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .wrap {
    width: min(100% - 22px, var(--max));
  }
  .brand {
    grid-template-columns: 58px auto;
  }
  .brand img {
    width: 56px;
    height: 56px;
  }
  .brand h1 {
    font-size: 24px;
  }
  .brand p {
    font-size: 13px;
  }
  .hero,
  .hero-content {
    min-height: 580px;
  }
  .hero-copy {
    width: 100%;
    max-width: 350px;
  }
  .section-title {
    max-width: 350px;
  }
  .hero h2,
  .page-hero h2 {
    font-size: 34px;
    line-height: 1.08;
  }
  .hero .script {
    max-width: 340px;
    font-size: 24px;
    line-height: 1.35;
    overflow-wrap: break-word;
  }
  .section {
    padding: 58px 0;
  }
  .service-grid,
  .portfolio-grid,
  .price-grid,
  .timeline,
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.mobile-notice{display:none;position:fixed;inset:0;background:#fff;z-index:9999;align-items:center;justify-content:center;padding:20px}
.mobile-notice-content{text-align:center;max-width:320px}
.mobile-notice h3{color:var(--deep-gold);font-size:28px;margin:0 0 16px}
.mobile-notice p{color:#666;font-size:16px;line-height:1.6}
@media (min-width:981px){.mobile-notice{display:none}}
@media (max-width:980px){.mobile-notice{display:flex}header,main,footer{display:none !important}}