/* ============================================================
   Little Details by Keya Meghani
   Luxury handmade & digital design portfolio
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --ivory: #FAF7F2;
  --soft-pink: #F6D6DC;
  --dusty-rose: #D89CA4;
  --gold: #C8A46A;
  --gold-deep: #B08C4E;
  --text-deep: #2D2A26;
  --text-soft: #6B625C;
  --border-soft: #E8DDD5;
  --pink-tint: #FBEEF0;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: "Allura", cursive;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 18px 50px -22px rgba(45, 42, 38, 0.22);
  --shadow-card: 0 12px 36px -18px rgba(45, 42, 38, 0.20);
  --radius: 16px;
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-deep);
  background: var(--ivory);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-deep);
  margin: 0;
  line-height: 1.18;
}

p {
  margin: 0;
}

::selection {
  background: var(--soft-pink);
  color: var(--text-deep);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav-logo {
  height: 80px;
  width: 110px;
}


/* Paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ---------- Section Heading ---------- */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--dusty-rose);
  display: block;
  line-height: 1;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-top: 6px;
}

.section-head p {
  color: var(--text-soft);
  margin-top: 14px;
  font-size: 1.02rem;
}

.section-head .rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ---------- Buttons ---------- */
.btn-primary-ld,
.btn-ghost-ld {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}

.btn-primary-ld {
  background: var(--text-deep);
  color: var(--ivory);
  border: 1px solid var(--text-deep);
}

.btn-primary-ld:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -14px rgba(200, 164, 106, 0.7);
}

.btn-ghost-ld {
  background: transparent;
  color: var(--text-deep);
  border: 1px solid var(--gold);
}

.btn-ghost-ld:hover {
  background: var(--gold);
  color: var(--ivory);
  transform: translateY(-3px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-ld {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav-ld.scrolled {
  padding: 13px 0;
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-brand span {
  display: block;
  font-family: var(--font-script);
  font-size: 0.95rem;
  color: var(--dusty-rose);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-deep);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-social {
  display: flex;
  gap: 12px;
}

.nav-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  color: var(--text-soft);
  font-size: 0.85rem;
  transition: all 0.3s var(--ease);
}

.nav-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ivory);
  transform: translateY(-2px);
}

.nav-cta {
  padding: 11px 22px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--text-deep);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--text-deep);
  color: var(--ivory);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-deep);
  transition: all 0.3s var(--ease);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-ld {
  padding: 170px 0 90px;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  z-index: 0;
}

.blob-1 {
  width: 380px;
  height: 380px;
  background: var(--soft-pink);
  top: -60px;
  right: -80px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: rgba(200, 164, 106, 0.35);
  bottom: -80px;
  left: -100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text .eyebrow {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--dusty-rose);
  line-height: 1;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  margin: 10px 0 20px;
  letter-spacing: -0.01em;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--gold-deep);
}

.hero-text p {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 38px;
  margin-top: 44px;
}

.hero-meta .stat strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold-deep);
  display: block;
}

.hero-meta .stat span {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Hero collage */
.hero-collage {
  position: relative;
  height: 520px;
}

.collage-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 5px solid #fff;
}

.collage-card img {
  height: 100%;
  object-fit: cover;
}

.cc-1 {
  width: 60%;
  height: 68%;
  top: 0;
  right: 0;
  z-index: 2;
}

.cc-2 {
  width: 48%;
  height: 50%;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.cc-3 {
  width: 38%;
  height: 38%;
  bottom: 6%;
  right: 8%;
  z-index: 4;
}

.collage-tag {
  position: absolute;
  top: 4%;
  left: 2%;
  z-index: 5;
  background: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}

.collage-tag .sig {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--dusty-rose);
  line-height: 1;
}

.collage-tag small {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.float-slow {
  animation: floaty 6s ease-in-out infinite;
}

.float-slow.delay {
  animation-delay: -3s;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

/* ============================================================
   BRAND INTRO STRIP
   ============================================================ */
.brand-strip {
  padding: 80px 0;
}

.brand-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.brand-card {
  display: flex;
  gap: 22px;
  align-items: center;
  background: var(--pink-tint);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 34px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.brand-card .icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-deep);
  border: 1px solid var(--border-soft);
}

.brand-card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.brand-card p {
  color: var(--text-soft);
  font-size: 0.96rem;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-ld {
  padding: 90px 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}

.filters li {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 9px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.filters li:hover {
  border-color: var(--dusty-rose);
  color: var(--text-deep);
}

.filters li.active {
  background: var(--text-deep);
  border-color: var(--text-deep);
  color: var(--ivory);
}

.portfolio-grid {
  margin: 0 -14px;
}

.p-item {
  width: 33.333%;
  padding: 14px;
  float: left;
}

.p-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.p-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
}

.p-card .p-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.p-card .p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  object-position: top;
}

.p-card:hover .p-img img {
  transform: scale(1.09);
}

.p-img .p-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(250, 247, 242, 0.92);
  color: var(--text-deep);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 30px;
}

.p-body {
  padding: 22px 24px 26px;
}

.p-body h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.p-body p {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.p-link {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.3s var(--ease);
}

.p-link:hover {
  gap: 13px;
}

/* ============================================================
   ABOUT / FOUNDER
   ============================================================ */
.about-ld {
  padding: 100px 0;
  background: var(--pink-tint);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual .portrait {
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-soft);
}

.about-visual .portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-visual .polaroid {
  position: absolute;
  bottom: -34px;
  right: -24px;
  width: 46%;
  background: #fff;
  padding: 10px 10px 40px;
  box-shadow: var(--shadow-card);
  transform: rotate(5deg);
  border: 1px solid var(--border-soft);
}

.about-visual .polaroid img {
  aspect-ratio: 1;
  object-fit: cover;
}

.about-visual .polaroid .cap {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--dusty-rose);
  text-align: center;
  margin-top: 6px;
}

.about-text .eyebrow {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--dusty-rose);
  line-height: 1;
}

.about-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  margin: 6px 0 20px;
}

.about-text p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.about-text .gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.about-values li {
  font-size: 0.86rem;
  color: var(--text-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-values li::before {
  content: "✦";
  color: var(--gold);
}

.about-signature {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: var(--text-deep);
  line-height: 0.8;
  margin-top: 28px;
}

.about-signature small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 8px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-ld {
  padding: 100px 0;
}

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

.process-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--gold) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step .num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-deep);
  transition: all 0.4s var(--ease);
}

.process-step:hover .num {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(200, 164, 106, 0.16);
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-ld {
  padding: 100px 0;
  background: var(--pink-tint);
  overflow: hidden;
}

.t-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.t-slide {
  min-width: 100%;
  padding: 0 12px;
}

.t-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 54px 50px;
  text-align: center;
  position: relative;
}

.t-card .quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--soft-pink);
  line-height: 0.4;
  height: 36px;
}

.t-card .quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-deep);
  margin-bottom: 28px;
}

.t-card .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 12px;
  overflow: hidden;
  border: 3px solid var(--soft-pink);
}

.t-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-card .name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.t-card .role {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dusty-rose);
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 30px;
}

.t-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--border-soft);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s var(--ease);
}

.t-dots button.active {
  background: var(--gold);
  width: 26px;
  border-radius: 5px;
}

/* ============================================================
   CONTACT / INQUIRY
   ============================================================ */
.contact-ld {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
}

.inquiry-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-card);
}

.inquiry-card h3 {
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.inquiry-card .sub {
  color: var(--text-soft);
  font-size: 0.94rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text-deep);
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 106, 0.15);
}

.inquiry-card .btn-primary-ld {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.contact-aside .aside-block {
  background: var(--pink-tint);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}

.contact-aside h4 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.contact-line:last-child {
  margin-bottom: 0;
}

.contact-line i {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
}

.aside-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.aside-collage img {
  border-radius: 10px;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ============================================================
   INSTAGRAM SHOWCASE
   ============================================================ */
.insta-ld {
  padding: 90px 0;
}

.insta-masonry {
  column-count: 4;
  column-gap: 14px;
}

.insta-masonry .insta-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.insta-masonry img {
  width: 100%;
  transition: transform 0.6s var(--ease);
}

.insta-item::after {
  content: "\f16d";
  font-family: FontAwesome;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  background: rgba(45, 42, 38, 0.35);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.insta-item:hover::after {
  opacity: 1;
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-cta {
  text-align: center;
  margin-top: 44px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-ld {
  background: var(--text-deep);
  color: #C9C1B8;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(200, 164, 106, 0.25);
}

.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ivory);
}

.footer-brand .logo span {
  display: block;
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.92rem;
  margin-top: 14px;
  max-width: 300px;
  line-height: 1.8;
}

.footer-col h4 {
  color: var(--ivory);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-contact .contact-line {
  color: #C9C1B8;
}

.footer-contact .contact-line i {
  background: rgba(200, 164, 106, 0.15);
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 106, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--text-deep);
}

.footer-bottom {
  text-align: center;
  padding-top: 26px;
  font-size: 0.8rem;
  color: #8A8278;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 26px -8px rgba(37, 211, 102, 0.7);
  transition: transform 0.3s var(--ease);
}

.float-wa:hover {
  transform: scale(1.1);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* clearfix for floated portfolio items */
.portfolio-grid::after {
  content: "";
  display: table;
  clear: both;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    height: 420px;
    margin-top: 20px;
  }

  .about-visual .polaroid {
    width: 38%;
  }

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

  .process-grid::before {
    display: none;
  }

  .insta-masonry {
    column-count: 3;
  }

  .p-item {
    width: 50%;
  }

  .nav-links,
  .nav-social {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    padding: 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
  }
}

@media (max-width: 700px) {
  .container {
    padding: 0 20px;
  }

  .brand-cards {
    grid-template-columns: 1fr;
  }

  .brand-card {
    flex-direction: column;
    text-align: center;
  }

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

  .insta-masonry {
    column-count: 2;
  }

  .p-item {
    width: 100%;
  }

  .hero-meta {
    gap: 24px;
  }

  .about-visual .polaroid {
    right: 0;
  }

  .t-card {
    padding: 40px 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }
}