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

img, video {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

/* ===== VARIABLES ===== */
:root {
  --background: #0a0a0a;
  --surface: #141414;
  --text: #e8e8e8;
  --accent: #d4af37;
  --muted: #888888;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

/* ===== BASE ===== */
body {
  background: var(--background);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
}

/* ===== UTILITY ===== */
.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

/* ===== FOCUS (WCAG FIX) ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ===== CTA LINKS ===== */
.cta-link {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.cta-link:hover {
  border-color: var(--accent);
}

/* ===== CONTACT BLOCK ===== */
.contact-block {
  padding: 6rem 0;
}

.contact-block-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.agent-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text);
}

.agent-detail {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.agent-email, .agent-phone {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.agent-email:hover, .agent-phone:hover {
  text-decoration: underline;
}

/* ===== PRESS QUOTE ===== */
.press-quote {
  margin: 3rem 0;
}

.press-quote blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
}

.press-quote figcaption {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
}

/* ===== REEL EMBED ===== */
.reel-embed-wrapper {
  position: relative;
  padding-top: 56.25%;
  background: var(--surface);
}

.reel-embed-wrapper iframe,
.reel-embed-wrapper .reel-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.reel-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== FORM FIELDS ===== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
textarea,
select {
  background: var(--surface);
  border: 1px solid #2a2a2a;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.875rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  outline: none;
}

select option {
  background: var(--surface);
}

.submit-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  padding: 1rem 2.5rem;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  min-height: 44px;
  min-width: 44px;
}

.submit-btn:hover {
  background: var(--accent);
  color: var(--background);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-block-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
