:root {
  --bg: #050505;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f6efe0;
  --muted: #b8a77a;
  --accent: #c9a84a;
  --accent-2: #f0d48a;
  --border: rgba(201, 168, 74, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201, 168, 74, 0.16), transparent 25%),
    linear-gradient(135deg, var(--bg), #0e0e0e 60%, #060606);
  min-height: 100vh;
}

img {
  max-width: 100%;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 3rem;
}

.hero {
  padding: 1rem 0 3rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0 2rem;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: var(--accent-2);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent-2);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.hero h1,
.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.intro {
  font-size: 1.05rem;
  color: #ddd3b7;
  line-height: 1.8;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #8e6d16);
  color: #080808;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}

.hero-card {
  position: relative;
  padding: 0.7rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(10,10,10,0.95));
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.logo-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(240, 212, 138, 0.18);
  border-radius: 18px;
  background: #15120c;
}

.hero-logo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: inherit;
  filter: saturate(0.94) contrast(1.04);
  mix-blend-mode: screen;
  opacity: 0.94;
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1), filter 0.8s ease;
}

.hero-card:hover .hero-logo {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.05);
}

.card-orbit {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(201,168,74,0.25), transparent 45%);
  filter: blur(14px);
}

.section {
  padding: 2rem 0 1rem;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.3rem;
  margin-top: 1rem;
}

.about-grid p,
.info-card p,
.contact-box p {
  color: #e8dfc5;
  line-height: 1.8;
}

.quote-card,
.info-card,
.contact-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(10,10,10,0.9));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
}

.quote-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  margin: 0;
  color: var(--accent-2);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.contact-section {
  padding-bottom: 2rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-actions .btn {
    width: fit-content;
}

.contact-actions .btn {
    width: fit-content;
}

.contact-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-box .btn {
    width: fit-content;
    padding: 0.9rem 2rem;
}

.contact-box a:not(.btn) {
    color: var(--accent-2);
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:not(.btn):hover {
    color: white;
}

footer {
  border-top: 1px solid rgba(201,168,74,0.16);
  text-align: center;
  padding: 1rem 0 2rem;
  color: #9a906f;
}

@media (max-width: 860px) {

  .hero-content,
  .about-grid,
  .cards {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .page-shell {
    width: min(100% - 1.2rem, 1180px);
  }

  .hero {
    padding-top: 0.2rem;
  }
}

