:root {
  --background: hsl(220 20% 7%);
  --foreground: hsl(40 20% 92%);
  --card: hsl(220 18% 10%);
  --muted: hsl(220 10% 62%);
  --secondary: hsl(220 15% 15%);
  --border: hsl(220 15% 20%);
  --primary: hsl(40 60% 55%);
  --primary-dark: hsl(35 70% 45%);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --gold-gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  background: hsl(220 20% 7% / 0.85);
}

.nav-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.brand-footer {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.25rem;
}

.brand span,
.brand-footer span {
  color: var(--primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.main-nav a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--background);
  transition: background 0.25s ease;
}

.btn-primary:hover {
  background: hsl(40 60% 50%);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 32px;
  height: 28px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--foreground);
  margin: 6px 0;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    hsl(220 20% 7% / 0.7) 0%,
    hsl(220 20% 7% / 0.4) 40%,
    hsl(220 20% 7% / 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 980px;
  padding-top: 120px;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: clamp(2.4rem, 9vw, 6rem);
  line-height: 1.05;
}

.hero h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero p {
  width: min(700px, 100%);
  margin: 28px auto 44px;
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.3rem);
}

.intro,
.services,
.site-footer {
  background: var(--secondary);
}

.intro {
  padding: 90px 0;
}

.intro-inner {
  max-width: 860px;
  text-align: center;
}

h2,
h3 {
  font-family: var(--font-display);
  margin: 0;
}

.intro h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.3;
  text-transform: uppercase;
}

.line {
  width: 80px;
  height: 2px;
  margin: 26px auto 24px;
  background: var(--primary);
}

.intro p {
  color: var(--muted);
  font-size: 1.1rem;
}

.about,
.services,
.contact {
  padding: 96px 0;
}

.grid-two {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.about h2,
.services h2,
.contact h2 {
  font-size: clamp(2rem, 4.5vw, 2.7rem);
  line-height: 1.25;
}

.body-copy {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  color: var(--muted);
}

.about-image-wrap {
  position: relative;
}

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

.about-frame {
  position: absolute;
  inset: 0;
  border: 1px solid hsl(40 60% 55% / 0.25);
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 34px;
  min-height: 248px;
  transition: border-color 0.25s ease;
}

.service-card:hover {
  border-color: hsl(40 60% 55% / 0.45);
}

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

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-grid {
  align-items: start;
}

.contact-form {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 14px;
}

input::placeholder,
textarea::placeholder {
  color: hsl(220 10% 56%);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-card h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 24px;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item p {
  margin: 0;
  color: var(--muted);
}

.contact-item a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.contact-item a:hover {
  color: var(--primary);
}

.person {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.person span {
  color: var(--foreground);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: hsl(220 18% 10% / 0.96);
  border: 1px solid hsl(40 60% 55% / 0.35);
  color: var(--foreground);
  padding: 12px 16px;
  width: min(360px, calc(100% - 48px));
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-size: 0.85rem;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .grid-two {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .about-image {
    height: 420px;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1240px, 100% - 32px);
  }

  .hero p {
    margin-bottom: 34px;
  }

  .about,
  .services,
  .contact {
    padding: 78px 0;
  }

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