@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #FAF9F7;
  background-color: #1d2733;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* NAVBAR */

.navbar {
  width: min(1200px, 90%);
  margin: 0 auto;
  min-height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  display: block;
  width: 300px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
}

.nav-cta {
  padding: 0.75rem 1.25rem;
  border: 2px solid #111827;
  border-radius: 6px;
  font-weight: 600;
}

/* HERO */

.hero {
  width: min(1200px, 90%);
  margin: 0 auto;

  min-height: calc(85vh - 80px);
  padding: 2rem 0 4rem;

  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  color: #B33A55;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 900px;
}

.hero-text {
  max-width: 650px;
  font-size: 1.15rem;
  margin-top: 1.5rem;
  color: #d1d5db;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
}

.button-primary {
  background-color: #7A263A;
  color: white;
}

.button-secondary {
  border: 2px solid #d1d5db;
}

/* HERO CARD */

.hero-card {
  padding: 2rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background-color: #FAF9F7;
  color: #1D2733;
}

.hero-card p {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-card li {
  padding: 0.5rem 0;
}

/* SERVICES */

.services {
  background-color: #FAF9F7;
  color: #1D2733;
  padding: 7rem 5%;
}

.section-label {
  color: #B33A55;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.services-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.services-header > p:last-child {
  max-width: 720px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
}

.services-grid {
  width: min(1200px, 90%);
  margin: 4rem auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border: 1px solid #d9d6d1;
  border-radius: 12px;
  background-color: #ffffff;

  display: flex;
  flex-direction: column;
}
.service-label {
  color: #B33A55;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.service-card > p:not(.service-label) {
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.service-card a {
  color: #7A263A;
  font-weight: 700;
  margin-top: auto;
}

/* WORK */

.work {
  background-color: #1D2733;
  color: #FAF9F7;
  padding: 7rem 5%;
}

.work-header,
.work-feature {
  width: min(1200px, 90%);
  margin-left: auto;
  margin-right: auto;
}

.work-images img {
  display: block;
  height: auto;
}

.work-header .section-label {
  color: #B33A55;
}

.work-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.work-header > p:last-child {
  max-width: 720px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d1d5db;
}

.work-images {
  position: relative;
  margin-top: 4rem;
  margin-bottom: 6rem;
}

.work-image-main {
  width: 82%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.work-image-secondary {
  position: absolute;
  width: 42%;
  right: 0;
  bottom: -3rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.work-details {
  max-width: 760px;
}

.work-type {
  color: #B33A55;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.work-details h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.work-details > p:not(.work-type):not(.work-credit) {
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.work-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.work-services li {
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.9rem;
}

.work-link {
  color: #B33A55;
  font-weight: 700;
}

.work-credit {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* SECOND WORK PROJECT */

.work-feature + .work-feature {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.work-feature-reverse .work-images {
  margin-left: auto;
}

.work-feature-reverse .work-image-secondary {
  right: auto;
  left: 0;
}

.work-feature-reverse .work-details {
  margin-left: auto;
}
/* PRICING */

.pricing {
  background-color: #FAF9F7;
  color: #1D2733;
  padding: 7rem 5%;
}

.pricing-header {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.pricing-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 850px;
}

.pricing-header > p:last-child {
  max-width: 720px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
}

.pricing-grid {
  width: min(1200px, 90%);
  margin: 4rem auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  padding: 2rem;
  border: 1px solid #d9d6d1;
  border-radius: 12px;
  background-color: #ffffff;

  display: flex;
  flex-direction: column;
}

.pricing-type {
  color: #B33A55;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #7A263A;
  margin-bottom: 1.25rem;
}

.pricing-description {
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.45rem 0;
  color: #374151;
}

.pricing-link {
  color: #7A263A;
  font-weight: 700;
  margin-top: auto;
}

/* PRICING POLISH */

.pricing-card h3 {
  min-height: 3.6rem;
}

.pricing-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(29, 39, 51, 0.08);
}

.pricing-note {
  width: min(1200px, 90%);
  margin: 2rem auto 0;
  color: #6b7280;
  font-size: 0.9rem;
}

/* ABOUT */

.about {
  background-color: #1d2733;
  color: #faf9f7;
  padding: 7rem 5%;
}

.about-grid {
  width: min(1200px, 90%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-image-wrap {
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 460px;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.about-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 1.25rem;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 2rem;
}

.about-points {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.about-point {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #faf9f7;
  background-color: rgba(255, 255, 255, 0.03);
}

.about-button {
  display: inline-block;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    justify-content: flex-start;
  }

  .about-image {
    max-width: 360px;
  }
}

/* CONTACT */

.contact {
  background-color: #FAF9F7;
  color: #1D2733;
  padding: 7rem 5%;
}

.contact-grid {
  width: min(1200px, 90%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-intro h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.contact-intro > p:not(.section-label) {
  max-width: 560px;
  color: #4b5563;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-note {
  margin-top: 2rem;
  padding: 1.25rem;
  border-left: 4px solid #B33A55;
  background-color: #ffffff;
  border-radius: 0 10px 10px 0;
}

.contact-note p {
  color: #4b5563;
  line-height: 1.6;
}

.contact-note p + p {
  margin-top: 0.35rem;
}

.contact-form {
  background-color: #ffffff;
  border: 1px solid #d9d6d1;
  border-radius: 12px;
  padding: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;

  font: inherit;
  color: #1D2733;
  background-color: #FAF9F7;

  border: 1px solid #d1d5db;
  border-radius: 8px;

  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #B33A55;
  box-shadow: 0 0 0 3px rgba(179, 58, 85, 0.12);
}

.contact-button {
  border: none;
  cursor: pointer;
  font: inherit;
}

/* CONTACT RESPONSIVE */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT POLISH */

.contact-form {
  box-shadow: 0 12px 30px rgba(29, 39, 51, 0.06);
}

.contact-button {
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  background-color: #681f31;
}

/* FOOTER */

.footer {
  background-color: #1D2733;
  color: #FAF9F7;
  padding: 4rem 5% 2rem;
}

.footer-inner {
  width: min(1200px, 90%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.9fr;
  gap: 4rem;
}

.footer-logo img {
  display: block;
  width: 240px;
  height: auto;
  margin-bottom: 1.25rem;
}

.footer-brand > p {
  max-width: 480px;
  color: #9ca3af;
  line-height: 1.7;
}

.footer-heading {
  color: #FAF9F7;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a,
.footer-contact a {
  color: #d1d5db;
  margin-bottom: 0.65rem;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #B33A55;
}

.footer-contact > p:not(.footer-heading) {
  color: #9ca3af;
  margin-top: 0.5rem;
}

.footer-bottom {
  width: min(1200px, 90%);
  margin: 3rem auto 0;
  padding-top: 1.5rem;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.85rem;
}

/* FOOTER RESPONSIVE */

@media (max-width: 800px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-logo img {
    width: 220px;
  }
}

/* ========================================
   RESPONSIVE - NAVBAR + HERO
======================================== */

/* TABLET */

@media (max-width: 900px) {

  .navbar {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
  }

  .logo img {
    width: 250px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 5rem 0 6rem;
    gap: 2.5rem;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-card {
    max-width: 600px;
  }
}


/* MOBILE */

@media (max-width: 600px) {

  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 0 1.5rem;
  }

  .logo img {
    width: 230px;
  }

  .nav-links {
    order: initial;
    width: 100%;

    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }

  .nav-cta {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .hero {
    width: 90%;
    padding: 3.5rem 0 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.4rem);
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
    text-align: center;
  }

  .hero-card {
    width: 100%;
  }
}

/* ========================================
   RESPONSIVE - SERVICES + PRICING
======================================== */

@media (max-width: 900px) {

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    width: min(700px, 100%);
  }

  .service-card,
  .pricing-card {
    width: 100%;
  }

  .pricing-card h3 {
    min-height: auto;
  }
}


@media (max-width: 600px) {

  .services,
  .pricing {
    padding: 4.5rem 5%;
  }

  .services-header,
  .pricing-header {
    width: 100%;
  }

  .services-grid,
  .pricing-grid {
    width: 100%;
    margin-top: 2.5rem;
    gap: 1rem;
  }

  .service-card,
  .pricing-card {
    padding: 1.5rem;
  }

.service-label {
  margin-bottom: 1.25rem;
}

  .pricing-note {
    width: 100%;
  }
}

/* ========================================
   RESPONSIVE - WORK / PORTFOLIO
======================================== */

@media (max-width: 600px) {

  .work {
    padding: 4.5rem 5%;
  }

  .work-header,
  .work-feature {
    width: 100%;
  }

  .work-images {
    margin-top: 2.5rem;
    margin-bottom: 4rem;
  }

  .work-image-main {
    width: 88%;
  }

  .work-image-secondary {
    width: 46%;
    bottom: -1.75rem;
  }

  .work-feature + .work-feature {
    margin-top: 3.5rem;
    padding-top: 3.5rem;
  }

  .work-details {
    max-width: none;
  }

  .work-details h3 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .work-services {
    gap: 0.5rem;
  }

  .work-services li {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
  }
}

/* ========================================
   RESPONSIVE - ABOUT + CONTACT + FOOTER
======================================== */

@media (max-width: 600px) {

  /* ABOUT */

  .about {
    padding: 4.5rem 5%;
  }

  .about-grid {
    width: 100%;
    gap: 3rem;
  }

  .about-image-wrap {
    justify-content: center;
  }

  .about-image {
    width: 100%;
    max-width: 340px;
  }

  .about-content h2 {
    font-size: 2.4rem;
  }

  .about-point {
    padding: 0.85rem;
  }

  .about-button {
    width: 100%;
    text-align: center;
  }


  /* CONTACT */

  .contact {
    padding: 4.5rem 5%;
  }

  .contact-grid {
    width: 100%;
    gap: 2.5rem;
  }

  .contact-intro h2 {
    font-size: 2.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-button {
    width: 100%;
  }


  /* FOOTER */

  .footer {
    padding: 3.5rem 5% 2rem;
  }

  .footer-inner,
  .footer-bottom {
    width: 100%;
  }

  .footer-logo img {
    width: 210px;
  }

  .footer-bottom {
    margin-top: 2.5rem;
  }
}

/* ========================================
   INTERACTION + ACCESSIBILITY POLISH
======================================== */

.nav-links a,
.nav-cta,
.button,
.work-link,
.pricing-link,
.footer-links a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
}

.nav-links a {
  min-height: 44px;
}

.nav-cta,
.button,
.contact-button {
  min-height: 44px;
}

.form-group input,
.form-group select {
  min-height: 48px;
}

/* Keyboard navigation */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #B33A55;
  outline-offset: 3px;
}

.hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
/* ========================================
   THANK YOU PAGE
======================================== */

.thank-you-page {
  margin: 0;
  min-height: 100vh;
  background-color: #1d2733;
  color: #faf9f7;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 3rem 5%;
}

.thank-you-card {
  width: min(680px, 100%);
  text-align: center;
}

.thank-you-logo {
  display: inline-block;
  margin-bottom: 3.5rem;
}

.thank-you-logo img {
  display: block;
  width: 230px;
  height: auto;
  margin: 0 auto;
}

.thank-you-card .section-label {
  color: #b33a55;
  margin-bottom: 1rem;
}

.thank-you-card h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.thank-you-intro {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d1d5db;
}

.thank-you-note {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  color: #9ca3af;
}

.thank-you-note a {
  color: #faf9f7;
  font-weight: 700;
}

@media (max-width: 600px) {
  .thank-you {
    padding: 2rem 6%;
  }

  .thank-you-logo {
    margin-bottom: 2.5rem;
  }

  .thank-you-logo img {
    width: 190px;
  }

  .thank-you-card h1 {
    font-size: 2.6rem;
  }

  .thank-you-card .button {
    width: 100%;
    justify-content: center;
  }
}