:root {
  --ivory: #fff8df;
  --parchment: #f0dda9;
  --mist: #f6edcf;
  --olive: #d4cfaa;
  --umber: #746b50;
  --clay: #d7a17f;
  --rouge: #bd6d67;
  --ink: #343025;
  --white-soft: #fffaf0;
  --shadow: 0 22px 70px rgba(52, 48, 37, 0.14);
  --serif-display: "Italiana", "Bodoni Moda", "Cormorant Garamond", Georgia, serif;
  --serif-fashion: "Bodoni Moda", "Cormorant Garamond", Georgia, serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--ivory);
  overflow-x: hidden;
}

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

.site-shell {
  width: min(100%, 1440px);
  padding-inline: clamp(18px, 4vw, 64px);
  margin-inline: auto;
}

.site-header {
  z-index: 1090;
  padding-block: 14px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 12px 36px rgba(52, 48, 37, 0.045);
  transition: background-color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  padding-block: 8px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 12px 36px rgba(43, 39, 28, 0.08);
}

.navbar {
  padding: 0;
}

.desktop-nav {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: clamp(28px, 5vw, 72px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand-symbol {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(80, 74, 54, 0.4);
  border-radius: 50%;
  color: var(--rouge);
  font-family: var(--serif-display);
  font-size: 1.25rem;
  line-height: 1;
}

.brand-word {
  color: var(--ink);
  font-family: var(--serif-display);
  font-size: clamp(1.05rem, 1.2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.navbar-nav {
  gap: clamp(6px, 1.2vw, 22px);
}

.nav-link {
  position: relative;
  color: rgba(43, 39, 28, 0.74);
  font-size: 0.88rem;
  font-weight: 500;
  padding-inline: 0 !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown-toggle::after {
  margin-left: 0.35rem;
  vertical-align: 0.1em;
  border-top-color: currentColor;
}

.mega-menu {
  width: min(760px, calc(100vw - 48px));
  border: 1px solid rgba(80, 74, 54, 0.12);
  border-radius: 0;
  margin-top: 22px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.98);
  box-shadow: 0 24px 70px rgba(43, 39, 28, 0.16);
  backdrop-filter: blur(20px);
}

.mega-intro {
  display: grid;
  gap: 6px;
  border-bottom: 1px solid rgba(80, 74, 54, 0.12);
  padding-bottom: 18px;
  margin-bottom: 16px;
}

.mega-intro span {
  color: var(--rouge);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.mega-intro p {
  width: min(100%, 520px);
  margin: 0;
  color: rgba(43, 39, 28, 0.64);
  font-size: 0.88rem;
  line-height: 1.6;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(43, 39, 28, 0.78);
  background: rgba(231, 208, 155, 0.18);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.8rem 0.95rem;
}

.mega-link i {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--umber);
  background: rgba(189, 183, 138, 0.28);
  font-size: 1rem;
  flex: 0 0 auto;
}

.mega-link:hover,
.mega-link:focus-visible {
  border-color: rgba(158, 59, 58, 0.24);
  color: var(--ink);
  background: rgba(247, 241, 207, 0.7);
}

.offcanvas.offcanvas-end.site-menu.show,
.offcanvas.offcanvas-end.site-menu.showing {
  transform: translateX(0) !important;
  visibility: visible !important;
}

.offcanvas.offcanvas-end.site-menu {
  transform: translateX(0) !important;
}

@media (min-width: 992px) {
  .desktop-nav .services-nav {
    position: relative;
  }

  .desktop-nav .mega-menu {
    position: fixed !important;
    display: block;
    top: var(--mega-menu-top, 84px);
    left: 50%;
    right: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    visibility: hidden;
    margin-top: 0;
    transition:
      opacity 260ms ease,
      transform 260ms ease,
      visibility 0s linear 260ms;
  }

  .desktop-nav .services-nav::after {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 128px;
    height: 26px;
    content: "";
    transform: translateX(-50%);
  }

  .services-nav:hover > .mega-menu,
  .services-nav:focus-within > .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
    transition:
      opacity 260ms ease,
      transform 260ms ease,
      visibility 0s linear 0s;
  }
}

.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(80, 74, 54, 0.26);
  border-radius: 50%;
  color: var(--ink);
  box-shadow: none !important;
}

.menu-toggle .bi {
  font-size: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  padding: 0.75rem 1.25rem;
}

.btn-sm {
  min-height: 40px;
  padding: 0.55rem 1rem;
}

.btn-brand {
  border: 1px solid rgba(116, 107, 80, 0.64);
  color: var(--white-soft);
  background: #7d7357;
  box-shadow: 0 16px 36px rgba(52, 48, 37, 0.14);
}

.btn-brand:hover,
.btn-brand:focus-visible {
  border-color: var(--rouge);
  color: var(--white-soft);
  background: var(--rouge);
}

.btn-quiet {
  border: 1px solid rgba(116, 107, 80, 0.28);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.54);
  backdrop-filter: blur(14px);
}

.btn-quiet:hover,
.btn-quiet:focus-visible {
  border-color: rgba(189, 109, 103, 0.42);
  color: var(--white-soft);
  background: var(--rouge);
}

.hero-section {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ink);
  background: var(--ivory);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../img/hero-eitherios.png");
  background-position: center right;
  background-size: cover;
  filter: saturate(0.86) contrast(0.96) brightness(1.08);
  transform: scale(1.015);
}

.hero-overlay {
  background:
    radial-gradient(circle at 22% 48%, rgba(255, 248, 223, 0.66), transparent 34%),
    linear-gradient(90deg, rgba(255, 250, 240, 0.9) 0%, rgba(246, 237, 207, 0.74) 39%, rgba(255, 250, 240, 0.2) 76%),
    linear-gradient(180deg, rgba(255, 248, 223, 0.26) 0%, rgba(255, 250, 240, 0.2) 48%, rgba(212, 207, 170, 0.34) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: clamp(120px, 13vh, 158px);
  padding-bottom: clamp(118px, 13vh, 154px);
}

.hero-content {
  width: min(100%, 640px);
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(52, 48, 37, 0.76);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 46px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero-content h1 {
  margin: 0;
  color: #8f5d58;
  font-family: var(--serif-display);
  font-size: clamp(4.2rem, 8.4vw, 8.65rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 18px 44px rgba(255, 250, 240, 0.42);
}

.hero-lead {
  width: min(100%, 560px);
  margin: 26px 0 0;
  color: var(--ink);
  font-family: var(--serif-fashion);
  font-size: clamp(2.1rem, 3.4vw, 3.85rem);
  font-weight: 500;
  line-height: 1.02;
}

.hero-text {
  width: min(100%, 440px);
  margin: 20px 0 0;
  color: rgba(52, 48, 37, 0.7);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-note {
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  bottom: 34px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
  width: auto;
  max-width: calc(100% - 36px);
  border: 1px solid rgba(116, 107, 80, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.62);
  box-shadow: 0 18px 48px rgba(52, 48, 37, 0.12);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(116, 107, 80, 0.14);
  color: rgba(52, 48, 37, 0.76);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.68rem 0.9rem;
}

.hero-note span:last-child {
  border-right: 0;
}

.hero-note i {
  color: var(--rouge);
  font-size: 0.95rem;
}

.brand-intro-section {
  position: relative;
  background:
    linear-gradient(180deg, var(--ivory) 0%, rgba(240, 221, 169, 0.26) 100%);
  padding-block: clamp(76px, 10vw, 132px);
}

.brand-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #aa6961;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 44px;
  height: 1px;
  content: "";
  background: currentColor;
}

.brand-intro-copy h2 {
  width: min(100%, 720px);
  margin: 0;
  color: var(--ink);
  font-family: var(--serif-fashion);
  font-size: clamp(2.7rem, 5.3vw, 6.15rem);
  font-weight: 400;
  line-height: 0.94;
}

.brand-intro-copy p:not(.section-kicker) {
  width: min(100%, 510px);
  margin: 22px 0 0;
  color: rgba(43, 39, 28, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.8;
}

.brand-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
}

.btn-earth {
  border: 1px solid rgba(116, 107, 80, 0.7);
  color: var(--white-soft);
  background: #7d7357;
}

.btn-earth:hover,
.btn-earth:focus-visible {
  border-color: var(--rouge);
  color: var(--white-soft);
  background: var(--rouge);
}

.text-link {
  position: relative;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0.72);
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.brand-intro-visual {
  position: relative;
  isolation: isolate;
}

.brand-intro-visual::before {
  position: absolute;
  inset: 22px -20px -22px 20px;
  z-index: -1;
  border: 1px solid rgba(80, 74, 54, 0.18);
  content: "";
}

.brand-intro-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 28px 80px rgba(52, 48, 37, 0.12);
}

.intro-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(247, 241, 207, 0.28);
  color: rgba(255, 250, 240, 0.9);
  background: rgba(43, 39, 28, 0.36);
  backdrop-filter: blur(16px);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
}

.signature-services-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(116, 107, 80, 0.035), rgba(116, 107, 80, 0)),
    var(--white-soft);
  padding-block: clamp(78px, 10vw, 136px);
  overflow: hidden;
}

.signature-services-section::before {
  position: absolute;
  top: 0;
  right: clamp(18px, 4vw, 64px);
  left: clamp(18px, 4vw, 64px);
  height: 1px;
  content: "";
  background: rgba(80, 74, 54, 0.16);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.section-heading-row h2 {
  width: min(100%, 760px);
  margin: 0;
  color: var(--ink);
  font-family: var(--serif-fashion);
  font-size: clamp(2.35rem, 4.6vw, 5.25rem);
  font-weight: 400;
  line-height: 0.98;
}

.services-slider-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.slider-btn {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(80, 74, 54, 0.24);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(247, 241, 207, 0.52);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  border-color: var(--umber);
  color: var(--white-soft);
  background: var(--umber);
  transform: translateY(-1px);
}

.slider-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.services-swiper {
  overflow: visible;
  padding-bottom: 42px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(80, 74, 54, 0.14);
  color: var(--ink);
  background: var(--white-soft);
  box-shadow: 0 24px 60px rgba(52, 48, 37, 0.055);
  padding: 0;
  overflow: hidden;
}

.service-card::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(80, 74, 54, 0.08);
  content: "";
  pointer-events: none;
}

.service-image {
  position: relative;
  min-height: clamp(230px, 20vw, 288px);
  background-image:
    linear-gradient(180deg, rgba(52, 48, 37, 0.04), rgba(52, 48, 37, 0.18)),
    url("../img/signature-services.png");
  background-repeat: no-repeat;
  background-size: 500% auto;
  overflow: hidden;
}

.service-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(247, 241, 207, 0) 48%, rgba(255, 250, 240, 0.18) 100%);
}

.service-image-01 {
  background-position: 0% center;
}

.service-image-02 {
  background-position: 25% center;
}

.service-image-03 {
  background-position: 50% center;
}

.service-image-04 {
  background-position: 75% center;
}

.service-image-05 {
  background-position: 100% center;
}

.service-count {
  position: absolute;
  top: 26px;
  left: 28px;
  z-index: 1;
  color: rgba(255, 250, 240, 0.82);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.service-icon {
  position: absolute;
  top: 24px;
  right: 26px;
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  z-index: 1;
  color: var(--white-soft);
  background: rgba(116, 107, 80, 0.34);
  backdrop-filter: blur(14px);
  font-size: 1.35rem;
}

.service-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
}

.service-card h3 {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif-fashion);
  font-size: clamp(2rem, 2.8vw, 3.05rem);
  font-weight: 600;
  line-height: 1;
}

.service-card p {
  position: relative;
  min-height: 78px;
  margin: 18px 0 0;
  color: rgba(43, 39, 28, 0.68);
  font-size: 0.98rem;
  line-height: 1.7;
}

.service-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  color: var(--rouge);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card a i {
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.service-card a:hover i {
  transform: translateX(3px);
}

.services-pagination {
  position: absolute;
  right: auto;
  bottom: 0 !important;
  left: 0 !important;
  width: auto !important;
  text-align: left;
}

.services-pagination .swiper-pagination-bullet {
  width: 26px;
  height: 2px;
  border-radius: 0;
  background: rgba(80, 74, 54, 0.34);
  opacity: 1;
}

.services-pagination .swiper-pagination-bullet-active {
  background: var(--rouge);
}

.process-section {
  position: relative;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(189, 109, 103, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(246, 237, 207, 0.98), rgba(240, 221, 169, 0.78));
  padding-block: clamp(78px, 10vw, 136px);
  overflow: hidden;
}

.process-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(116, 107, 80, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(116, 107, 80, 0.055) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.44;
  pointer-events: none;
}

.process-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 118px;
}

.process-intro .section-kicker {
  color: #aa6961;
}

.process-intro h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif-fashion);
  font-size: clamp(2.4rem, 4.7vw, 5.35rem);
  font-weight: 500;
  line-height: 0.98;
}

.process-intro p:not(.section-kicker) {
  width: min(100%, 420px);
  margin: 24px 0 0;
  color: rgba(52, 48, 37, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.process-intro .btn {
  margin-top: 34px;
  border-color: rgba(116, 107, 80, 0.68);
  color: var(--white-soft);
  background: #7d7357;
}

.process-intro .btn:hover,
.process-intro .btn:focus-visible {
  border-color: var(--clay);
  color: var(--white-soft);
  background: var(--rouge);
}

.process-steps {
  display: grid;
  gap: 18px;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(116, 107, 80, 0.14);
  background: rgba(255, 250, 240, 0.52);
  box-shadow: 0 28px 70px rgba(52, 48, 37, 0.08);
  backdrop-filter: blur(18px);
  padding: clamp(24px, 3vw, 36px);
}

.process-step::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--parchment), rgba(194, 131, 98, 0.68));
}

.process-number {
  align-self: start;
  color: rgba(170, 105, 97, 0.42);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 0.85;
}

.process-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(116, 107, 80, 0.16);
  border-radius: 50%;
  color: var(--rouge);
  background: rgba(255, 250, 240, 0.62);
  font-size: 1.25rem;
}

.process-step h3 {
  margin: 0;
  padding-right: 58px;
  color: var(--ink);
  font-family: var(--serif-fashion);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 600;
  line-height: 1;
}

.process-step p {
  grid-column: 2;
  width: min(100%, 520px);
  margin: 14px 0 0;
  color: rgba(52, 48, 37, 0.66);
  font-size: 0.98rem;
  line-height: 1.75;
}

.mood-strip-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(240, 221, 169, 0.22), rgba(255, 250, 240, 0.96)),
    var(--ivory);
  padding-block: clamp(72px, 9vw, 118px);
  overflow: hidden;
}

.mood-strip-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.mood-strip-header h2 {
  width: min(100%, 680px);
  margin: 0;
  color: var(--ink);
  font-family: var(--serif-fashion);
  font-size: clamp(2.35rem, 4.8vw, 5.3rem);
  font-weight: 400;
  line-height: 0.98;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  border: 1px solid rgba(80, 74, 54, 0.22);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.62);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.78rem 1.1rem;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  border-color: var(--rouge);
  color: var(--white-soft);
  background: var(--rouge);
  transform: translateY(-1px);
}

.mood-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.mood-strip::before,
.mood-strip::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(54px, 10vw, 180px);
  content: "";
  pointer-events: none;
}

.mood-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--ivory), rgba(247, 241, 207, 0));
}

.mood-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--white-soft), rgba(255, 250, 240, 0));
}

.mood-strip-track {
  display: flex;
  width: max-content;
  gap: clamp(12px, 2vw, 22px);
  animation: moodLoop 42s linear infinite;
  will-change: transform;
}

.mood-strip-track img {
  width: clamp(168px, 20vw, 292px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  object-fit: cover;
  box-shadow: 0 22px 54px rgba(52, 48, 37, 0.09);
}

.mood-strip-track img:nth-child(3n + 2) {
  transform: translateY(18px);
}

.mood-strip-track img:nth-child(3n) {
  transform: translateY(-12px);
}

@keyframes moodLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(6px, 1vw, 11px)));
  }
}

.query-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(189, 109, 103, 0.08), transparent 34%),
    linear-gradient(180deg, var(--white-soft), var(--ivory));
  padding-block: clamp(76px, 10vw, 132px);
}

.query-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.88fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.query-copy h2 {
  width: min(100%, 680px);
  margin: 0;
  color: var(--ink);
  font-family: var(--serif-fashion);
  font-size: clamp(2.5rem, 4.9vw, 5.55rem);
  font-weight: 400;
  line-height: 0.96;
}

.query-copy p:not(.section-kicker) {
  width: min(100%, 460px);
  margin: 24px 0 0;
  color: rgba(43, 39, 28, 0.68);
  font-size: 1.02rem;
  line-height: 1.8;
}

.query-contact {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.query-contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: rgba(43, 39, 28, 0.78);
  font-weight: 700;
}

.query-contact i {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--rouge);
  background: rgba(158, 59, 58, 0.08);
}

.query-form {
  position: relative;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(80, 74, 54, 0.16);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 28px 80px rgba(52, 48, 37, 0.08);
  backdrop-filter: blur(18px);
  padding: clamp(22px, 3vw, 34px);
}

.query-form::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(80, 74, 54, 0.08);
  content: "";
  pointer-events: none;
}

.query-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.query-form .form-floating,
.query-form .btn {
  position: relative;
  z-index: 1;
}

.query-form .form-control,
.query-form .form-select {
  min-height: 60px;
  border: 1px solid rgba(80, 74, 54, 0.16);
  border-radius: 0;
  color: var(--ink);
  background-color: rgba(255, 250, 240, 0.88);
  box-shadow: none;
}

.query-form .form-control:focus,
.query-form .form-select:focus {
  border-color: rgba(158, 59, 58, 0.58);
  box-shadow: 0 0 0 0.2rem rgba(158, 59, 58, 0.1);
}

.query-form label {
  color: rgba(43, 39, 28, 0.58);
}

.query-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.query-form .btn {
  width: fit-content;
  min-width: 168px;
  margin-top: 10px;
}

.query-form-note {
  position: relative;
  z-index: 1;
  min-height: 22px;
  margin: 0;
  color: rgba(43, 39, 28, 0.62);
  font-size: 0.84rem;
}

.site-footer {
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(189, 109, 103, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(215, 161, 127, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(246, 237, 207, 0.98), rgba(212, 207, 170, 0.78));
  padding-block: clamp(58px, 8vw, 104px) 28px;
  overflow: hidden;
}

.site-footer::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(116, 107, 80, 0.12);
  content: "";
  pointer-events: none;
}

.footer-topline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(116, 107, 80, 0.16);
  margin-bottom: clamp(34px, 5vw, 58px);
  padding-bottom: 18px;
  color: rgba(52, 48, 37, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(130px, 0.42fr) minmax(190px, 0.62fr) minmax(210px, 0.7fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.footer-brand,
.footer-brand .brand-word {
  color: var(--ink);
}

.footer-brand .brand-symbol {
  border-color: rgba(116, 107, 80, 0.34);
  color: var(--rouge);
}

.footer-copy {
  width: min(100%, 430px);
  margin: 22px 0 0;
  color: rgba(52, 48, 37, 0.72);
  font-family: var(--serif-fashion);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  line-height: 1.12;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.btn-footer {
  border: 1px solid rgba(116, 107, 80, 0.68);
  color: var(--white-soft);
  background: #7d7357;
}

.btn-footer:hover,
.btn-footer:focus-visible {
  border-color: var(--clay);
  color: var(--white-soft);
  background: var(--rouge);
}

.footer-text-link {
  position: relative;
  color: rgba(52, 48, 37, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
}

.footer-column {
  display: grid;
  gap: 11px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #8f5d58;
  font-family: var(--serif-fashion);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.footer-column a,
.footer-contact a {
  color: rgba(52, 48, 37, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-contact a:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(116, 107, 80, 0.16);
  border-radius: 50%;
  color: var(--rouge);
  font-size: 0.9rem;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(116, 107, 80, 0.16);
  margin-top: clamp(40px, 6vw, 76px);
  padding-top: 22px;
  color: rgba(52, 48, 37, 0.58);
  font-size: 0.82rem;
}

.floating-social {
  position: fixed;
  right: clamp(16px, 2.6vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 1085;
  display: grid;
  gap: 10px;
}

.floating-social a {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(247, 241, 207, 0.34);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(80, 74, 54, 0.9);
  box-shadow: 0 18px 42px rgba(43, 39, 28, 0.24);
  backdrop-filter: blur(16px);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.floating-social a:hover,
.floating-social a:focus-visible {
  border-color: rgba(255, 250, 240, 0.72);
  color: var(--white-soft);
  background: var(--rouge);
  transform: translateY(-2px);
}

.floating-social i {
  font-size: 1.18rem;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .site-header {
    z-index: 1090;
    background: rgba(255, 250, 240, 0.96);
  }

  .site-menu {
    z-index: 1100;
    right: 0;
    left: auto;
    width: min(400px, 100vw);
    height: 100vh;
    color: var(--ink);
    background: var(--white-soft);
    box-shadow: -24px 0 70px rgba(43, 39, 28, 0.16);
  }

  .site-menu.show,
  .site-menu.showing {
    transform: none !important;
  }

  .offcanvas-backdrop {
    z-index: 1080;
    background-color: rgba(43, 39, 28, 0.45);
  }

  .site-menu .offcanvas-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 28px;
  }

  .site-menu .navbar-nav {
    gap: 12px;
  }

  .site-menu .nav-link {
    display: inline-flex;
    font-family: var(--serif);
    font-size: 1.55rem;
  }

  .site-menu .dropdown-toggle::after {
    display: none;
  }

  .site-menu .mega-menu {
    position: static !important;
    display: block;
    width: 100%;
    min-width: 0;
    border: 0;
    border-left: 1px solid rgba(80, 74, 54, 0.18);
    border-radius: 0;
    box-shadow: none;
    margin: 2px 0 4px 2px;
    padding: 4px 0 0 16px;
    background: transparent;
    transform: none !important;
  }

  .site-menu .mega-intro {
    display: none;
  }

  .site-menu .mega-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-menu .mega-link {
    min-height: 40px;
    border: 0;
    background: transparent;
    color: rgba(43, 39, 28, 0.72);
    padding: 0.35rem 0;
  }

  .site-menu .mega-link i {
    width: 26px;
    height: 26px;
    background: rgba(189, 183, 138, 0.24);
  }

  .hero-section {
    min-height: 92svh;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 250, 240, 0.93) 0%, rgba(246, 237, 207, 0.76) 62%, rgba(255, 250, 240, 0.28) 100%),
      linear-gradient(180deg, rgba(255, 248, 223, 0.18) 0%, rgba(212, 207, 170, 0.38) 100%);
  }

  .hero-shell {
    min-height: 92svh;
    padding-bottom: 144px;
  }

  .hero-note {
    right: auto;
    left: 18px;
    width: calc(100% - 36px);
    justify-content: flex-start;
    border-radius: 18px;
  }

  .hero-note span {
    flex: 1 1 auto;
    justify-content: center;
    border-bottom: 1px solid rgba(247, 241, 207, 0.14);
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }

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

  .brand-intro-copy h2,
  .brand-intro-copy p:not(.section-kicker) {
    width: min(100%, 680px);
  }

  .brand-intro-visual {
    width: min(100%, 620px);
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-slider-controls {
    align-self: flex-end;
  }

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

  .process-intro {
    position: relative;
    top: auto;
  }

  .process-intro p:not(.section-kicker) {
    width: min(100%, 620px);
  }

  .mood-strip-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .query-copy p:not(.section-kicker) {
    width: min(100%, 620px);
  }
}

@media (max-width: 575.98px) {
  .site-header {
    padding-block: 10px;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .hero-content h1 {
    font-size: clamp(3.3rem, 15vw, 4.75rem);
    transform: scaleX(0.78);
    transform-origin: left center;
    width: 128%;
  }

  .hero-lead {
    max-width: 330px;
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .hero-text {
    max-width: 310px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 280px);
  }

  .hero-note span {
    font-size: 0.72rem;
    padding: 0.62rem 0.7rem;
  }

  .hero-note {
    display: grid;
    grid-template-columns: 1fr;
    bottom: 22px;
  }

  .hero-note span {
    justify-content: flex-start;
    border-right: 0;
    padding-inline: 1rem;
  }

  .hero-note span:last-child {
    border-bottom: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-topline {
    flex-direction: column;
  }

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

  .footer-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-cta .btn {
    width: min(100%, 280px);
  }

  .floating-social {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .floating-social a {
    width: 44px;
    height: 44px;
  }

  .brand-intro-section {
    padding-block: 64px 76px;
  }

  .brand-intro-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
    line-height: 0.98;
  }

  .brand-intro-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .brand-intro-actions .btn {
    width: min(100%, 280px);
  }

  .brand-intro-visual::before {
    inset: 14px -10px -14px 10px;
  }

  .intro-caption {
    position: static;
    flex-direction: column;
    gap: 4px;
    border-color: rgba(80, 74, 54, 0.18);
    color: var(--ink);
    background: rgba(255, 250, 240, 0.78);
    margin-top: 12px;
  }

  .signature-services-section {
    padding-block: 64px 78px;
  }

  .section-heading-row h2 {
    font-size: clamp(2.2rem, 11vw, 3.45rem);
  }

  .services-slider-controls {
    align-self: flex-start;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
  }

  .service-card {
    min-height: 470px;
    padding: 0;
  }

  .service-card::before {
    inset: 12px;
  }

  .service-image {
    min-height: 230px;
  }

  .service-card-body {
    padding: 24px;
  }

  .service-count {
    top: 22px;
    left: 24px;
  }

  .service-icon {
    top: 20px;
    right: 22px;
    width: 46px;
    height: 46px;
  }

  .service-card p {
    min-height: auto;
  }

  .process-section {
    padding-block: 64px 78px;
  }

  .process-intro h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .process-step {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .process-number {
    margin-bottom: 24px;
  }

  .process-icon {
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
  }

  .process-step h3 {
    padding-right: 0;
  }

  .process-step p {
    grid-column: auto;
  }

  .mood-strip-section {
    padding-block: 62px 78px;
  }

  .mood-strip-header h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .instagram-link {
    padding: 0.72rem 1rem;
  }

  .query-section {
    padding-block: 64px 78px;
  }

  .query-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.55rem);
  }

  .query-form {
    padding: 20px;
  }

  .query-form::before {
    inset: 10px;
  }

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

  .query-form .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mood-strip-track {
    animation: none;
  }
}
