/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Tokens ── */
:root {
  --black:      #0a0a0a;
  --black-2:    #111111;
  --black-3:    #1a1a1a;
  --black-4:    #222222;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --gold-dim:   #7a6330;
  --orange:     #d4622a;
  --orange-light: #e8834e;
  --white:      #f5f0e8;
  --grey:       #888880;
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}

.hero-star-link {
  position: absolute;
  right: 30%;
  top: 6%;
  display: block;
  width: 14px;
  height: 14px;
  z-index: 10;
  animation: star-sparkle 4s ease-in-out infinite;
}
.hero-star-link::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, #f9c74f55 0%, transparent 70%);
  animation: star-glow 4s ease-in-out infinite;
  pointer-events: none;
}
.hero-star-link:hover { opacity: 1; animation: none; }
.hero-star-link:hover::before { opacity: 1; animation: none; }
.hero-star { width: 100%; height: 100%; display: block; }

@keyframes star-sparkle {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.15); }
}

@keyframes star-glow {
  0%, 100% { opacity: 0;   transform: scale(0.4); }
  50%       { opacity: 1;   transform: scale(1); }
}

@media (max-width: 768px) {
  .hero-star-link {
    width: 20px;
    height: 20px;
  }
  @keyframes star-sparkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.15); }
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}

.hero-rule {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--orange-light);
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 40px rgba(0,0,0,0.8);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── Sections ── */
main {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.intro {
  text-align: center;
  padding: 6rem 0 4rem;
}

.ornament {
  font-size: 1.2rem;
  color: var(--orange);
  letter-spacing: 0.5em;
  margin-bottom: 1.5rem;
}

.intro h2, .contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: #c0b89a;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.divider span:first-child,
.divider span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}
.divider span:last-child {
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}
.diamond {
  color: var(--gold);
  font-size: 0.6rem;
  flex: none !important;
  background: none !important;
  height: auto !important;
}

/* ── Features ── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.feature {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--black-4);
  background: var(--black-2);
  transition: border-color 0.3s;
}
.feature:hover { border-color: var(--gold-dim); }

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  filter: sepia(1) saturate(2) hue-rotate(5deg);
}

.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.feature p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.8;
}

/* ── Contact ── */
.contact {
  text-align: center;
  padding: 4rem 0 7rem;
}

.contact-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #a09880;
  margin-bottom: 2.5rem;
}

form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

input, textarea {
  background: var(--black-3);
  border: none;
  border-bottom: 1px solid var(--black-4);
  padding: 0.85rem 0;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
input:focus, textarea:focus { border-bottom-color: var(--gold); }
input::placeholder, textarea::placeholder { color: #444; }
textarea { resize: vertical; background: var(--black-3); padding: 0.85rem 0; }

button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding: 0.9rem 2.5rem;
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
button:hover:not(:disabled) {
  background: var(--orange);
  color: var(--black);
}
button:disabled { opacity: 0.5; cursor: default; }

.btn-arrow { font-size: 1rem; transition: transform 0.2s; }
button:hover .btn-arrow { transform: translateX(4px); }

.status {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  font-style: italic;
}
.status.ok { color: var(--gold-light); }
.status.err { color: #e07060; }

/* ── Footer ── */
footer {
  background: var(--black-2);
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--black-4);
}

.footer-rule {
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
  margin: 0 auto 1.5rem;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: #444;
  letter-spacing: 0.1em;
}
