/* Design tokens */
:root {
  --gold: #f4bb0a;
  --gold-deep: #c99100;
  --ink: #131416;
  --cream: #f8f4e9;
  --cream-2: #f1ead8;
  --muted: #6c6a63;
  --line: #e4dece;
  --white: #fff;
  --shadow: 0 24px 70px rgba(41, 34, 13, 0.09);
}
/* Base styles */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.section-shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}
.section {
  padding: 100px 0;
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  color: #9d7200;
}
/* Header and navigation */
.site-header {
  height: 104px;
  padding: 10px max(3vw, 22px);
  display: flex;
  align-items: center;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 208, 190, 0.85);
}
.brand img {
  width: 245px;
  height: 88px;
  object-fit: contain;
  display: block;
}
.site-header nav {
  display: flex;
  gap: 25px;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 750;
}
.site-header nav a {
  padding: 10px 0;
}
.site-header nav a:hover {
  color: var(--gold-deep);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.phone-link {
  font-weight: 850;
  white-space: nowrap;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 0;
  border-radius: 15px;
  background: var(--gold);
  color: #17130a;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(222, 164, 0, 0.19);
  transition: 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(222, 164, 0, 0.27);
}
.btn-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.9rem;
}
.btn.dark {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  font-weight: 800;
}
/* Hero */
.hero {
  min-height: 690px;
  padding: 78px 0 86px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
}
.hero h1 {
  font-size: clamp(3.4rem, 6.3vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  margin: 16px 0 28px;
  max-width: 820px;
}
.hero h1 span {
  color: var(--gold-deep);
}
.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 28px;
}
.hero-points {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 700;
}
.hero-visual {
  height: 560px;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 20, 27, 0.92) 100%);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  left: 38px;
  top: 40px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
.hero-badge strong {
  font-size: 4.2rem;
  line-height: 0.9;
  letter-spacing: -0.08em;
}
.hero-badge span {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
  font-weight: 900;
  margin-left: 5px;
  margin-top: 9px;
}
.visual-card {
  position: absolute;
  left: 30px;
  bottom: 28px;
  z-index: 3;
  width: calc(100% - 60px);
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: #fff;
}
.visual-card strong {
  display: block;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 7px 0 9px;
}
.visual-card p {
  margin: 0;
  max-width: 34ch;
  color: #eee;
  font-size: 0.88rem;
  line-height: 1.5;
}
.visual-card .mini-label {
  color: #ffda69;
}
.mini-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  font-weight: 850;
  color: #9b7100;
}
.photo-note {
  position: absolute;
  right: 30px;
  bottom: 22px;
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0.58;
}
/* Quick facts */
.quickfacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 15px 50px rgba(45, 38, 15, 0.06);
  overflow: hidden;
}
.quickfacts div {
  padding: 26px 30px;
  border-right: 1px solid var(--line);
}
.quickfacts div:last-child {
  border-right: 0;
}
.quickfacts strong,
.quickfacts span {
  display: block;
}
.quickfacts strong {
  font-size: 1.04rem;
}
.quickfacts span {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}
/* Section headings */
.section-head {
  max-width: 850px;
  text-align: center;
  margin: 0 auto 52px;
}
.section-head.left {
  text-align: left;
  margin-left: 0;
}
.section-head h2,
.split-band h2,
.about-copy h2,
.cta h2,
.contact-grid h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 14px 0 20px;
}
.section-head p,
.about-copy p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.06rem;
}
/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.service-card.featured {
  background: #18191b;
  color: #fff;
  border-color: #18191b;
}
.service-card.featured p {
  color: #c6c6c4;
}
.service-card.featured a {
  color: #f4c536;
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #fff5c9;
  border: 1px solid #f1dc8a;
  font-size: 1.35rem;
  font-weight: 900;
  color: #8c6500;
}
.featured .icon {
  background: #f4bb0a;
  border-color: #f4bb0a;
  color: #111;
}
.service-card h3 {
  font-size: 1.17rem;
  margin: 20px 0 10px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}
.service-card a {
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.87rem;
  font-weight: 850;
  color: #9b7100;
}
/* Service options */
.split-band {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 34px;
  background: #efeadc;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.check-list p {
  position: relative;
  padding: 0 0 22px 56px;
  margin: 0 0 22px;
  border-bottom: 1px solid #dcd3bf;
  color: var(--muted);
}
.check-list p:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.check-list span {
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 850;
  color: #9d7200;
}
.check-list b {
  display: block;
  color: var(--ink);
  margin-bottom: 3px;
}
/* Moving process */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.timeline article {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 23px;
  padding: 25px;
}
.timeline article > span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  font-weight: 900;
}
.timeline h3 {
  font-size: 1.05rem;
  margin: 28px 0 8px;
}
.timeline p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
/* About the company */
.about-section {
  padding: 100px 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: center;
}
.about-photo {
  position: relative;
}
.photo-frame {
  display: block;
  width: 100%;
  height: 560px;
  border-radius: 34px;
  object-fit: cover;
  object-position: center;
}
.gold-card {
  position: absolute;
  right: -20px;
  bottom: 35px;
  background: var(--gold);
  padding: 20px 26px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(105, 78, 0, 0.16);
}
.gold-card strong,
.gold-card span {
  display: block;
}
.gold-card span {
  font-size: 0.88rem;
  margin-top: 3px;
}
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}
.values div {
  background: var(--cream);
  border-radius: 18px;
  padding: 18px;
}
.values b,
.values span {
  display: block;
}
.values span {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 4px;
}
/* Service areas */
.area-cloud {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.area-cloud span {
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 750;
}
/* Call to action */
.cta {
  margin: 0 auto 90px;
  background: var(--gold);
  border-radius: 34px;
  padding: 55px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.cta h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  max-width: 800px;
  margin-bottom: 10px;
}
.cta p {
  margin: 0;
  max-width: 700px;
}
.cta .eyebrow {
  color: #6d5000;
}
/* Contact form */
.form-section {
  padding: 100px 0;
  background: #eee7d6;
}
.form-section form {
  max-width: 1030px;
  margin: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 38px 40px;
  box-shadow: var(--shadow);
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 34px;
}
.form-step {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 8px;
  margin-bottom: 19px;
}
.form-step > span {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: #1a1b1d;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.form-step b,
.form-step small {
  display: block;
}
.form-step small {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.wide {
  grid-column: 1/-1;
}
label {
  font-size: 0.87rem;
  font-weight: 780;
  color: #303134;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #ddd7c8;
  border-radius: 12px;
  background: #fff;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  transition: 0.15s;
}
textarea {
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(244, 187, 10, 0.17);
  border-color: #d1a10d;
}
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.checks label {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #faf8f2;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px;
}
.checks input,
.privacy input {
  width: auto;
  display: inline;
  margin: 0;
  accent-color: var(--gold);
}
.upload-label {
  border: 1px dashed #cbbf9f;
  border-radius: 14px;
  background: #fbf9f3;
  padding: 16px;
}
.upload-label span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}
.upload-label input[type='file'] {
  margin-top: 14px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
}
.upload-label input[type='file']::file-selector-button {
  min-height: 46px;
  margin-right: 14px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--gold);
  color: #17130a;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.upload-label input[type='file']::file-selector-button:hover {
  background: #e5ad00;
}
@media (prefers-reduced-motion: reduce) {
  .upload-label input[type='file']::file-selector-button {
    transition: none;
  }
}
.privacy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #faf8f2;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px;
  margin-bottom: 20px;
}
.privacy a {
  text-decoration: underline;
}
.submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.submit-row > span {
  font-size: 0.77rem;
  color: var(--muted);
  max-width: 390px;
}
#formStatus {
  font-weight: 750;
  margin: 18px 0 0;
}
/* Frequently asked questions */
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  margin-bottom: 10px;
  padding: 0 20px;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding: 18px 34px 18px 0;
  position: relative;
}
.faq-list summary:after {
  content: '+';
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.4rem;
}
.faq-list details[open] summary:after {
  content: '–';
}
.faq-list p {
  color: var(--muted);
  font-size: 0.91rem;
  margin: 0;
  padding: 0 0 20px;
}
/* Contact details */
.contact-section {
  padding: 100px 0;
  background: #1b1c1e;
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.contact-grid p {
  color: #bdbdb9;
  max-width: 620px;
}
.contact-card {
  background: #fff;
  color: var(--ink);
  border-radius: 30px;
  padding: 35px;
  display: grid;
  gap: 13px;
  justify-items: start;
}
.contact-card img {
  width: 290px;
  height: 115px;
  object-fit: contain;
  margin-bottom: 8px;
}
.contact-card p {
  color: var(--muted);
  margin: 0;
}
.contact-card > a:not(.btn) {
  font-weight: 850;
}
.contact-card .btn {
  margin-top: 12px;
}
/* Footer */
footer {
  background: #fff;
}
.footer-main {
  padding: 55px 0 45px;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 60px;
}
.footer-brand img {
  width: 290px;
  height: 115px;
  object-fit: contain;
}
.footer-brand p {
  max-width: 430px;
  color: var(--muted);
}
.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-main b {
  margin-bottom: 6px;
}
.footer-main a,
.footer-main span {
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-bottom div {
  display: flex;
  gap: 20px;
}
/* Responsive layouts */
@media (max-width: 1080px) {
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .quickfacts {
    grid-template-columns: 1fr 1fr;
  }
  .quickfacts div:nth-child(2) {
    border-right: 0;
  }
  .quickfacts div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .faq-section {
    grid-template-columns: 1fr;
  }
  .faq-section .section-head {
    margin-bottom: 0;
  }
  .about-grid {
    gap: 45px;
  }
}
@media (max-width: 780px) {
  .section-shell {
    width: min(100% - 32px, 1240px);
  }
  .site-header {
    height: 86px;
    padding-inline: 16px;
  }
  .brand img {
    width: 185px;
    height: 72px;
  }
  .phone-link {
    display: none;
  }
  .btn-small {
    padding: 9px 12px;
    font-size: 0.78rem;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 55px 0;
  }
  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 5.3rem);
  }
  .hero-visual {
    height: 430px;
  }
  .quickfacts {
    width: min(100% - 32px, 1240px);
  }
  .split-band {
    width: min(100% - 32px, 1240px);
    padding: 38px 26px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-photo {
    max-width: 600px;
  }
  .cta {
    width: min(100% - 32px, 1240px);
    padding: 40px 28px;
    display: block;
  }
  .cta .btn {
    margin-top: 22px;
  }
  .form-section form {
    padding: 26px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }
  .site-header .btn-small {
    display: none;
  }
  .hero-actions {
    display: grid;
  }
  .hero-actions a {
    width: 100%;
  }
  .hero-visual {
    height: 380px;
    border-radius: 28px;
  }
  .hero-badge {
    top: 30px;
    left: 25px;
  }
  .hero-badge strong {
    font-size: 3rem;
  }
  .visual-card {
    left: 20px;
    bottom: 25px;
    width: calc(100% - 40px);
  }
  .photo-note {
    display: none;
  }
  .quickfacts {
    grid-template-columns: 1fr;
  }
  .quickfacts div {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .quickfacts div:last-child {
    border-bottom: 0 !important;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: auto;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .photo-frame {
    height: 400px;
  }
  .gold-card {
    right: 12px;
  }
  .form-grid,
  .checks {
    grid-template-columns: 1fr;
  }
  .wide {
    grid-column: auto;
  }
  .section-head h2,
  .split-band h2,
  .about-copy h2,
  .contact-grid h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }
  .submit-row .btn {
    width: 100%;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom div {
    margin-top: 10px;
  }
}

/* Keyboard navigation and anchored sections. */
:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 4px;
}
main section[id] {
  scroll-margin-top: 124px;
}
.btn:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

/* Legal pages use a narrower reading column. */
.legal-page {
  max-width: 780px;
}
.legal-page h1 {
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.legal-page p {
  margin-block: 24px;
}

/* Keep section navigation available on smaller screens. */
@media (max-width: 1080px) {
  .site-header {
    height: auto;
    flex-wrap: wrap;
    gap: 8px 20px;
  }
  .header-actions {
    margin-left: auto;
  }
  .site-header nav {
    display: flex;
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    gap: 24px;
    white-space: nowrap;
  }
  main section[id] {
    scroll-margin-top: 160px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  input,
  select,
  textarea {
    transition: none;
  }
}
