:root {
  --black: #090909;
  --dark: #11100e;
  --cream: #e6d4b7;
  --brown: #8d7354;
  --white: #f6f1e8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9, 9, 9, 0.92);
  border-bottom: 1px solid rgba(230, 212, 183, 0.2);
  backdrop-filter: blur(10px);
}

.brand {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.nav-links a:hover {
  color: var(--cream);
}

.hero {
  min-height: 100vh;
  padding: 130px 6% 70px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 40px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.55)),
    radial-gradient(circle at 80% 40%, #302719 0%, #090909 55%);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
}

.hero h1 {
  max-width: 700px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7vw, 105px);
  line-height: 0.92;
  letter-spacing: -3px;
}

.hero-text {
  max-width: 520px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 16px 24px;
  border: 1px solid var(--cream);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--cream);
  color: var(--black);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.hero-art {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;

  background:
    radial-gradient(
      circle at center,
      rgba(141, 115, 84, 0.16) 0%,
      rgba(9, 9, 9, 0) 65%
    ),
    url("images/hero-bird.png") center center / contain no-repeat;
  border: none;
  opacity: 0;
  transform: translateX(70px) translateY(0) scale(1);
}
.hero-placeholder {
  padding: 24px;
  text-align: center;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(230, 212, 183, 0.4);
}

.section {
  padding: 100px 6%;
}

.section-dark {
  background: var(--dark);
}

.section-light {
  background: #e9dfcf;
  color: #141210;
}

.section-title {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 45px;
  color: #bdb6aa;
  font-size: 18px;
}

.section-light .section-intro {
  color: #514a40;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(230, 212, 183, 0.2);
  background: linear-gradient(145deg, #191714, #0d0c0b);
}

.service-number {
  margin-bottom: auto;
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
}

.service-card h3 {font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 3vw, 54px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 40px 0 20px;
    color: var(--cream);
}

.service-card p {
  color: #bdb6aa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  min-height: 360px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  background: #c8bba6;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.gallery-item span {
  padding: 10px 14px;
  background: rgba(10, 10, 10, 0.88);
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-step {
  padding-top: 20px;
  border-top: 2px solid var(--brown);
}

.process-step strong {
  display: block;
  margin-bottom: 12px;
  color: var(--cream);
  font-size: 36px;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  color: #bdb6aa;
}

.contact {
  text-align: center;
  background:
    radial-gradient(circle at center, #292116 0%, #090909 60%);
}

.contact p {
  max-width: 650px;
  margin: 20px auto 30px;
  color: #c9c1b5;
  font-size: 18px;
}

.contact-details {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  color: var(--cream);
  font-weight: 700;
}

footer {
  padding: 28px 6%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(230, 212, 183, 0.2);
  color: #9c958a;
  font-size: 13px;
}

@media (max-width: 950px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 480px;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .navbar {
    padding: 16px 5%;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 115px 5% 55px;
  }

  .hero h1{
    max-width:320px;
    font-size:64px;
    line-height:0.88;
    letter-spacing:-2px;
    word-break:normal;
}
  }

  .hero-art {
    min-height: 390px;
    transform: translateX(35px) translateY(25px) scale(0.96);
  }

  .section {
    padding: 75px 5%;
  }

  .services-grid,
  .gallery-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-height: 86px;
  padding: 14px 5%;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;

  background: rgba(7, 7, 7, 0.94);
  border-bottom: 1px solid rgba(230, 212, 183, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  color: var(--cream);
}

.brand-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2px;
}

.brand-location {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 4px;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-phone {
 justify-self:end;
  margin: left 1px;
  padding: 12px 16px;
  border: 1px solid rgba(230, 212, 183, 0.55);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  transition: 0.25s ease;
}

.nav-phone:hover {
  background: var(--cream);
  color: var(--black);
}
@media (max-width: 950px) {
  .navbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 650px) {
  .navbar {
    min-height: 74px;
    padding: 12px 5%;
  }

  .brand-main {
    font-size: 18px;
  }

  .brand-location {
    font-size: 8px;
    letter-spacing: 3px;
  }

  .nav-phone {
    padding: 10px 11px;
    font-size: 10px;
  }
}
.project-showcase {
  padding: 120px 5%;
  background: #e9dfcf;
  color: #111;
}

.project-heading {
  max-width: 850px;
  margin-bottom: 55px;
}

.project-heading h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
}

.project-heading p:last-child {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.7;
  color: #4f473d;
}

.project-hero {
  width: 100%;
  height: min(78vh, 900px);
  overflow: hidden;
}

.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-photo {
  height: 520px;
  overflow: hidden;
}

.project-photo-wide {
  grid-column: span 2;
  height: 700px;
}

.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-photo:hover img {
  transform: scale(1.035);
}

.project-details {
  margin-top: 55px;
  padding-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.project-details span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.project-details strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.4;
}

@media (max-width: 850px) {
  .project-showcase {
    padding: 85px 5%;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-photo,
  .project-photo-wide {
    grid-column: auto;
    height: 480px;
  }

  .project-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .project-hero {
    height: 500px;
  }

  .project-photo,
  .project-photo-wide {
    height: 400px;
  }
}
.instagram-portfolio {
  padding: 120px 20px;
  background: #0d0c0b;
  text-align: center;
}

.instagram-content {
  max-width: 700px;
  margin: 0 auto;
}

.instagram-content h2 {
  font-size: 72px;
  margin: 10px 0 40px;
}

.instagram-handle {
  margin-top: 25px;
  letter-spacing: 4px;
  color: #b89d73;
  font-weight: 600;
}
.quote-section {
  padding: 120px 6%;
  background: #e8ddcb;
  color: #111;
}

.quote-heading {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.quote-heading .eyebrow {
  color: #745f43;
}

.quote-heading h2 {
  margin: 15px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
}

.quote-form {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(17, 17, 17, 0.35);
  border-radius: 0;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: 14px;
  letter-spacing: 1px;
  outline: none;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: #111;
}

.quote-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(17, 17, 17, 0.65);
}

.quote-submit {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 230px;
  border: 1px solid #111;
  background: #111;
  color: #f3e5cc;
  cursor: pointer;
}

.quote-submit:hover {
  background: transparent;
  color: #111;
}

@media (max-width: 650px) {
  .quote-section {
    padding: 85px 5%;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form textarea,
  .quote-submit {
    grid-column: auto;
  }

  .quote-submit {
    width: 100%;
  }
}
.service-area {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  background: #090909;
  color: #f3eadc;
  border-top: 1px solid rgba(230, 212, 183, 0.15);
  border-bottom: 1px solid rgba(230, 212, 183, 0.15);
}

.service-area-copy {
  padding: 110px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-area-copy h2 {
  margin: 15px 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.7vw, 88px);
  line-height: 0.95;
}

.service-area-copy h2 span {
  display: block;
  margin-top: 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 4px;
}

.service-area-text {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.service-map {
  pmin-height: 720px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background: #111;
}

.service-map-image {
  width: 100%;
  height: 100%;
  min-height: 720px;
  display: block;
  object-fit: cover;
  object-position: center;
  
}

.map-title {
  position: absolute;
  top: 52%;
  left: 58%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: 4px;
}

.map-city {
  position: absolute;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
}

.map-city::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: #c6a56c;
  transform: rotate(-45deg);
}

.santa-clarita {
  top: 12%;
  left: 28%;
}

.sherman-oaks {
  top: 31%;
  left: 36%;
}

.studio-city {
  top: 38%;
  left: 36%;
}

.beverly-hills {
  top: 52%;
  left: 29%;
}

.santa-monica {
  top: 63%;
  left: 23%;
}

.newport-beach {
  top: 84%;
  left: 63%;
}

.reviews-section {
  padding: 110px 6%;
  background: #070707;
  color: #f3eadc;
}

.reviews-heading {
  max-width: 900px;
  margin: 0 auto 55px;
  text-align: center;
}

.reviews-heading h2 {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 80px);
  line-height: 0.95;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  min-height: 300px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(230, 212, 183, 0.24);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0)
  );
}

.review-stars {
  margin-bottom: 24px;
  color: #c6a56c;
  font-size: 22px;
  letter-spacing: 3px;
}

.review-card > p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.review-client {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(230, 212, 183, 0.18);
}

.review-client strong,
.review-client span {
  display: block;
}

.review-client strong {
  letter-spacing: 2px;
}

.review-client span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  letter-spacing: 1.4px;
}

@media (max-width: 900px) {
  .service-area {
    grid-template-columns: 1fr;
  }

  .service-area-copy {
    padding: 85px 6%;
  }

  .service-map {
    min-height: 620px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .service-map {
    min-height: 520px;
  }

  .map-city {
    font-size: 11px;
  }

  .map-title {
    font-size: 25px;
  }
}
/* =========================
   PREMIUM FOOTER
========================= */

.site-footer {
  background: #070707;
  color: #f3eadc;
  border-top: 1px solid rgba(230, 212, 183, 0.18);
}

.footer-main {
  padding: 90px 6%;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 60px;
}

.footer-brand h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.95;
}

.footer-tagline {
  margin-bottom: 20px;
  color: #c6a56c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.footer-brand > p:last-child {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.footer-title {
  margin-bottom: 22px;
  color: #c6a56c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.3px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #c6a56c;
}

.footer-bottom {
  padding: 24px 6%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(230, 212, 183, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  letter-spacing: 1.4px;
}

@media (max-width: 850px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 75px 6%;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(230, 212, 183, 0.45);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: #e6d4b7;
  transition: 0.25s ease;
}

.mobile-menu {
   position:fixed;
    top:81px;
    left:0;
    width:100%;
    height:calc(100vh - 81px);

    background:#0b0b0b;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    padding:30px;

    opacity:0;
    visibility:hidden;

    transform:translateY(-20px);

    transition:.35s;

    z-index:999;
  }

.mobile-menu a {
  padding: 16px 0;
  border-bottom: 1px solid rgba(230, 212, 183, 0.12);
  color: #e6d4b7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.mobile-menu.is-open {
  display: flex;
}

@media (max-width: 950px) {
  .navbar {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 550px) {
  .nav-phone {
    display: none;
  }

  .navbar {
    grid-template-columns: 1fr auto;
  }
}
@media (max-width: 600px) {
  .footer-main {
    padding: 70px 10%;
  }

  .footer-brand h2 {
    font-size: 46px;
  }

  .footer-links,
  .footer-contact {
    width: 100%;
  }

  .footer-bottom {
    padding: 25px 10%;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
/* MOBILE MENU ANIMATION */

.mobile-menu {
  position: fixed;
  top: 82px;
  right: 0;
  left: 0;
  z-index: 999;

  display: flex;
  flex-direction: column;
  padding: 20px 6% 30px;

  background: rgba(7, 7, 7, 0.98);
  border-bottom: 1px solid rgba(230, 212, 183, 0.2);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #e6d4b7;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
}

.menu-toggle span {
  transform-origin: center;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 951px) {
  .mobile-menu {
    display: none;
  }
}
/* HERO ENTRANCE ANIMATIONS */

.hero-content .eyebrow,
.hero-content h1,
.hero-text,
.hero-buttons {
  opacity: 0;
  transform: translateY(24px);
  animation: heroTextReveal 0.8s ease forwards;
}

.hero-content .eyebrow {
  animation-delay: 0.15s;
}

.hero-content h1 {
  animation-delay: 0.3s;
}

.hero-text {
  animation-delay: 0.48s;
}

.hero-buttons {
  animation-delay: 0.65s;
}

.hero-art {
  opacity: 0;
  transform: translateX(35px) scale(0.97);
  animation: heroArtReveal 1.1s ease 0.35s forwards;
}

@keyframes heroTextReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroArtReveal {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-text,
  .hero-buttons,
  .hero-art {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-45px);
}

.reveal-right {
  transform: translateX(45px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ===== MOBILE HERO FIX ===== */

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 150px 24px 70px;
    display: block;
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
  width: 100%;
  max-width: 100%;
  font-size: 48px;
  line-height: 0.9;
  letter-spacing: -1px;
  overflow-wrap: normal;
  word-break: normal;
  }

  .hero-text {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .hero-art {
    width: 100%;
    min-height: auto;
    margin: 60px 0 0;
    transform: none;
  }

  .hero-art img {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
  }
}
/* ===== MOBILE MAP FIX ===== */

@media (max-width: 750px) {
  .service-area {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-area-copy {
    padding: 75px 28px 55px;
  }

  .service-area-copy h2 {
    font-size: clamp(48px, 14vw, 68px);
    line-height: 0.95;
  }

  .service-area-copy h2 span {
    display: block;
    margin-top: 18px;
    font-size: 23px;
    line-height: 1.25;
  }

  .service-map {
    width: 100%;
    min-height: auto;
    height: auto;
    display: block;
    overflow: hidden;
    background: #080808;
  }

  .service-map-image {
    width: 100%;
    height: auto;
    min-height: 0;
    display: block;
    object-fit: contain;
    object-position: center top;
  }
}@media (max-width: 600px) {
  .hero-art {
    display: flex;
    width: 100%;
    min-height: 360px;
    margin: 20px 0 0;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: none;
  }

  .hero-art img {
    display: block;
    width: 88%;
    max-width: 430px;
    height: auto;
    margin: 0 auto;
    opacity: 1;
    transform: none;
  }
}@media (max-width: 600px) {
  .hero-art {
    background:
      radial-gradient(
        circle at center,
        rgba(141, 115, 84, 0.16) 0%,
        rgba(9, 9, 9, 0) 65%
      ),
      url("images/hero-bird.png") center center / contain no-repeat;
  }
}/* ==========================
   PROCESS V2
========================== */

.process-list{
    margin-top:70px;
}

.process-row{

    display:grid;
    grid-template-columns:180px 1px 1fr;

    align-items:center;

    gap:60px;

    padding:65px 0;

    border-top:1px solid rgba(214,180,104,.35);

}

.process-row:last-child{

    border-bottom:1px solid rgba(214,180,104,.35);

}

.process-number{

    font-family:Georgia,serif;

    font-size:110px;

    font-weight:700;

    color:#D6B468;

    text-align:center;

    line-height:1;

}

.process-line{

    width:1px;

    height:95px;

    background:#D6B468;

}

.process-content h3{

    font-size:52px;

    margin-bottom:18px;

    font-family:Georgia,serif;

}

.process-content p{

    max-width:650px;

    font-size:24px;

    line-height:1.7;

    color:rgba(255,255,255,.75);

}
@media (max-width:768px){

.process-row{

grid-template-columns:1fr;

gap:20px;

padding:40px 0;

text-align:center;

}

.process-number{

font-size:70px;

}

.process-line{

display:none;

}

.process-content h3{

font-size:34px;

}

.process-content p{

font-size:18px;

}

}
/* ===== NEW PROCESS SECTION ===== */

.process-heading{
    max-width:900px;
    margin:0 auto 80px;
    text-align:center;
}

.process-heading .eyebrow{
    color:#d6b468;
    letter-spacing:4px;
    margin-bottom:18px;
}

.process-heading h2{
    font-family:Georgia, serif;
    font-size:clamp(52px,6vw,88px);
    line-height:.95;
    margin:15px 0 25px;
}

.process-heading p{
    max-width:700px;
    margin:0 auto;
    color:rgba(255,255,255,.70);
    font-size:20px;
    line-height:1.8;
}

.process-list{
    margin-top:60px;
}

.process-row{
    display:grid;
    grid-template-columns:180px 1px 1fr;
    gap:60px;
    align-items:center;
    padding:55px 0;
    border-top:1px solid rgba(214,180,104,.35);
}

.process-row:last-child{
    border-bottom:1px solid rgba(214,180,104,.35);
}

.process-number{
    font-family:Georgia, serif;
    font-size:90px;
    font-weight:bold;
    color:#d6b468;
    text-align:center;
}

.process-line{
    width:1px;
    height:90px;
    background:#d6b468;
}

.process-content h3{
    font-size:46px;
    margin-bottom:18px;
    font-family:Georgia, serif;
}

.process-content p{
    font-size:22px;
    color:rgba(255,255,255,.72);
    line-height:1.7;
    max-width:650px;
}/* ===== PROCESS MOBILE FIX ===== */
@media (max-width: 768px) {

  .process {
    padding: 75px 22px;
    overflow: hidden;
  }

  .process-heading {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 50px;
    text-align: center;
  }

  .process-heading h2 {
    font-size: clamp(38px, 11vw, 56px);
    line-height: 0.95;
    margin: 14px 0 20px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .process-heading p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.6;
  }

  .process-list {
    margin-top: 35px;
  }

  .process-row {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 20px;
    align-items: start;
    padding: 35px 0;
  }

  .process-number {
    font-size: 54px;
    line-height: 1;
    text-align: left;
  }

  .process-line {
    display: none;
  }

  .process-content {
    min-width: 0;
  }

  .process-content h3 {
    font-size: 31px;
    line-height: 1.05;
    margin: 3px 0 12px;
  }

  .process-content p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }
}