:root {
  --cream: #f7f1e8;
  --cream-light: #fbf7f1;
  --black: #0c0c0c;
  --dark: #111111;
  --gold: #c99a4a;
  --gold-dark: #a97934;
  --text: #171717;
  --muted: #68625b;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.12);

  --container: 1180px;
  --font-main: Georgia, "Times New Roman", serif;
  --font-ui: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream-light);
  font-family: var(--font-ui);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 241, 0.94);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-mark {
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  background: transparent;
  font-family: var(--font-main);
  font-size: 24px;
  line-height: 1;
}

.logo-text {
  display: grid;
  line-height: 1.05;
}

.logo-text strong {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.logo-text small {
  margin-top: 7px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 3px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
}

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

.btn-outline {
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* TYPOGRAPHY */

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-main);
  font-weight: 500;
  letter-spacing: -0.04em;
}

h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(46px, 5.6vw, 76px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(36px, 3.7vw, 52px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.25;
}

/* HERO */

.hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.68) 26%,
      rgba(0, 0, 0, 0.24) 53%,
      rgba(0, 0, 0, 0.16) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 610px;
  padding: 62px 0;
}

.hero-content .eyebrow {
  color: var(--gold);
}

.hero-text {
  max-width: 500px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

/* SECTIONS */

.section {
  padding: 96px 0;
}

.services-section {
  background: var(--cream-light);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.service-card {
  min-height: 230px;
  padding: 0 34px;
  border-right: 1px solid rgba(17, 17, 17, 0.14);
  text-align: center;
}

.service-card:last-child {
  border-right: 0;
}

.service-number {
  width: 42px;
  height: 42px;
  margin: 0 auto 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.service-card h3 {
  min-height: 42px;
  color: var(--black);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ABOUT */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

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

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

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(48px, 7vw, 110px);
}

.about-content h2 {
  margin-bottom: 4px;
}

.about-content h3 {
  margin-bottom: 28px;
  color: var(--gold-dark);
  font-family: var(--font-main);
  font-size: 23px;
  font-weight: 500;
}

.about-content p {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
}

.about-content .btn {
  width: fit-content;
  margin-top: 12px;
}

/* CONFIDO PREVIEW */

.confido-preview {
  padding: 94px 0;
  background: var(--cream-light);
}

.confido-preview-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.confido-preview-image {
  min-height: 360px;
}

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

.confido-preview-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.confido-preview-content h2 {
  max-width: 680px;
}

.confido-preview-content p {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
}

.confido-preview-content .btn {
  width: fit-content;
}

/* CONTACT STRIP */

.contact-strip {
  padding: 42px 0;
  background: var(--cream);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.contact-strip-title {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 30px;
  align-items: center;
}

.contact-icon {
  width: 78px;
  height: 78px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  font-size: 32px;
}

.contact-strip h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3vw, 40px);
}

.contact-strip p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-box {
  display: grid;
  gap: 9px;
  justify-items: start;
}

.contact-box > a:not(.btn) {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
}

.contact-box .btn {
  margin-top: 8px;
}

/* FOOTER */

.site-footer {
  padding: 58px 0 46px;
  background: #090909;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.25fr 1fr;
  gap: 54px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo .logo-mark {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-logo .logo-text strong {
  color: var(--white);
}

.footer-logo .logo-text small {
  color: var(--gold);
}

.site-footer p {
  max-width: 230px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.site-footer h4 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 1040px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .service-card {
    padding: 28px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: var(--white);
  }

  .about-section,
  .confido-preview-inner,
  .contact-strip-inner {
    grid-template-columns: 1fr;
  }

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

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

  .header-inner {
    min-height: 76px;
  }

  .logo-mark {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .logo-text strong {
    font-size: 18px;
  }

  .logo-text small {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .hero {
    min-height: 620px;
    align-items: flex-end;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.16) 0%,
        rgba(0, 0, 0, 0.44) 38%,
        rgba(0, 0, 0, 0.86) 100%
      );
  }

  .hero-content {
    padding: 220px 0 54px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

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

  .section {
    padding: 72px 0;
  }

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

  .service-card h3 {
    min-height: auto;
  }

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

  .about-content {
    padding: 54px 28px 64px;
  }

  .confido-preview {
    padding: 72px 0;
  }

  .confido-preview-content {
    padding: 36px 28px;
  }

  .contact-strip-title {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-icon {
    width: 64px;
    height: 64px;
    font-size: 25px;
  }

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