@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --bg: #120b06;
  --accent: #e8c27a;
  --accent2: #d47a52;
  --text: #fff8ec;
  --muted: #c4b09a;
  --line: rgba(232, 194, 122, 0.22);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Outfit", sans-serif;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body);
  line-height: 1.65;
  min-height: 100vh;
  background:
    radial-gradient(780px 460px at 0% 0%, rgba(232, 194, 122, 0.16), transparent 55%),
    radial-gradient(900px 520px at 100% -5%, rgba(212, 122, 82, 0.14), transparent 50%),
    linear-gradient(180deg, #1a1008, var(--bg));
}

a { color: var(--accent); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--accent2); }

.header, .footer, main { width: min(1040px, 90%); margin: 0 auto; }

.header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.7rem 0 1.1rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.35rem);
  color: var(--accent);
  font-style: italic;
  letter-spacing: 0.01em;
  animation: soft-glow 4s ease-in-out infinite;
}

nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.15rem 0.2rem; }
nav a {
  margin: 0;
  padding: 0.25rem 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}
nav a:hover { color: var(--accent); }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.8rem;
  align-items: end;
  padding: 4.2rem 0 2.8rem;
  min-height: 74vh;
  border-bottom: 1px solid var(--line);
  animation: fade-up 0.8s ease both;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent2);
  font-size: 0.7rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  margin: 0 0 1rem;
  line-height: 1.05;
  font-weight: 700;
}

.hero p, .lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34rem;
  margin: 0;
}

.hero img, .hero-media {
  width: 100%;
  border-radius: 2px;
  outline: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: gentle-rise 6s ease-in-out infinite;
}

.cta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }

.btn {
  display: inline-block;
  margin: 0;
  padding: 0.8rem 1.35rem;
  background: var(--accent);
  color: #1a1000;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { color: #1a1000; transform: translateY(-2px); background: #f0d090; }
.btn.ghost, a.btn.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section { padding: 1.5rem 0 0.5rem; }
.section h2 {
  font-family: var(--display);
  font-size: 2rem;
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2rem;
  padding: 1.5rem 0 3.2rem;
}

.card {
  padding: 0 0 1.4rem;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.card:hover { transform: translateY(-2px); }
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  margin-bottom: 0.9rem;
  outline: 1px solid var(--line);
}
.card h2, .card h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 0 0 0.45rem;
  color: var(--text);
  font-weight: 700;
}
.card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

.footer {
  padding: 2.6rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes soft-glow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 24px rgba(232, 194, 122, 0.28); }
}
@keyframes gentle-rise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 800px) {
  .hero, .grid { grid-template-columns: 1fr; }
  .header { flex-direction: column; align-items: flex-start; }
  nav { justify-content: flex-start; }
}
