:root {
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --sand: #e8ddd0;
  --terracotta: #c4724a;
  --charcoal: #2c2925;
  --brown: #7a6555;
  --gold: #b89a6a;
  --light-brown: #a08060;
  --dark: #1a1714;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--terracotta);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.6;
}
.cursor-ring.hover {
  transform: translate(-50%, -50%) scale(2.2);
  opacity: 0.3;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  mix-blend-mode: normal;
  transition: all 0.5s ease;
}
nav.scrolled {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(10px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--sand);
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 8px;
  color: var(--charcoal);
  text-transform: uppercase;
  font-weight: 300;
}
.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}
.nav-links a {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  font-weight: 400;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--terracotta);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}
.nav-cta:hover {
  background: var(--charcoal);
  color: var(--cream);
}

/* Hero */
.hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 100px 80px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 7vw, 110px);
  line-height: 0.9;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-sub {
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 2;
  color: var(--brown);
  max-width: 340px;
  margin-bottom: 56px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  padding: 18px 44px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}
.btn-primary:hover {
  background: var(--terracotta);
}
.btn-ghost {
  color: var(--charcoal);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  transition: color 0.3s;
}
.btn-ghost::after {
  content: "→";
  transition: transform 0.3s;
}
.btn-ghost:hover {
  color: var(--terracotta);
}
.btn-ghost:hover::after {
  transform: translateX(6px);
}

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 12s ease forwards;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--warm-white) 0%, transparent 30%);
}
.hero-stat {
  position: absolute;
  bottom: 80px;
  left: -60px;
  background: var(--cream);
  padding: 28px 36px;
  z-index: 5;
  border-left: 3px solid var(--terracotta);
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.hero-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal);
}
.hero-stat-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown);
  margin-top: 6px;
}
.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--charcoal), transparent);
  animation: scrollPulse 2s infinite;
}
.scroll-text {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Marquee */
.marquee-section {
  background: var(--charcoal);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 2px;
}
.marquee-dot {
  color: var(--terracotta);
  margin: 0 20px;
}

/* About Section */
.about {
  padding: 160px 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 120px;
  align-items: center;
}
.about-left {
  position: relative;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}
.about-image-accent {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 55%;
  height: 280px;
  object-fit: cover;
  border: 8px solid var(--warm-white);
}
.about-experience {
  position: absolute;
  top: 60px;
  left: -40px;
  background: var(--terracotta);
  color: var(--cream);
  padding: 32px 28px;
  text-align: center;
}
.about-experience-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.about-experience-text {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
  font-weight: 300;
}

.about-right {
  padding-top: 60px;
}
.section-tag {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  display: block;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
}
.about-text {
  font-size: 13px;
  line-height: 2;
  color: var(--brown);
  margin-bottom: 20px;
  font-weight: 300;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.about-feature {
  border-top: 1px solid var(--sand);
  padding-top: 20px;
}
.feature-title {
  font-family: "Tenor Sans", sans-serif;
  font-size: 13px;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.feature-text {
  font-size: 11px;
  color: var(--brown);
  line-height: 1.8;
  font-weight: 300;
}

/* Services */
.services {
  background: var(--charcoal);
  padding: 160px 80px;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}
.services-header .section-title {
  color: var(--cream);
}
.services-header .section-tag {
  color: var(--gold);
}
.services-header-right {
  max-width: 280px;
}
.services-header-text {
  font-size: 12px;
  line-height: 2;
  color: rgba(245, 240, 232, 0.6);
  font-weight: 300;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: #252220;
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: background 0.4s ease;
 
}
.service-card:hover {
  background: var(--terracotta);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.service-card:hover::before {
  height: 100%;
}
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
  transition: color 0.4s;
}
.service-card:hover .service-num {
  color: rgba(255, 255, 255, 0.12);
}
.service-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition:
    border-color 0.4s,
    background 0.4s;
}
.service-card:hover .service-icon {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}
.service-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
}
.service-name {
  font-family: "Tenor Sans", sans-serif;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.service-desc {
  font-size: 11px;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.55);
  font-weight: 300;
  transition: color 0.4s;
}
.service-card:hover .service-desc {
  color: rgba(255, 255, 255, 0.8);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s;
}
.service-card:hover .service-link {
  color: var(--cream);
}
.service-link:hover {
  gap: 16px;
}

/* Portfolio */
.portfolio {
  padding: 160px 80px;
  background: var(--cream);
}
.portfolio-header {
  text-align: center;
  margin-bottom: 80px;
}
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 36px;
}
.filter-btn {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: none;
  color: var(--brown);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  font-family: "Montserrat", sans-serif;
}
.filter-btn.active,
.filter-btn:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 380px);
  gap: 16px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.portfolio-item:nth-child(1) {
  grid-column: 1/6;
  grid-row: 1;
}
.portfolio-item:nth-child(2) {
  grid-column: 6/9;
  grid-row: 1;
}
.portfolio-item:nth-child(3) {
  grid-column: 9/13;
  grid-row: 1/3;
}
.portfolio-item:nth-child(4) {
  grid-column: 1/5;
  grid-row: 2;
}
.portfolio-item:nth-child(5) {
  grid-column: 5/9;
  grid-row: 2;
}
.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.portfolio-item:hover .portfolio-img {
  transform: scale(1.07);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 23, 20, 0.85) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-tag {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.portfolio-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: var(--cream);
  font-weight: 300;
}
.portfolio-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s;
}
.portfolio-item:hover .portfolio-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* Process */
.process {
  padding: 160px 80px;
  background: var(--warm-white);
}
.process-header {
  margin-bottom: 80px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--sand),
    var(--terracotta),
    var(--sand)
  );
  z-index: 0;
}
.process-step {
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.step-num-wrap {
  width: 64px;
  height: 64px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  transition: all 0.3s;
}
.process-step:hover .step-num-wrap {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--charcoal);
  font-weight: 300;
  transition: color 0.3s;
}
.process-step:hover .step-num {
  color: var(--cream);
}
.step-title {
  font-family: "Tenor Sans", sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.step-desc {
  font-size: 11px;
  line-height: 1.9;
  color: var(--brown);
  font-weight: 300;
}

/* Testimonials */
.testimonials {
  padding: 160px 80px;
  background: var(--sand);
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}
.testimonial-track {
  display: flex;
  gap: 32px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-slide {
  min-width: calc(50% - 16px);
  background: var(--warm-white);
  padding: 64px;
  flex-shrink: 0;
}
.testimonial-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  color: var(--terracotta);
  line-height: 0.5;
  margin-bottom: 32px;
  display: block;
}
.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.7;
  color: var(--charcoal);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 40px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--sand);
  padding-top: 32px;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  font-family: "Tenor Sans", sans-serif;
  font-size: 13px;
  color: var(--charcoal);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.author-role {
  font-size: 10px;
  color: var(--brown);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
}
.t-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--brown);
  background: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 18px;
  transition: all 0.3s;
}
.t-btn:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

/* Stats */
.stats {
  background: var(--charcoal);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  display: block;
}
.stat-plus {
  color: var(--terracotta);
}
.stat-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 12px;
  display: block;
}

/* Contact */
.contact {
  padding: 160px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  background: var(--cream);
}

.contact-info {
  margin-top: 48px;
}
.contact-info-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--sand);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
}
.contact-info-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 6px;
}
.contact-info-value {
  font-family: "Tenor Sans", sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  letter-spacing: 0.5px;

}

.contact-info-value a{
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  padding: 16px 20px;
  font-size: 12px;
  color: var(--charcoal);
  font-family: "Montserrat", sans-serif;
  outline: none;
  transition: border-color 0.3s;
  font-weight: 300;
  cursor: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
}
.form-group textarea {
  height: 120px;
  resize: none;
}
.submit-btn {
  background: var(--charcoal);
  color: var(--cream);
  border: none;
  padding: 20px 56px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: none;
  font-family: "Montserrat", sans-serif;
  transition: background 0.3s;
  width: 100%;
  margin-top: 8px;
}
.submit-btn:hover {
  background: var(--terracotta);
}

/* Footer */
footer {
  background: var(--dark);
  padding: 80px 80px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 20px;
  display: block;
}
.footer-brand-text {
  font-size: 11px;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.9;
  font-weight: 300;
}
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.footer-col-title {
  font-family: "Tenor Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 11px;
  color: rgba(245, 240, 232, 0.4);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 10px;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 1px;
  font-weight: 300;
}
.footer-bottom-links {
  display: flex;
  gap: 32px;
}
.footer-bottom-links a {
  font-size: 10px;
  color: rgba(245, 240, 232, 0.25);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom-links a:hover {
  color: var(--cream);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slowZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── Mobile Nav Drawer ── */
.hamburger {
  display: none;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color 0.3s;
  font-style: italic;
}
.mobile-nav a:hover {
  color: var(--terracotta);
}
.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}
.mobile-nav-cta {
  font-family: "Montserrat", sans-serif !important;
  font-style: normal !important;
  font-size: 11px !important;
  letter-spacing: 4px !important;
  padding: 16px 36px;
  border: 1px solid var(--terracotta) !important;
  color: var(--terracotta) !important;
  margin-top: 16px;
}

/* ── Tablet: 768px – 1180px ── */
@media (max-width: 1180px) {
  nav {
    padding: 24px 40px;
  }
  nav.scrolled {
    padding: 16px 40px;
  }
  .nav-links {
    gap: 28px;
  }
  .nav-cta {
    display: none;
  }

  .hero-left {
    padding: 0 60px 90px;
  }
  .hero-title {
    font-size: clamp(56px, 6vw, 90px);
  }

  .about {
    padding: 120px 60px;
    gap: 60px;
  }
  .about-image-accent {
    right: -20px;
    width: 50%;
  }
  .about-experience {
    left: -20px;
  }

  .services {
    padding: 120px 60px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio {
    padding: 120px 60px;
  }
  .portfolio-grid {
    grid-template-rows: repeat(2, 300px);
  }

  .process {
    padding: 120px 60px;
  }
  .process-step {
    padding: 0 24px;
  }

  .stats {
    padding: 80px 60px;
  }
  .stat-item {
    padding: 0 30px;
  }
  .stat-number {
    font-size: 60px;
  }

  .testimonials {
    padding: 120px 60px;
  }
  .testimonial-slide {
    min-width: calc(70% - 16px);
    padding: 48px;
  }

  .contact {
    padding: 120px 60px;
    gap: 60px;
  }

  footer {
    padding: 80px 60px 40px;
  }
  .footer-top {
    gap: 48px;
  }
}

/* ── Small Tablet / Large Mobile: 600px – 768px ── */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  .cursor,
  .cursor-ring {
    display: none;
  }
  .filter-btn {
    cursor: pointer;
  }
  .submit-btn,
  .t-btn,
  .form-group input,
  .form-group select,
  .form-group textarea {
    cursor: auto;
  }

  nav {
    padding: 20px 24px;
  }
  nav.scrolled {
    padding: 14px 24px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 300;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--charcoal);
    transition: all 0.35s ease;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }
  .hamburger.open span {
    background: var(--cream);
  }
  .mobile-nav {
    display: flex;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100svh;
    position: relative;
  }
  .hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    opacity: 0.18;
  }
  .hero-left {
    position: relative;
    z-index: 2;
    padding: 120px 24px 80px;
    justify-content: center;
    min-height: 100svh;
  }
  .hero-image-overlay {
    background: none;
  }
  .hero-title {
    font-size: clamp(52px, 13vw, 80px);
    margin-bottom: 28px;
  }
  .hero-sub {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 40px;
  }
  .hero-stat {
    display: none;
  }
  .scroll-indicator {
    left: 24px;
    bottom: 32px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* Marquee */
  .marquee-item {
    font-size: 16px;
  }

  /* About */
  .about {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 48px;
  }
  .about-image-main {
    height: 320px;
  }
  .about-image-accent {
    display: none;
  }
  .about-experience {
    left: 0;
    top: auto;
    bottom: 16px;
    padding: 20px;
  }
  .about-experience-num {
    font-size: 44px;
  }
  .about-right {
    padding-top: 0;
  }
  .about-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Services */
  .services {
    padding: 80px 24px;
  }
  .services-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 48px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .service-card {
    padding: 40px 28px;
  }

  /* Portfolio */
  .portfolio {
    padding: 80px 24px;
  }
  .portfolio-filter {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .portfolio-item {
    height: 260px;
    width: 100%;
  }
  .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(26, 23, 20, 0.75) 0%,
      transparent 60%
    );
  }
  .portfolio-arrow {
    display: none;
  }

  /* Process */
  .process {
    padding: 80px 24px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-steps::before {
    display: none;
  }
  .process-step {
    padding: 0;
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  .step-num-wrap {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  /* Stats */
  .stats {
    grid-template-columns: 1fr 1fr;
    padding: 60px 24px;
    gap: 0;
  }
  .stat-item {
    padding: 32px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-item:nth-child(2n) {
    border-right: none;
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }
  .stat-number {
    font-size: 52px;
  }

  /* Testimonials */
  .testimonials {
    padding: 80px 24px;
  }
  .testimonial-slide {
    min-width: 100%;
    padding: 36px 28px;
  }
  .testimonial-text {
    font-size: 18px;
  }

  /* Contact */
  .contact {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 56px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Footer */
  footer {
    padding: 60px 24px 32px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* ── Small Mobile: < 400px ── */
@media (max-width: 400px) {
  .hero-title {
    font-size: 48px;
  }
  .section-title {
    font-size: 36px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .stat-number {
    font-size: 60px;
  }
  .portfolio-filter {
    gap: 12px;
  }
  .filter-btn {
    font-size: 9px;
    letter-spacing: 2px;
  }
}
