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

:root {
  --brand-dark: #1a1a2e;
  --brand-mid:  #16213e;
  --brand-accent: #c9a84c;
  --brand-accent-light: #e8c96e;
  --text-light: #f5f5f5;
  --text-muted: #b0b0b0;
  --bg-light: #f9f9f7;
  --bg-white: #ffffff;
  --border: #ddd;
  --error: #c0392b;
  --success: #27ae60;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  color: #222;
  background: var(--bg-light);
  line-height: 1.7;
}

a {
  color: var(--brand-accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   HERO
   ===================== */
.hero {
  background: linear-gradient(160deg, var(--brand-dark) 0%, var(--brand-mid) 100%);
  color: var(--text-light);
  text-align: center;
  padding: 52px 24px 60px;
  position: relative;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.logo-wrap {
  display: inline-block;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 28px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.logo {
  max-width: 240px;
  width: 100%;
  display: block;
}

.tagline {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-accent-light);
  margin-bottom: 12px;
}

.sub-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* =====================
   ABOUT
   ===================== */
.about {
  background: var(--bg-white);
  padding: 48px 0;
  text-align: center;
}

.about h2 {
  font-size: 1.9rem;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.about > .container > p {
  font-size: 1.05rem;
  color: #444;
  max-width: 680px;
  margin: 0 auto 36px;
}

.about-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: left;
  margin-top: 8px;
}

.about-service {
  background: var(--bg-light);
  border-left: 4px solid var(--brand-accent);
  border-radius: var(--radius);
  padding: 24px 20px;
}

.about-service h3 {
  font-size: 1.05rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.about-service p {
  font-size: 0.92rem;
  color: #555;
  margin: 0;
}

/* =====================
   VALUES
   ===================== */
.values {
  background: var(--bg-light);
  padding: 48px 0;
  text-align: center;
}

.values h2 {
  font-size: 1.9rem;
  color: var(--brand-dark);
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.value-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px 24px;
  box-shadow: var(--shadow);
}

.value-icon {
  font-size: 2rem;
  color: var(--brand-accent);
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 1.15rem;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.95rem;
  color: #555;
}

/* =====================
   OPT-IN FORM
   ===================== */
.optin {
  background: linear-gradient(180deg, #111827 0%, var(--brand-dark) 100%);
  padding: 52px 0 60px;
  color: var(--text-light);
}

.optin h2 {
  font-size: 1.9rem;
  color: var(--brand-accent-light);
  text-align: center;
  margin-bottom: 10px;
}

.optin-intro {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

form {
  background: #1e2d45;
  border-radius: 10px;
  padding: 40px 36px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-top: 3px solid var(--brand-accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row.three-col {
  grid-template-columns: 2fr 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  margin-bottom: 20px;
}

label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.req {
  color: var(--brand-accent);
}

input[type="text"] {
  background: #152032;
  border: 1px solid #2e4060;
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 1rem;
  color: var(--text-light);
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}

input[type="text"]:focus {
  outline: none;
  border-color: var(--brand-accent);
  background: #1a2a40;
}

input[type="text"]::placeholder {
  color: #4a6080;
}

/* Checkbox */
.checkbox-group {
  margin-top: 8px;
  margin-bottom: 28px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  text-transform: none;
  font-weight: normal;
  letter-spacing: normal;
}

input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--brand-accent);
  cursor: pointer;
}

.checkbox-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.checkbox-text a {
  color: var(--brand-accent-light);
}

/* Submit */
.btn-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--brand-accent);
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, opacity 0.2s;
}

.btn-submit:hover:not(:disabled) {
  background: var(--brand-accent-light);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Messages */
.form-message {
  font-size: 0.92rem;
  padding: 10px 14px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  display: none;
}

.form-message.error {
  display: block;
  background: rgba(192, 57, 43, 0.2);
  color: #f08080;
  border: 1px solid rgba(192, 57, 43, 0.4);
}

.form-message.success {
  display: block;
  background: rgba(39, 174, 96, 0.2);
  color: #7dcea0;
  border: 1px solid rgba(39, 174, 96, 0.4);
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: #111;
  color: var(--text-muted);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.85rem;
}

.site-footer p {
  margin: 4px 0;
}

.site-footer a {
  color: var(--brand-accent);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 600px) {
  .tagline {
    font-size: 1.7rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row.three-col {
    grid-template-columns: 1fr;
  }

  form {
    padding: 28px 20px;
  }
}
