* {
  box-sizing: border-box;
}

:root {
  --bg: #0f5663;
  --bg-dark: #0a4049;
  --bg-alt: #114b56;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --gold: #e3c95f;
  --gold-dark: #cda93a;
  --text: #f6ebbd;
  --text-soft: rgba(248, 243, 220, 0.84);
  --border: rgba(227, 201, 95, 0.25);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(227, 201, 95, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 24%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 52px 0 76px;
}

.logo-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.logo-circle {
  background: ...;
  border-radius: 50%;
}

.logo-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-copy {
  text-align: left;
}

.eyebrow,
.section-tag {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(243, 212, 108, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
}

h1, h2, h3, .footer-brand {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  margin: 18px 0 12px;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.95;
}

h2 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.05;
}

h3 {
  margin: 0 0 10px;
  font-size: 30px;
}

.subtitle {
  margin: 0 0 22px;
  font-size: clamp(24px, 3vw, 38px);
  color: #f7efcf;
}

.lead,
.copy,
.section-text,
.contact-card,
.form-note,
.feature-card p,
.info-box p,
.footer {
  color: var(--text-soft);
  line-height: 1.85;
}

.hero-actions,
.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #12323a;
}

.btn-secondary {
  border: 1px solid rgba(227, 201, 95, 0.5);
  background: transparent;
  color: #f7efcf;
}

.section {
  padding: 72px 0;
}

.section-alt,
.section-contact {
  border-top: 1px solid rgba(227, 201, 95, 0.15);
  border-bottom: 1px solid rgba(227, 201, 95, 0.15);
  background: var(--bg-alt);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-text {
  max-width: 480px;
}

.card-grid,
.trio-grid {
  display: grid;
  gap: 24px;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.info-box,
.portrait-box,
.contact-card,
.contact-form {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 24px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(227, 201, 95, 0.5);
}

.icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(227, 201, 95, 0.35);
  background: #174653;
  font-size: 30px;
}

.feature-card h3 {
  font-size: 34px;
  margin-bottom: 8px;
}

.feature-card span {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 600;
}

.info-box {
  padding: 28px;
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.portrait-box {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}

.portrait-placeholder {
  border: 1px dashed rgba(227, 201, 95, 0.35);
  border-radius: 24px;
  padding: 38px 24px;
  text-align: center;
}

.portrait-icon {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #1a4652;
  font-size: 42px;
}

.contact-card {
  margin-top: 26px;
  padding: 24px;
}

.contact-card a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  padding: 28px;
  background: rgba(255,255,255,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form span {
  display: block;
  margin-bottom: 8px;
  color: #fff2c7;
  font-size: 14px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(227, 201, 95, 0.25);
  border-radius: 18px;
  background: #123d48;
  color: #fff7db;
  padding: 14px 16px;
  font: inherit;
}

textarea {
  border-radius: 24px;
  resize: vertical;
  min-height: 140px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(227, 201, 95, 0.7);
}

.checkbox {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 18px;
}

.checkbox span {
  margin: 0;
  color: var(--text-soft);
  font-weight: 400;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.submit-btn {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin-top: 14px;
  font-size: 14px;
}

.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(227, 201, 95, 0.15);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
}

.footer-brand {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #f0d768;
  font-size: 18px;
  margin-bottom: 8px;
}

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.status-card {
  width: min(720px, 100%);
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  text-align: center;
}

.status-card h1 {
  font-size: 54px;
  margin-bottom: 12px;
}

.status-card p {
  color: var(--text-soft);
  line-height: 1.8;
}

.status-card a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .card-grid,
  .trio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trio-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .card-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .logo-wrap {
    justify-content: center;
  }

  .section {
    padding: 56px 0;
  }
}
