@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --primary: hsl(81, 41%, 58%);
  --secondary: hsl(87, 36%, 42%);
  --accent: hsl(73, 48%, 80%);
  --bg-dark: #101216;
  --bg-panel: #16191f;
  --clr-primary: hsl(81, 41%, 58%);
  --clr-secondary: hsl(87, 36%, 42%);
  --clr-accent: hsl(73, 48%, 80%);
}

body{
  background-color: var(--bg-dark);
  color: #f2f2f2;
  font-family: 'Lora', serif;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Oswald', sans-serif;
}
.navbar{
  background-color: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #f2f2f2 !important;
}
.navbar-brand img{
  border-radius: 16px;
}
.navbar-nav .nav-link{
  color: #e8e8e8 !important;
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  padding: 0.5rem 1.1rem !important;
}
.navbar-nav .nav-link:hover{
  color: var(--primary) !important;
}
.navbar-toggler{
  border-color: rgba(255,255,255,0.3);
}
.navbar-toggler-icon{
  filter: invert(1);
}

footer {
  background: #14161b;
  color: #e8e9e4;
  font-family: 'Lora', serif;
  padding: 96px 0 32px;
  border-top: 1px solid hsl(81, 41%, 58%, 0.25);
}
footer h5, footer h6 {
  font-family: 'Oswald', sans-serif;
  color: hsl(73, 48%, 80%);
  margin-bottom: 20px;
}
footer p, footer li, footer a {
  color: #c9cbc4;
}
footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover {
  color: hsl(81, 41%, 58%);
}
footer .footer-links li {
  margin-bottom: 10px;
  list-style: none;
}
.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 48px 0 24px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid hsl(87, 36%, 42%, 0.4);
  color: hsl(73, 48%, 80%);
  margin-right: 10px;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}
.social-icons a:hover {
  background: hsl(81, 41%, 58%);
  color: #101216;
  border-color: hsl(81, 41%, 58%);
}
.footer-bottom-text {
  font-size: 0.9rem;
  color: #9a9c95;
}
.footer-bottom-text a {
  color: #9a9c95;
}
.footer-bottom-text a:hover {
  color: hsl(81, 41%, 58%);
}

#cookieBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #14161b;
  border-top: 2px solid hsl(81, 41%, 58%);
  padding: 18px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Lora', serif;
  color: #e8e9e4;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
#cookieBar h5 {
  font-family: 'Oswald', sans-serif;
  color: hsl(73, 48%, 80%);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
#cookieBar p {
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: #c9cbc4;
}
.cookie-cats {
  font-size: 0.8rem;
  color: #b7b9b1;
  margin-bottom: 10px;
}
.cookie-cats strong {
  color: hsl(81, 41%, 58%);
}
.cookie-btn {
  font-family: 'Oswald', sans-serif;
  border-radius: 16px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(81, 41%, 58%);
  color: #101216;
}
.btn-accept-all:hover {
  background: hsl(87, 36%, 42%);
  color: #fff;
}
.btn-reject-optional {
  background: transparent;
  border: 1px solid hsl(73, 48%, 80%);
  color: hsl(73, 48%, 80%);
}
.btn-reject-optional:hover {
  background: hsl(73, 48%, 80%);
  color: #101216;
}
.cookie-manage-link {
  font-size: 0.8rem;
  color: #9a9c95;
  text-decoration: underline;
}
.cookie-manage-link:hover {
  color: hsl(81, 41%, 58%);
}



.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url('../images/headline.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 16/9;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,18,22,0.92) 0%, rgba(16,18,22,0.75) 45%, rgba(31,36,26,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #f5f5f0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(73, 48%, 80%);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: #f5f5f0;
  margin-bottom: 1.25rem;
}

.hero-subheading {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: hsl(81, 41%, 68%);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #d8dbd3;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.btn-hero {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.05rem;
  padding: 0.95rem 2.5rem;
  border-radius: 20px;
  background-color: hsl(81, 41%, 58%);
  color: #14170f;
  border: 2px solid hsl(81, 41%, 58%);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-hero:hover {
  background-color: transparent;
  color: hsl(73, 48%, 80%);
  border-color: hsl(73, 48%, 80%);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

#story {
  background: #14171c;
  color: #eef1e8;
  padding: 96px 0;
  font-family: 'Lora', serif;
}
#story h2, #story h3 {
  font-family: 'Oswald', sans-serif;
  color: hsl(81, 41%, 58%);
}
#story .lead-text {
  color: #d8ddd0;
  font-size: 1.05rem;
  line-height: 1.75;
}
#story .img-wrap {
  border: 1px solid hsl(73, 48%, 80%, 0.25);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}
#story .img-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
#story .value-panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
  height: 100%;
}
#story .value-panel h4 {
  font-family: 'Oswald', sans-serif;
  color: hsl(87, 36%, 42%);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
#story .value-panel p {
  color: #cfd4c8;
  font-size: 0.95rem;
  margin-bottom: 0;
}
#story .stat-line {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  margin-top: 64px;
}
#story .stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  color: hsl(81, 41%, 58%);
}
#story .stat-label {
  color: #b7bcae;
  font-size: 0.9rem;
}

#portfolio {
  background-color: #14161b;
  padding: 96px 0;
  font-family: 'Lora', serif;
  color: #e8e8e8;
}
#portfolio h2 {
  font-family: 'Oswald', sans-serif;
  color: #f2f2f2;
  font-weight: 600;
}
#portfolio .lead-text {
  color: #c5c9cf;
  max-width: 640px;
}
#portfolio .portfolio-card {
  background-color: #1a1d23;
  border: 1px solid rgba(200, 220, 170, 0.15);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
#portfolio .portfolio-card:hover {
  border-color: hsl(81, 41%, 58%);
  transform: translateY(-4px);
}
#portfolio .portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #0f1115;
}
#portfolio .portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio .portfolio-card .card-body {
  padding: 24px;
}
#portfolio .badge-category {
  background-color: hsl(73, 48%, 80%);
  color: #1a1d23;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
#portfolio .portfolio-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  color: #f2f2f2;
  margin-top: 14px;
  margin-bottom: 10px;
}
#portfolio .portfolio-card p {
  color: #b8bcc2;
  font-size: 0.95rem;
  line-height: 1.6;
}
#portfolio .btn-details {
  background-color: transparent;
  border: 1px solid hsl(81, 41%, 58%);
  color: hsl(81, 41%, 58%);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 30px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 10px;
}
#portfolio .btn-details:hover {
  background-color: hsl(81, 41%, 58%);
  color: #14161b;
}
#portfolio .modal-content {
  background-color: #1a1d23;
  border: 1px solid rgba(200, 220, 170, 0.2);
  border-radius: 20px;
  color: #e8e8e8;
}
#portfolio .modal-header {
  border-bottom: 1px solid rgba(200, 220, 170, 0.15);
}
#portfolio .modal-footer {
  border-top: 1px solid rgba(200, 220, 170, 0.15);
}
#portfolio .modal-title {
  font-family: 'Oswald', sans-serif;
  color: #f2f2f2;
}
#portfolio .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
#portfolio .modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}
#portfolio .modal .btn-primary-custom {
  background-color: hsl(81, 41%, 58%);
  border: none;
  color: #14161b;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 8px 22px;
  border-radius: 30px;
}

.services-section {
  background: #14171c;
  padding: 112px 0;
}
.services-section .section-heading {
  font-family: 'Oswald', sans-serif;
  color: #f5f5f5;
  font-weight: 600;
}
.services-section .section-sub {
  font-family: 'Lora', serif;
  color: #c9cdd3;
}
.services-list {
  border-top: 1px solid rgba(255,255,255,0.12);
}
.service-item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 32px 24px;
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: 16px;
}
.service-item:hover {
  background: #1b1e24;
  transform: translateY(-4px);
}
.service-icon {
  font-size: 2rem;
  color: hsl(81, 41%, 58%);
  margin-bottom: 16px;
}
.service-title {
  font-family: 'Oswald', sans-serif;
  color: #f5f5f5;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.service-desc {
  font-family: 'Lora', serif;
  color: #b7bcc3;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.service-price {
  font-family: 'Oswald', sans-serif;
  color: hsl(73, 48%, 80%);
  font-size: 1.1rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .service-item.col-md-6:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.12);
  }
}

#reach-us {
  background-color: #14161b;
  color: #f0f0f0;
  padding: 96px 0;
  font-family: 'Lora', serif;
}
#reach-us h2, #reach-us h3 {
  font-family: 'Oswald', sans-serif;
  color: #f0f0f0;
}
#reach-us .lead-text {
  color: hsl(73, 48%, 80%);
}
#reach-us .contact-panel {
  background-color: #1a1d23;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}
#reach-us .contact-panel .form-control {
  background-color: #101216;
  border: 1px solid rgba(255,255,255,0.15);
  color: #f0f0f0;
  border-radius: 12px;
  padding: 12px 16px;
}
#reach-us .contact-panel .form-control:focus {
  background-color: #101216;
  color: #f0f0f0;
  border-color: hsl(81, 41%, 58%);
  box-shadow: 0 0 0 0.2rem rgba(160, 195, 100, 0.25);
}
#reach-us .contact-panel .form-label {
  color: #d8d8d8;
  font-weight: 500;
  margin-bottom: 6px;
}
#reach-us .btn-submit {
  background-color: hsl(81, 41%, 58%);
  color: #101216;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#reach-us .btn-submit:hover {
  background-color: hsl(87, 36%, 42%);
  color: #ffffff;
}
#reach-us .info-block {
  background-color: #1a1d23;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
}
#reach-us .info-block h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
#reach-us .info-block p {
  margin-bottom: 8px;
  color: #d8d8d8;
}
#reach-us .info-block a {
  color: hsl(73, 48%, 80%);
  text-decoration: none;
}
#reach-us .info-block a:hover {
  color: hsl(81, 41%, 58%);
  text-decoration: underline;
}
#reach-us .icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: hsl(81, 41%, 58%);
  color: #101216;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
#reach-us .find-us-line {
  font-size: 0.95rem;
  color: #b8b8b8;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px;
  margin-top: 12px;
}
#reach-us .hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
#reach-us .hours-row:last-child {
  border-bottom: none;
}

#legal{
  background:#15171c;
  padding:96px 0;
  font-family:'Lora',serif;
  color:#e8e8e4;
}
#legal h2{
  font-family:'Oswald',sans-serif;
  color:hsl(81,41%,58%);
  font-weight:600;
  letter-spacing:0.5px;
}
#legal .disclaimer-panel{
  background:#1a1d23;
  border:1px solid hsl(87,36%,42%,0.4);
  border-radius:20px;
  padding:48px;
}
#legal .icon-wrap{
  width:56px;
  height:56px;
  border-radius:16px;
  background:hsl(73,48%,80%,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
#legal .icon-wrap i{
  font-size:1.7rem;
  color:hsl(73,48%,80%);
}
#legal p{
  font-size:1.05rem;
  line-height:1.8;
  color:#d3d5d0;
  margin-bottom:0;
}
@media (max-width:768px){
  #legal .disclaimer-panel{
    padding:32px 24px;
  }
}

#contact-page {
  background: #14161b;
  color: #e8e8e2;
  padding: 96px 0;
  font-family: 'Lora', serif;
}
#contact-page h1, #contact-page h2, #contact-page h3 {
  font-family: 'Oswald', sans-serif;
  color: #f2f4ec;
}
#contact-page .lead-text {
  color: #c7cbc0;
  max-width: 640px;
}
#contact-page .panel {
  background: #1a1d23;
  border: 1px solid rgba(200, 220, 180, 0.15);
  border-radius: 20px;
  padding: 40px;
}
#contact-page .form-label {
  color: #d7dccb;
  font-family: 'Lora', serif;
}
#contact-page .form-control {
  background: #101216;
  border: 1px solid rgba(200, 220, 180, 0.25);
  color: #f2f4ec;
  border-radius: 12px;
  padding: 12px 16px;
}
#contact-page .form-control:focus {
  background: #101216;
  color: #f2f4ec;
  border-color: hsl(81, 41%, 58%);
  box-shadow: 0 0 0 0.2rem hsla(81, 41%, 58%, 0.25);
}
#contact-page .form-control::placeholder {
  color: #8a8f83;
}
#contact-page .btn-submit {
  background: hsl(81, 41%, 58%);
  color: #101216;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}
#contact-page .btn-submit:hover {
  background: hsl(87, 36%, 42%);
  color: #f2f4ec;
}
#contact-page .info-block {
  border-left: 2px solid hsl(73, 48%, 80%);
  padding-left: 20px;
  margin-bottom: 28px;
}
#contact-page .info-block a {
  color: hsl(73, 48%, 80%);
  text-decoration: none;
}
#contact-page .info-block a:hover {
  color: hsl(81, 41%, 58%);
  text-decoration: underline;
}
#contact-page .info-label {
  color: #9aa08c;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
#contact-page .hours-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#contact-page .hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(200, 220, 180, 0.1);
  color: #c7cbc0;
}
#contact-page .map-link {
  display: inline-block;
  margin-top: 8px;
  color: hsl(81, 41%, 58%);
  font-weight: 600;
}
#contact-page .cta-strip {
  background: hsl(87, 36%, 42%);
  border-radius: 20px;
  padding: 48px;
  color: #101216;
  text-align: center;
  margin-top: 96px;
}
#contact-page .cta-strip h2 {
  color: #101216;
}
#contact-page .cta-strip .btn-cta {
  background: #101216;
  color: hsl(73, 48%, 80%);
  border-radius: 12px;
  padding: 12px 36px;
  font-family: 'Oswald', sans-serif;
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
}
#contact-page .cta-strip .btn-cta:hover {
  background: #1a1d23;
  color: hsl(81, 41%, 58%);
}
@media (max-width: 767px) {
  #contact-page { padding: 64px 0; }
  #contact-page .panel { padding: 24px; }
  #contact-page .cta-strip { padding: 32px 20px; }
}



  

  .thankyou-section {
    font-family: 'Lora', serif;
    background: linear-gradient(135deg, var(--clr-accent) 0%, #ffffff 60%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 3rem 1rem;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.7s ease-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .thankyou-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1.5rem hsla(87, 36%, 42%, 0.35);
    animation: popIn 0.6s ease-out 0.1s both;
  }

  @keyframes popIn {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .thankyou-icon-wrapper svg {
    width: 52px;
    height: 52px;
    stroke: #ffffff;
  }

  .thankyou-heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
  }

  .thankyou-text {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
  }

  .thankyou-divider {
    width: 70px;
    height: 4px;
    background: var(--clr-primary);
    border-radius: 2px;
    margin: 1.5rem auto;
  }

  .thankyou-note {
    background: hsla(73, 48%, 80%, 0.35);
    border-left: 4px solid var(--clr-primary);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: #3f4a2f;
    text-align: left;
    margin: 1.75rem 0;
  }

  .thankyou-note strong {
    color: var(--clr-secondary);
  }

  .btn-thankyou {
    font-family: 'Oswald', sans-serif;
    background-color: var(--clr-primary);
    border: none;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 2.25rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.4rem 1rem hsla(81, 41%, 58%, 0.4);
  }

  .btn-thankyou:hover {
    background-color: var(--clr-secondary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 0.6rem 1.4rem hsla(87, 36%, 42%, 0.45);
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2.25rem 1.25rem;
    }
    .thankyou-heading {
      font-size: 1.6rem;
    }
    .thankyou-icon-wrapper {
      width: 80px;
      height: 80px;
    }
    .thankyou-icon-wrapper svg {
      width: 42px;
      height: 42px;
    }
  }

#portfolio-body {
  background-color: #14161b;
  color: #e8e8e4;
  padding: 96px 0;
  font-family: 'Lora', serif;
}
#portfolio-body h1,
#portfolio-body h2,
#portfolio-body h3,
#portfolio-body h4 {
  font-family: 'Oswald', sans-serif;
  color: #f2f4ec;
}
#portfolio-body .intro-block {
  max-width: 760px;
  margin-bottom: 72px;
}
#portfolio-body .intro-block p {
  color: #c7cbc0;
  font-size: 1.05rem;
  line-height: 1.7;
}
#portfolio-body .badge-category {
  background-color: hsl(81, 41%, 58%);
  color: #14161b;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 20px;
}
#portfolio-body .project-card {
  background-color: #1a1d23;
  border: 1px solid rgba(232, 232, 228, 0.12);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
#portfolio-body .project-card:hover {
  border-color: hsl(81, 41%, 58%);
  transform: translateY(-4px);
}
#portfolio-body .project-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #0f1114;
}
#portfolio-body .project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-body .project-body {
  padding: 24px 24px 28px;
}
#portfolio-body .project-body h3 {
  font-size: 1.3rem;
  margin: 14px 0 10px;
}
#portfolio-body .project-body p {
  color: #c7cbc0;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
#portfolio-body .btn-view {
  background-color: transparent;
  border: 1px solid hsl(81, 41%, 58%);
  color: hsl(81, 41%, 58%);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 8px 20px;
  border-radius: 30px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
#portfolio-body .btn-view:hover {
  background-color: hsl(81, 41%, 58%);
  color: #14161b;
}
#portfolio-body .modal-content {
  background-color: #1a1d23;
  color: #e8e8e4;
  border: 1px solid rgba(232, 232, 228, 0.15);
  border-radius: 20px;
}
#portfolio-body .modal-header {
  border-bottom: 1px solid rgba(232, 232, 228, 0.12);
}
#portfolio-body .modal-footer {
  border-top: 1px solid rgba(232, 232, 228, 0.12);
}
#portfolio-body .modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}
#portfolio-body .btn-close-custom {
  background-color: transparent;
  border: 1px solid rgba(232, 232, 228, 0.3);
  color: #e8e8e4;
  border-radius: 30px;
  font-family: 'Oswald', sans-serif;
  padding: 8px 22px;
}
#portfolio-body .modal-price {
  color: hsl(73, 48%, 80%);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
}
#portfolio-body .qa-block {
  margin-top: 96px;
  border-top: 1px solid rgba(232, 232, 228, 0.12);
  padding-top: 64px;
}
#portfolio-body .qa-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(232, 232, 228, 0.1);
}
#portfolio-body .qa-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
#portfolio-body .qa-item p {
  color: #c7cbc0;
  line-height: 1.7;
  margin: 0;
}
#portfolio-body .cta-final {
  margin-top: 88px;
  text-align: center;
  padding: 56px 24px;
  border: 1px solid rgba(232, 232, 228, 0.14);
  border-radius: 20px;
  background-color: #1a1d23;
}
#portfolio-body .cta-final h2 {
  margin-bottom: 16px;
}
#portfolio-body .cta-final p {
  color: #c7cbc0;
  max-width: 560px;
  margin: 0 auto 26px;
}
#portfolio-body .btn-cta {
  background-color: hsl(87, 36%, 42%);
  color: #14161b;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  padding: 13px 36px;
  border-radius: 30px;
  border: none;
  letter-spacing: 0.03em;
  display: inline-block;
  text-decoration: none;
}
#portfolio-body .btn-cta:hover {
  background-color: hsl(81, 41%, 58%);
  color: #14161b;
}
@media (max-width: 767px) {
  #portfolio-body { padding: 64px 0; }
  #portfolio-body .qa-block { margin-top: 64px; padding-top: 44px; }
  #portfolio-body .cta-final { margin-top: 60px; }
}

#about-body {
  background-color: #14161b;
  color: #e8e8e8;
  font-family: 'Lora', serif;
  padding: 96px 0;
}
#about-body h1, #about-body h2, #about-body h3 {
  font-family: 'Oswald', sans-serif;
  color: hsl(81, 41%, 58%);
}
#about-body .lead-intro {
  color: #d0d0d0;
  font-size: 1.15rem;
  max-width: 780px;
}
#about-body .divider-line {
  width: 60px;
  height: 3px;
  background-color: hsl(87, 36%, 42%);
  border: none;
  margin: 16px 0 32px;
}
#about-body .panel {
  background-color: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 56px;
}
#about-body img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
#about-body .stat-box {
  background-color: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  height: 100%;
}
#about-body .stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: hsl(73, 48%, 80%);
  display: block;
}
#about-body .stat-label {
  color: #c8c8c8;
  font-size: 0.9rem;
}
#about-body .values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#about-body .values-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#about-body .values-list li:last-child {
  border-bottom: none;
}
#about-body .values-list strong {
  color: hsl(81, 41%, 58%);
  font-family: 'Oswald', sans-serif;
  display: block;
  margin-bottom: 6px;
}
#about-body .btn-cta {
  background-color: hsl(81, 41%, 58%);
  color: #14161b;
  border: none;
  padding: 14px 36px;
  border-radius: 16px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
}
#about-body .btn-cta:hover {
  background-color: hsl(73, 48%, 80%);
  color: #14161b;
}
#about-body .cta-panel {
  background-color: #1a1d23;
  border: 1px solid hsl(87, 36%, 42%);
  border-radius: 20px;
  padding: 56px;
  text-align: center;
}
@media (max-width: 767px) {
  #about-body .panel, #about-body .cta-panel {
    padding: 24px;
  }
}
