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

:root {
  --amber: hsl(40, 47%, 60%);
  --amber-dim: #8a7448;
  --cream: #e8dcc0;
  --bg-dark: #0d0a06;
  --scale: 0.85;
}

html {
  font-size: calc(16px * 0.85);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center,
      rgba(13,10,6,0) 40%,
      rgba(13,10,6,0.7) 100%),
    rgba(13,10,6,0.55);
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg-dark);
  color: var(--cream);
  min-height: 100vh;
  overflow: hidden;
}

.connect a {
  color: inherit;
  text-decoration: underline;
}

.seal-logo {
  width: 65px;
  height: 64px;
  color: var(--amber); 
}

.carousel {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.8s ease-in-out;
}
.slide {
  flex: 0 0 100%; 
  height: 100%;
  background-size: cover;
  background-position: center;
}

.dots {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--amber);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}
.dot.active {
  background: var(--amber);
}

.frame {
  position: relative;
  min-height: calc(100vh - 2rem);
  margin: 1rem;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--amber-dim);
  border-radius: 14px;
}

.corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--amber);
  opacity: 0.7;
}
.corner.tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}
.corner.tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 8px 0 0;
}
.corner.bl {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 8px;
}
.corner.br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.seal {
  color: var(--amber);
  font-size: 1.5rem;
}
.brand-name {
  color: var(--amber);
  letter-spacing: 0.2em;
  font-size: 1rem;
}

.vehicle-link {
  color: var(--amber);
  text-decoration: none;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  border: 1px solid var(--amber-dim);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  transition: background 0.3s ease;
}
.vehicle-link:hover {
  background: rgba(201, 169, 106, 0.1);
}

.hero {
  max-width: 520px;
}
.hero h1 {
  font-size: 4rem;
  letter-spacing: 0.05em;
  font-weight: normal;
  color: var(--cream);
}
.tagline {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  color: var(--cream);
}
.divider {
  width: 60%;
  height: 1px;
  background: var(--amber-dim);
  margin: 1.5rem 0;
}
.blurb {
  line-height: 1.8;
  color: #c4b89c;
  font-size: 1rem;
}

.bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.connect .label {
  color: var(--amber);
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.8rem;
}
.connect p {
  margin: 0.3rem 0;
  color: #c4b89c;
}
.signoff {
  text-align: right;
  color: #9a8c6e;
}
