/* ==========================================================
   Redolence Decor — stylesheet
   ========================================================== */

:root {
  --cream: #fbf6f1;
  --cream-alt: #f6eee6;
  --ink: #2b221d;
  --ink-soft: #5b4f48;
  --rose: #c4685f;
  --rose-dark: #a84e47;
  --rose-tint: #f1dcda;
  --gold: #b8874b;
  --line: #e7dcd2;
  --white: #ffffff;

  /* --font-display: "Fraunces", Georgia, serif;
    --font-body:    "Inter", Arial, sans-serif; */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;

  --container: 1180px;
  --radius: 6px;
  --shadow-soft: 0 18px 40px -20px rgba(43, 34, 29, 0.25);
}



.main-nav a {
    font-family: "Cormorant Garamond", Georgia, serif !important;
}


* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

p {
  margin: 0;
  line-height: 1.7;
  color: var(--ink-soft);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

em {
  font-style: italic;
  color: var(--rose-dark);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(196, 104, 95, 0.65);
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border-color: var(--rose);
  color: var(--rose-dark);
}
.btn-outline:hover {
  background: var(--rose-tint);
}

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
}
.why-copy .eyebrow,
.why-copy h2 {
  text-align: left;
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 246, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ---------- Logo image (header + footer + mobile menu) ---------- */
.site-logo-img {
  display: block;
  width: auto;
  height: 65px; /* desktop header/footer height */
  max-width: 220px;
  object-fit: contain;
}
.mobile-footer-logo .site-logo-img--mark {
  height: 64px;
  max-width: 260px;
  margin: 0 auto;
}
.footer-brand .site-logo-img {
  height: 50px;
  max-width: 230px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.main-nav a {
  position: relative;
  padding: 6px 2px;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--rose-dark);
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--rose);
}
.has-dropdown {
  position: relative;
}
.chev {
  font-size: 10px;
}

/* ---------- Services mega-dropdown (Bonvera-style icon + title + description panel) ---------- */
.mega-dropdown {
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translate(-50%, 6px);
  width: 420px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
  z-index: 40;
}
.has-dropdown:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.mega-dropdown-grid {
  padding: 8px;
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 10px;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.mega-item:hover {
  background: var(--cream-alt);
}
.mega-item-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rose-tint);
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-item-icon svg {
  width: 18px;
  height: 18px;
}
.mega-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.mega-item-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}
.mega-item-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}
.mega-dropdown-footer {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--cream-alt);
  border-top: 1px solid var(--line);
}
.mega-dropdown-footer:hover {
  color: var(--rose-dark);
}

.header-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Mobile menu panel ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 86vw);
  height: 100%;
  background: var(--cream);
  z-index: 900;
  overflow-y: auto;
  padding: 26px 22px;
  transition: right 0.35s ease;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.close-btn {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a.active {
  color: var(--rose-dark);
  background: var(--rose-tint);
  font-weight: 500;
}
.mobile-nav a i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
}
.mobile-nav a .plus {
  margin-left: auto;
  opacity: 0.6;
}
.mobile-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 34px;
}
.mobile-menu-footer {
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.mobile-footer-logo {
  justify-content: center;
  margin-bottom: 10px;
}
.brand-name {
  font-family: var(--font-display);
  letter-spacing: 2px;
  color: var(--rose-dark);
  font-size: 15px;
  margin: 0 0 8px;
}
.mobile-menu-footer .tagline {
  font-size: 13px;
  max-width: 240px;
  margin: 0 auto 16px;
}
.socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.mobile-menu-footer .socials {
  margin-bottom: 4px;
}
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
.socials a svg {
  width: 16px;
  height: 16px;
}
.socials a:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  transform: translateY(-3px);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 34, 29, 0.45);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  padding: 64px 0 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  margin: 0 0 18px;
}
.hero-desc {
  max-width: 440px;
  margin-bottom: 30px;
  font-size: 16px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 34px;
}
.stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.stat-icon svg {
  width: 19px;
  height: 19px;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--rose-dark);
  display: block;
  line-height: 1.3;
}
.stat span {
  font-size: 12.5px;
  color: var(--ink-soft);
}
.hero-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services {
  padding: 90px 0;
  background: var(--cream-alt);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px 30px;
  text-align: left;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rose-tint);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.35s ease;
}
.service-icon svg {
  width: 26px;
  height: 26px;
}
.service-card:hover .service-icon {
  background: var(--rose);
  color: var(--white);
  transform: rotate(-6deg) scale(1.08);
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}
.service-card:hover h3 {
  color: var(--rose-dark);
}
.service-card p {
  font-size: 14px;
}
.service-arrow {
  display: inline-flex;
  margin-top: 16px;
  color: var(--rose-dark);
  font-size: 15px;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================
   COLLECTIONS
   ========================================================== */
.collections {
  padding: 90px 0;
}
.collections-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.collection-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(20, 12, 10, 0);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 12, 10, 0.8),
    rgba(20, 12, 10, 0.05) 55%,
    rgba(20, 12, 10, 0) 75%
  );
  transition: background 0.4s ease;
  z-index: 1;
}
.collection-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: calc(var(--radius) - 4px);
  transition: border-color 0.4s ease;
  z-index: 2;
  pointer-events: none;
}
.collection-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  z-index: 3;
  transition: transform 0.4s ease;
}
.collection-view {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.4px;
  font-weight: 500;
  z-index: 3;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.collection-card:hover img {
  transform: scale(1.08);
}
.collection-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(20, 12, 10, 0.88),
    rgba(20, 12, 10, 0.15) 60%,
    rgba(20, 12, 10, 0) 85%
  );
}
.collection-card:hover::after {
  border-color: rgba(212, 175, 110, 0.55);
}
.collection-card:hover .collection-label {
  transform: translateY(-22px);
}
.collection-card:hover .collection-view {
  opacity: 1;
  transform: translateY(0);
}
.center-cta {
  text-align: center;
  margin-top: 38px;
}

.dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
}
.dots span.active {
  background: var(--rose);
  width: 20px;
  border-radius: 4px;
}

/* ==========================================================
   WHY CHOOSE
   ========================================================== */
.why-choose {
  padding: 90px 0;
  background: var(--cream-alt);
}
.why-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.why-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}
.why-copy h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin-bottom: 28px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.why-list li {
  display: flex;
  gap: 16px;
}
.why-num {
  color: var(--white);
  background: var(--gold);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.why-num svg {
  width: 18px;
  height: 18px;
}
.why-list li:hover .why-num {
  background: var(--rose-dark);
  transform: rotate(-8deg);
}
.why-list h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.why-list p {
  font-size: 14px;
}

/* ==========================================================
   WORK / GALLERY
   ========================================================== */
.work {
  padding: 90px 0;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.work-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.work-item:hover img {
  transform: scale(1.06);
}

/* ==========================================================
   PROCESS
   ========================================================== */
.process {
  padding: 90px 0;
  background: var(--cream-alt);
}
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--rose) 0 6px,
    transparent 6px 12px
  );
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--rose);
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}
.process-icon svg {
  width: 24px;
  height: 24px;
}
.process-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px var(--cream-alt);
}
.process-step:hover .process-icon {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-3px);
}
.process-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13.5px;
  max-width: 220px;
  margin: 0 auto;
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials {
  padding: 90px 0;
  overflow: hidden;
}
.marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.testimonial-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-wrap:hover .testimonial-track {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  width: min(360px, 84vw);
  flex-shrink: 0;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}
.quote {
  font-size: 14.5px;
  font-style: italic;
  margin-bottom: 22px;
  color: var(--ink-soft);
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rose-tint);
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-person strong {
  display: block;
  font-size: 14.5px;
  font-family: var(--font-body);
  font-weight: 600;
}
.testimonial-person span {
  font-size: 12.5px;
  color: var(--ink-soft);
}
.stars {
  color: var(--gold);
  font-size: 12px;
  margin-top: 2px;
}

/* ==========================================================
   CTA BANNER
   ========================================================== */
.cta-banner {
  padding: 90px 0;
}
.cta-card {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: stretch;
  background: linear-gradient(135deg, #fbefea, #f6e4de);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 135, 75, 0.25);
  border-radius: 14px;
  margin: 10px;
  pointer-events: none;
}
.cta-media {
  position: relative;
  overflow: hidden;
}
.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}
.cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(43, 34, 29, 0.08), rgba(43, 34, 29, 0.08));
}
.cta-inner {
  text-align: center;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-inner .eyebrow {
  margin-bottom: 6px;
}
.cta-inner h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 12px;
  max-width: 420px;
}
.cta-inner p {
  margin-bottom: 26px;
  max-width: 380px;
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.cta-phone-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--rose);
  color: var(--rose-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.cta-phone:hover .cta-phone-icon {
  background: var(--rose);
  color: var(--white);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: #2a211c;
  color: #d9cfc7;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo-text {
  color: #f1dcda;
}
.footer-brand .logo-mark {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-brand p {
  color: #b7aba2;
  font-size: 14px;
  margin: 14px 0 18px;
  max-width: 260px;
}
.footer-brand .socials {
  justify-content: flex-start;
}
.footer-brand .socials a {
  border-color: rgba(255, 255, 255, 0.18);
  color: #d9cfc7;
}
.footer-brand .socials a:hover {
  border-color: var(--rose);
}

/* ---------- Footer contact list with icons ---------- */
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-list .contact-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-list .contact-ico svg {
  width: 16px;
  height: 16px;
}
.contact-list a {
  transition: color 0.2s ease;
}
.footer-col h5 {
  font-family: var(--font-display);
  color: #f1dcda;
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a,
.contact-list li {
  font-size: 14px;
  color: #b7aba2;
}
.footer-col a:hover {
  color: var(--rose);
}
.contact-list li {
  line-height: 1.6;
}
.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 13px;
  color: #8b8078;
}

/* ==========================================================
   BACK TO TOP
   ========================================================== */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 400;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .main-nav,
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* Logo — mobile sizing (header, mobile menu, footer) */
  .site-logo-img {
    height: 34px;
    max-width: 160px;
  }
  .mobile-footer-logo .site-logo-img--mark {
    height: 48px;
    max-width: 200px;
  }
  .footer-brand .site-logo-img {
    height: 38px;
    max-width: 180px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-media {
    order: -1;
  }
  .hero-media img {
    height: 300px;
  }
  .hero-copy,
  .hero-desc {
    text-align: left;
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

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

  .collections-track {
    grid-auto-flow: column;
    grid-auto-columns: 62%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .collections-track::-webkit-scrollbar {
    display: none;
  }
  .collection-card {
    scroll-snap-align: start;
  }
  .dots {
    display: flex;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .why-media img {
    height: 320px;
  }
  .why-copy .eyebrow,
  .why-copy h2 {
    text-align: left;
  }

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

  .process-track {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: left;
  }
  .process-track::before {
    display: none;
  }
  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
  }
  .process-icon {
    margin: 0;
    flex-shrink: 0;
  }
  .process-step p {
    max-width: none;
  }

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

  .cta-card {
    grid-template-columns: 1fr;
  }
  .cta-media {
    display: none;
  }
  .cta-inner {
    padding: 40px 26px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }
  .hero {
    padding: 40px 0 56px;
  }
  .services,
  .collections,
  .why-choose,
  .work,
  .process,
  .testimonials {
    padding: 60px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: row;
  }
  .hero-actions .btn {
    flex: 1;
    justify-content: center;
  }
  .section-head {
    margin-bottom: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.page-hero {
  background: var(--cream-alt, #f5ede6);
  padding: 70px 0 50px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(30px, 4.4vw, 48px);
  margin: 10px 0 14px;
}
.page-hero-desc {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-soft);
}

.contact-cards-section {
  padding: 60px 0 10px;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--rose);
}
.contact-info-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--rose-tint);
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg {
  width: 24px;
  height: 24px;
}
.contact-info-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  margin-bottom: 8px;
}
.contact-info-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.contact-main {
  padding: 70px 0 90px;
}
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form-wrap h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 8px 0 12px;
}
.contact-form-sub {
  color: var(--ink-soft);
  margin-bottom: 30px;
  max-width: 460px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.2px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  width: 100%;
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-tint);
}
.contact-submit {
  align-self: flex-start;
  margin-top: 6px;
}

.contact-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-map {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact-social-card {
  background: #2a211c;
  color: #d9cfc7;
  border-radius: var(--radius);
  padding: 26px 24px;
}
.contact-social-card h4 {
  font-family: var(--font-display);
  color: #f1dcda;
  font-size: 17px;
  margin-bottom: 8px;
}
.contact-social-card p {
  font-size: 14px;
  color: #b7aba2;
  margin-bottom: 16px;
}
.contact-socials {
  justify-content: flex-start;
}
.contact-socials a {
  border-color: rgba(255, 255, 255, 0.18);
  color: #d9cfc7;
}
.contact-socials a:hover {
  border-color: var(--rose);
}

@media (max-width: 900px) {
  .contact-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 560px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 50px 0 40px;
  }
}
