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

:root {
  --green-deep: #0f2318;
  --green-mid:  #1a3d2b;
  --gold:       #c9a84c;
  --gold-dim:   rgba(201,168,76,0.2);
  --white:      #ffffff;
  --gray:       rgba(255,255,255,0.5);
  --gray-dim:   rgba(255,255,255,0.15);
  --border:     rgba(201,168,76,0.18);
}

html, body { height: 100%; }

body {
  background: var(--green-deep);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* ── GRAIN ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.3;
  mix-blend-mode: overlay;
}

/* ── GLOW ── */
.bg-glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(45,106,71,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 15% 80%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── LAYOUT ── */
.page {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  height: 108px;
  width: auto;
  display: block;
}

/* ── MAIN ── */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 0 4rem;
  position: relative;
}

/* Watermark */
.watermark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  opacity: 0.04;
  pointer-events: none;
}

/* Eyebrow */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Heading */
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-heading .line-gold { color: var(--gold); }

/* Body copy */
.hero-body {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--gray);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-body strong {
  color: var(--white);
  font-weight: 400;
}

/* ── EMAIL FORM ── */
.form-wrap {
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
  max-width: 480px;
}

.form-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 0.85rem;
}

.email-row {
  display: flex;
  width: 100%;
}

.email-row input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.95rem 1.25rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
  border-radius: 0;
}

.email-row input::placeholder { color: rgba(255,255,255,0.2); }
.email-row input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}

.email-row button {
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0;
}

.email-row button:hover { background: #d4b560; }
.email-row button:disabled { opacity: 0.6; cursor: not-allowed; }

.form-note {
  font-size: 0.68rem;
  color: var(--gray-dim);
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
}

.error-msg {
  font-size: 0.72rem;
  color: #e07070;
  margin-top: 0.5rem;
  display: none;
}
.error-msg.show { display: block; }

/* Success */
.success-msg {
  display: none;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  background: rgba(201,168,76,0.05);
  max-width: 480px;
}
.success-msg.show { display: block; }
.success-msg p { font-size: 0.9rem; color: var(--gold); line-height: 1.7; }
.success-msg span { font-size: 0.75rem; color: var(--gray); display: block; margin-top: 0.3rem; }
.wrong-email {
  font-size: 0.68rem;
  color: var(--gray-dim);
  display: block;
  margin-top: 0.75rem;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}
.wrong-email:hover { color: var(--gray); }

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-socials a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-socials a:hover { color: var(--gold); }

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-suits {
  font-size: 0.8rem;
  color: rgba(201,168,76,0.15);
  letter-spacing: 0.3rem;
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.05em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── ABOUT PAGE ── */
.about-main {
  padding: 4.5rem 0 4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-photo {
  aspect-ratio: 640 / 750;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-heading {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
}

.about-body {
  max-width: none;
}

.about-body p {
  margin-bottom: 1.5rem;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.pull-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--gold);
  line-height: 1.5;
  max-width: 640px;
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.about-cta {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.9s 1.1s forwards;
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  .watermark { display: none; }
  .nav-logo-img { height: 76px; }
  .email-row { flex-direction: column; }
  .email-row input { border-right: 1px solid var(--border); border-bottom: none; }
  .email-row button { width: 100%; }
  footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 780px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-photo {
    max-width: 220px;
  }
}
