:root {
  --text: #212529;
  --bg: #ffffff;
  --bg-muted: #f1f1f1;
  --dark: #212529;
  --border: #dee2e6;
  --font-body: "PT Sans", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

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

h1, h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  margin: 0 0 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  background: var(--bg);
  padding: 24px 0;
  text-align: center;
}

.site-header .logo {
  width: 220px;
  max-width: 60%;
  height: auto;
}

/* Hero */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0 60px;
  color: #fff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 64px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 24px;
}

.hero p {
  max-width: 900px;
  font-size: 16px;
  margin: 0 0 16px;
}

.hero .hero-note {
  font-style: italic;
  font-size: 14px;
  opacity: 0.9;
}

/* Pricing */
.pricing {
  padding: 56px 0;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.pricing-col .icon {
  display: block;
  font-size: 22px;
  font-style: normal;
  margin-bottom: 16px;
  color: var(--text);
}

.pricing-col h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing-col p {
  margin: 0 0 14px;
}

.pricing-col .note {
  font-style: italic;
  font-size: 14px;
  color: #6c757d;
  margin-top: -8px;
}

/* Contact */
.contact {
  background: var(--bg-muted);
  padding: 64px 0;
}

.contact h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form .hidden-field {
  position: absolute;
  left: -9999px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #212529;
}

.contact-form button {
  display: block;
  margin-left: auto;
  background: #212529;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #000;
}

/* Footer */
.site-footer {
  padding: 32px 0;
  text-align: right;
  background: var(--bg);
}

.instagram-link {
  color: var(--text);
  display: inline-flex;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 40px; }
}
