:root {
  --cream: #f7efe7;
  --white: #ffffff;
  --black: #111111;
  --text: #252525;
  --muted: #555555;
  --gold: #c79a3b;
  --border: #eadfd4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */

.header {
  height: 86px;
  padding: 0 52px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 300px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 34px;
  font-size: 17px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--gold);
}

.quote-btn {
  background: var(--black);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 800;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
}

/* HERO */

.hero {
  min-height: calc(100vh - 86px);
  padding: 70px 52px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.4px;
  margin-bottom: 28px;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1.03;
  letter-spacing: -2px;
  margin-bottom: 34px;
}

.intro {
  max-width: 700px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.7;
  margin-bottom: 42px;
}

.hero-actions {
  display: flex;
  gap: 22px;
}

.btn {
  display: inline-block;
  padding: 18px 32px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 900;
}

.btn.primary {
  background: var(--gold);
  color: var(--black);
}

.btn.secondary {
  background: var(--white);
  color: var(--text);
}

/* HERO VISUAL */

.hero-visual {
  min-height: 560px;
  position: relative;
}

.image-card {
  position: absolute;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 900;
  overflow: hidden;
}

.card-main {
  width: 72%;
  height: 320px;
  right: 80px;
  top: 40px;
}

.card-top {
  width: 55%;
  height: 220px;
  right: 0;
  top: 270px;
}

.card-bottom {
  width: 68%;
  height: 250px;
  left: 0;
  bottom: 0;
}

/* MOBILE */

@media (max-width: 1000px) {
  .header {
    padding: 0 24px;
  }

  .nav,
  .quote-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav.active {
    display: flex;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    border-top: 1px solid var(--border);
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 50px 24px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .logo img {
    width: 180px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 42px;
  }

  .intro {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .hero-visual {
    min-height: 350px;
  }
}

/* IMAGE FIX */

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #ffffff;
}
/* AUDIENCE STRIP */

.audience-strip {
  background: var(--white);
  padding: 34px 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.audience-strip p {
  color: var(--muted);
  font-weight: 800;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.audience-list span {
  font-weight: 900;
  color: var(--text);
}

@media (max-width: 800px) {
  .audience-strip {
    padding: 28px 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .audience-list {
    gap: 16px;
  }
}
/* SERVICES PREVIEW */

.services-preview {
  padding: 80px 52px;
  background: var(--cream);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: 0.25s ease;
  min-height: 230px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.service-card span {
  color: var(--gold);
  font-weight: 900;
  font-size: 14px;
}

.service-card h3 {
  font-size: 24px;
  margin: 22px 0 14px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .services-preview {
    padding: 60px 24px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }
}
/* HOW IT WORKS */

.how-it-works {
  background: var(--white);
  padding: 90px 52px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.process-step {
  padding-top: 30px;
  border-top: 4px solid var(--gold);
}

.process-step strong {
  font-size: 72px;
  color: #e5e0db;
  display: block;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.process-step p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .how-it-works {
    padding: 70px 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: 0.25s ease;
  min-height: 230px;

  display: flex;
  flex-direction: column;
}
.service-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  margin: 0 auto 26px;
  opacity: 0.9;
}

/* FINAL CTA */

.final-cta {
  padding: 60px 52px 90px;
  background: var(--cream);
}

.final-cta-content {
  background: var(--gold);
  border-radius: 18px;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1.2fr 420px;
  align-items: center;
}

.cta-text {
  padding: 70px;
}

.cta-text h2 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.05;
  margin-bottom: 24px;
  color: #2a1d08;
}

.cta-text p:not(.eyebrow) {
  font-size: 20px;
  line-height: 1.7;
  color: #4d3720;
  margin-bottom: 36px;
  max-width: 640px;
}

.cta-image {
  height: 100%;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.final-cta .btn.primary {
  background: var(--black);
  color: var(--white);
}

@media (max-width: 1000px) {
  .final-cta {
    padding: 70px 24px;
  }

  .final-cta-content {
    grid-template-columns: 1fr;
  }

  .cta-text {
    padding: 50px 32px;
  }

  .cta-image {
    height: 320px;
  }
}

/* HOW IT WORKS */

.how-section {
  padding: 120px 52px;
}

.section-heading {
  margin-bottom: 60px;
}

.section-label {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.05;
  max-width: 760px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.how-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 42px;
  position: relative;
}

.how-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.how-icon {
  font-size: 42px;
  margin-bottom: 26px;
}

.how-card h3 {
  font-size: 32px;
  margin-bottom: 18px;
}

.how-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
/* WHY CHOOSE US */

.why-section {
  padding: 100px 52px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.why-content h2 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.why-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 34px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px;
}

.why-item h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.why-item p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .why-section {
    grid-template-columns: 1fr;
    padding: 70px 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}
/* FOOTER */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 70px 52px 24px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
}

.footer-brand img {
  width: 220px;
 /*  background: var(--cream); */
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 24px;
}

.footer-brand p {
  color: #d8d8d8;
  line-height: 1.7;
  max-width: 420px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer h4 {
  color: var(--gold);
  margin-bottom: 18px;
}

.footer a,
.footer-links p {
  display: block;
  color: #d8d8d8;
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 22px;
  color: #bdbdbd;
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer {
    grid-template-columns: 1fr;
    padding: 60px 24px 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
/* QUOTE PAGE */

.quote-hero {
  padding: 90px 52px 50px;
  background: var(--cream);
}

.quote-hero h1 {
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.quote-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.7;
  max-width: 820px;
}

.quote-section {
  padding: 30px 52px 100px;
  background: var(--cream);
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 48px;
  max-width: 1050px;
}

.form-block {
  margin-bottom: 46px;
}

.form-block h2 {
  font-size: 30px;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-field.full {
  margin-top: 22px;
}

.form-field label {
  font-weight: 900;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  font-family: inherit;
  background: #fbf8f4;
}

.form-field textarea {
  resize: vertical;
}

.form-field small {
  color: var(--muted);
  line-height: 1.5;
}

.form-submit {
  border: none;
  cursor: pointer;
}

@media (max-width: 800px) {
  .quote-hero,
  .quote-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .quote-form {
    padding: 30px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
/* PAGE HERO */

.page-hero {
  padding: 90px 52px 40px;
  background: var(--cream);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 26px;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.7;
}

/* SERVICE DETAILS PAGE */

.service-detail-list {
  padding: 40px 52px 100px;
  background: var(--cream);
  display: grid;
  gap: 30px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 44px;
  align-items: center;
}

.service-detail-card h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.service-detail-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-detail-card img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  justify-self: wnd;
  opacity: 0.75;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .page-hero,
  .service-detail-list {
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

/* GALLERY PAGE */

.gallery-filters {
  padding: 0 52px 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.gallery-filters button {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.gallery-filters button.active {
  background: var(--black);
  color: var(--white);
}

.gallery-grid {
  padding: 0 52px 100px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.large {
  grid-column: span 2;
  height: 520px;
}

.gallery-item.wide {
  grid-column: span 2;
  height: 340px;
}

.gallery-item:not(.large):not(.wide) {
  height: 340px;
}

.gallery-cta {
  padding: 100px 52px;
  background: var(--white);
  text-align: center;
}

.gallery-cta h2 {
  font-size: clamp(42px, 4vw, 68px);
  margin-bottom: 24px;
}

.gallery-cta p {
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.7;
}

@media (max-width: 900px) {

  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 24px 70px;
  }

  .gallery-filters {
    padding: 0 24px 30px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.wide {
    height: 320px;
  }

  .gallery-cta {
    padding: 70px 24px;
  }

}

/* FAQ PAGE */

.faq-section {
  padding: 30px 52px 100px;
  background: var(--cream);
  display: grid;
  gap: 18px;
  max-width: 1100px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
}

.faq-item h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .faq-section {
    padding: 30px 24px 70px;
  }
}

/* CONTACT PAGE */

.contact-section {
  padding: 30px 52px 100px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

.contact-info,
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
}

.contact-info h2,
.contact-form h2 {
  font-size: 34px;
  margin-bottom: 26px;
}

.contact-card {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-card:last-child {
  border-bottom: none;
}

.contact-card h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 22px;
}

@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 30px 24px 70px;
  }

  .contact-info,
  .contact-form {
    padding: 30px 22px;
  }
}

/* INDIVIDUAL SERVICE PAGES */

.service-page-hero {
  padding: 90px 52px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 60px;
  align-items: center;
}

.service-page-hero h1 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 26px;
}

.service-page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 780px;
}

.service-page-hero img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--border);
}

.service-info-section {
  padding: 0 52px 100px;
  background: var(--cream);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
}

.service-info-card h2 {
  font-size: 34px;
  margin-bottom: 24px;
}

.service-info-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.service-info-card li {
  color: var(--muted);
  font-size: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .service-page-hero {
    grid-template-columns: 1fr;
    padding: 70px 24px;
  }

  .service-page-hero img {
    height: 340px;
  }

  .service-info-section {
    grid-template-columns: 1fr;
    padding: 0 24px 70px;
  }
}