@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
:root,
[data-theme=red] {
  --accent: #C85D47;
  --accent-light: #F2DEDA;
  --dark: #322D27;
  --olive: #859268;
  --bg: #F9F4ED;
  --bg-white: #FFFFFF;
  --card-bg: #FFFFFF;
  --text: #322D27;
  --text-light: #7A7168;
  --border: #E8E1D6;
}

[data-theme=green] {
  --accent: #859268;
  --accent-light: #DFE3D3;
  --dark: #322D27;
  --olive: #859268;
  --bg: #F5F6F0;
  --bg-white: #FFFFFF;
  --card-bg: #FFFFFF;
  --text: #322D27;
  --text-light: #7A7168;
  --border: #D8DCC8;
}

[data-theme=black] {
  --accent: #322D27;
  --accent-light: #E0DBD4;
  --dark: #322D27;
  --olive: #859268;
  --bg: #F4F2EF;
  --bg-white: #FFFFFF;
  --card-bg: #FFFFFF;
  --text: #322D27;
  --text-light: #7A7168;
  --border: #DDD9D2;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 768px) {
  body {
    font-size: 1.25rem;
  }
}

h1, h2, h3, h4 {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--text);
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.site-nav {
  padding: 1.25rem 0;
}
.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .site-nav .nav-inner {
    flex-direction: row;
    gap: 0;
  }
}
.site-nav .nav-logo img {
  height: 36px;
  width: auto;
}
@media (min-width: 768px) {
  .site-nav .nav-logo img {
    height: 44px;
  }
}
.site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .site-nav .nav-links {
    font-size: 1.25rem;
  }
}
.site-nav .nav-links a:not(.btn):hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.25rem;
  transition: all 0.2s ease;
  text-decoration: none;
}
@media (min-width: 768px) {
  .btn {
    font-size: 1.25rem;
  }
}
.btn .btn-icon {
  width: 16px;
  height: 16px;
}

.btn-outline {
  background: none;
  color: var(--text);
  border: 1.5px solid var(--text);
  border-radius: 8px;
  padding: 0.5rem 1rem;
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
}
.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline-primary {
  background: none;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
}
.btn-outline-primary:hover {
  background: var(--accent);
  color: #fff;
}

.hero {
  padding: 2rem 0 3rem;
}
@media (min-width: 768px) {
  .hero {
    padding: 3rem 0 4rem;
  }
}
.hero .hero-inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hero .hero-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 3rem;
  }
}
.hero .hero-content {
  max-width: 520px;
}
.hero .hero-text {
  font-size: 1.25rem;
  line-height: 1.7;
  margin: 0 0 0.25rem;
  color: var(--text);
}
@media (min-width: 768px) {
  .hero .hero-text {
    font-size: 1.5rem;
  }
}
.hero .hero-cta {
  font-size: 1.25rem;
  margin: 0;
}
@media (min-width: 768px) {
  .hero .hero-cta {
    font-size: 1.5rem;
  }
}
.hero .hero-cta strong {
  color: var(--text);
}

.headshot-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .headshot-circle {
    width: 220px;
    height: 220px;
  }
}
.headshot-circle img {
  width: 58%;
  height: auto;
}

.section-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
  margin: 0 0 2.5rem;
}
@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

.section-separator {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}
.section-separator img {
  height: 14px;
  width: auto;
}

.projects {
  padding: 3rem 0 2rem;
}
@media (min-width: 768px) {
  .projects {
    padding: 4rem 0 2.5rem;
  }
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.project-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.project-card .project-image {
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card .project-details {
  padding: 1.25rem;
}
.project-card .project-details h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .project-card .project-details h3 {
    font-size: 1.25rem;
  }
}
.project-card .project-details h3 a {
  text-decoration: underline;
}
.project-card .project-details h3 a:hover {
  color: var(--accent);
}
.project-card .project-details p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
@media (min-width: 768px) {
  .project-card .project-details p {
    font-size: 1rem;
  }
}

.project-description {
  position: relative;
}
.project-description.is-expanded p {
  max-height: none;
}

.read-more-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 0.5rem;
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
}
.read-more-btn:hover {
  text-decoration: underline;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.tech-tags span {
  background: var(--bg);
  color: var(--text-light);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
}

.services {
  padding: 2rem 0 3rem;
}
@media (min-width: 768px) {
  .services {
    padding: 2.5rem 0 4rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.service-card {
  text-align: left;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.service-card .service-icon {
  width: 28px;
  height: 28px;
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.service-card .service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .service-card h3 {
    font-size: 1.25rem;
  }
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 768px) {
  .service-card p {
    font-size: 1rem;
  }
}

.stats {
  padding: 3rem 0;
  background: var(--accent-light);
}
@media (min-width: 768px) {
  .stats {
    padding: 4rem 0;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .stat-number {
    font-size: 3.5rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.quote-section {
  padding: 3rem 0;
  background: var(--accent-light);
}
@media (min-width: 768px) {
  .quote-section {
    padding: 4rem 0;
  }
}

.quote {
  text-align: center;
  margin: 0;
  max-width: 680px;
  margin: 0 auto;
}
.quote p {
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .quote p {
    font-size: 1.5rem;
  }
}
.quote cite {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  color: var(--text-light);
}
@media (min-width: 768px) {
  .quote cite {
    font-size: 1rem;
  }
}

.cta {
  padding: 3rem 0;
  text-align: center;
  background: var(--accent-light);
}
@media (min-width: 768px) {
  .cta {
    padding: 4rem 0;
  }
}
.cta h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .cta h2 {
    font-size: 1.5rem;
  }
}
.cta p {
  color: var(--text-light);
  font-size: 0.875rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .cta p {
    font-size: 1rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

.card-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 768px) {
  .card-modal-overlay {
    padding: 2.5rem 1.25rem;
  }
}
.card-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-modal {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: var(--bg);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 1.25rem;
  margin: auto 0;
}
@media (min-width: 768px) {
  .contact-modal {
    padding: 2rem 2.5rem;
  }
}

.card-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  padding: 0 0.5rem;
}
.card-modal-close:hover {
  opacity: 1;
}

.contact-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-right: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-header-logo img {
  height: 36px;
  width: auto;
}
@media (min-width: 768px) {
  .contact-header-logo img {
    height: 48px;
  }
}

.contact-header-tagline {
  text-align: right;
  font-size: 0.75rem;
  color: var(--text);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .contact-header-tagline {
    font-size: 0.95rem;
  }
}
.contact-header-tagline span {
  display: block;
}
.contact-header-tagline strong {
  display: block;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .contact-form {
    gap: 1.25rem;
  }
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-row label,
.form-row .form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
@media (min-width: 768px) {
  .form-row label,
  .form-row .form-label {
    font-size: 1rem;
  }
}
.form-row .form-optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.8em;
}
.form-row input[type=text],
.form-row input[type=email],
.form-row input[type=tel],
.form-row textarea {
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  .form-row input[type=text],
  .form-row input[type=email],
  .form-row input[type=tel],
  .form-row textarea {
    font-size: 1rem;
  }
}
.form-row input[type=text]:focus,
.form-row input[type=email]:focus,
.form-row input[type=tel]:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 93, 71, 0.15);
}
.form-row textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}

.form-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
}
@media (min-width: 768px) {
  .form-option {
    font-size: 1rem;
  }
}
.form-option:hover {
  border-color: var(--accent);
}
.form-option input[type=radio] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
}
.form-option:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-light);
}

.contact-modal-footer {
  display: flex;
  justify-content: center;
}

.contact-submit {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}
@media (min-width: 768px) {
  .contact-submit {
    font-size: 1.25rem;
    padding: 1rem 3rem;
  }
}

.site-footer {
  padding: 1.5rem 0 2rem;
}
.site-footer .footer-separator {
  display: flex;
  justify-content: center;
}
.site-footer .footer-separator img {
  height: 14px;
  width: auto;
  opacity: 0.6;
}

/*# sourceMappingURL=main.css.map */
