:root {
  --bg-main: #f3ece5;
  --bg-soft: #fbf7f2;
  --panel: rgba(255, 255, 255, 0.7);
  --text-main: #1d1a18;
  --text-soft: #6e625a;
  --line: rgba(29, 26, 24, 0.1);
  --shadow: 0 22px 60px rgba(66, 45, 25, 0.12);
  --mint: #dcefe4;
  --peach: #f7e3d6;
  --blue: #dce8f6;
  --sand: #efe2d0;
  --stone: #e6e4e1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(180deg, #f9f3ed 0%, #f4ede7 38%, #f7f2ed 100%);
  color: var(--text-main);
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: 0 auto 0 0;
  width: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(228, 216, 206, 0.3), rgba(255, 255, 255, 0.95));
  filter: blur(12px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.page-shell::after {
  inset: 0 0 0 auto;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.section-space {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 242, 235, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(29, 26, 24, 0.06);
}

.navbar {
  min-height: 86px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.brand-mark small,
.brand-mark strong {
  display: block;
  line-height: 1;
}

.brand-mark small {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--text-soft);
}

.brand-mark strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}

.brand-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(230, 221, 212, 0.7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 18px rgba(0, 0, 0, 0.07);
  font-size: 1.3rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.6rem 0.4rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.hero-section {
  padding-top: 36px;

}

.hero-frame {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(32, 24, 19, 0.14);
  border-radius: 34px;
  padding: 54px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(23, 18, 14, 0.08), rgba(23, 18, 14, 0.14)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.35), transparent 40%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(90deg, #bbae9f 0%, #d8cfc5 12%, #a99786 22%, #d2c7bb 33%, #efebe6 50%, #c9beb1 64%, #998676 78%, #d2c4b5 90%, #b4a494 100%);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 26px;
  pointer-events: none;
}

.hero-frame::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 12%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 61, 47, 0.45), transparent 66%);
  filter: blur(34px);
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:url(/img/hero.jpg)
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-left: auto;
  text-align: right;
  padding-top: 36px;
}

.eyebrow {
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.77rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.hero-copy h1,
.section-heading h2,
.contact-copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.94;
  margin-bottom: 18px;
}

.hero-text,
.section-heading p,
.contact-copy p,
.feature-box p,
.service-card p,
.gallery-copy p {
  color: var(--text-soft);
}

.hero-text {
  max-width: 480px;
  margin-left: auto;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-pill {
  border-radius: 999px;
  padding: 0.88rem 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.floating-note {
  position: absolute;
  left: 52px;
  bottom: 52px;
  z-index: 2;
  min-width: 240px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 20px;
  background: rgba(255, 248, 241, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.floating-note span,
.floating-note strong {
  display: block;
}

.floating-note span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.78);
}

.floating-note strong {
  margin-top: 6px;
  font-size: 1.05rem;
  color: #fff;
}

.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -42px;
  padding: 26px;
  border: 1px solid rgba(29, 26, 24, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.stats-ribbon div {
  padding: 6px 12px;
}

.stats-ribbon strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.3rem;
  letter-spacing: 0.03em;
}

.stats-ribbon span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.95;
  margin-bottom: 14px;
}

.service-grid {
  position: relative;
}

.service-grid::before {
  content: "SERVICES";
  position: absolute;
  top: -22px;
  right: -18px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.22em;
  color: rgba(29, 26, 24, 0.09);
  font-size: 5rem;
  pointer-events: none;
}

.service-card {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(29, 26, 24, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68)),
    var(--bg-soft);
  box-shadow: 0 18px 32px rgba(77, 56, 35, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(77, 56, 35, 0.14);
}

.shift-down {
  margin-top: 36px;
}

.service-card h3,
.gallery-copy h3,
.feature-box h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  margin: 18px 0 12px;
  letter-spacing: 0.02em;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
}

.service-icon,
.feature-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 1.7rem;
  color: var(--text-main);
  border: 1px solid rgba(29, 26, 24, 0.06);
}

.mint { background: var(--mint); }
.peach { background: var(--peach); }
.blue { background: var(--blue); }
.sand { background: var(--sand); }
.stone { background: var(--stone); }

.accent-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.44), transparent 30%),
    linear-gradient(135deg, #181412, #47392d 70%, #796554);
  color: #fff;
}

.accent-card p,
.accent-card a {
  color: rgba(255, 255, 255, 0.85);
}

.accent-card .btn-dark {
  background: #fff;
  color: #1f1915;
  border: none;
}

.accent-label {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.feature-band {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04)),
    linear-gradient(90deg, rgba(255, 247, 238, 0.9), rgba(242, 231, 222, 0.85));
}

.feature-band::before {
  content: "";
  position: absolute;
  inset: 14% 8%;
  border: 1px solid rgba(29, 26, 24, 0.06);
  border-radius: 40px;
  pointer-events: none;
}

.feature-box {
  height: 100%;
  text-align: center;
  padding: 28px 22px;
}

.feature-icon {
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 24px rgba(61, 44, 28, 0.08);
}

.gallery-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.slider-track-wrap {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 22px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card {
  min-width: calc((100% - 44px) / 3);
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(29, 26, 24, 0.09);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 28px rgba(65, 48, 31, 0.08);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-card.active {
  transform: translateY(-6px);
}

.gallery-visual {
  aspect-ratio: 1 / 0.82;
  border-radius: 18px;
  margin-bottom: 18px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.gallery-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(16, 13, 11, 0.18));
}

.visual-one {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(15, 11, 8, 0.15)),
    linear-gradient(90deg, #b6aa9b 0%, #dfd6cd 18%, #a59283 30%, #e7e2db 52%, #b7a18f 74%, #cabdab 100%);
}

.visual-two {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(15, 11, 8, 0.18)),
    linear-gradient(90deg, #cbbdaf 0%, #f0e9df 22%, #9e8d80 38%, #d9d0c6 56%, #b39f8b 76%, #e6ddd4 100%);
}

.visual-three {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(15, 11, 8, 0.18)),
    linear-gradient(90deg, #b4a290 0%, #ddd1c3 18%, #9b8774 36%, #efe7de 54%, #b8a38d 75%, #d8ccbd 100%);
}

.visual-four {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(15, 11, 8, 0.18)),
    linear-gradient(90deg, #cdbfae 0%, #e9e0d7 24%, #a6927c 42%, #ddd2c6 58%, #baa28c 80%, #f2eae2 100%);
}

.slider-btn {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(29, 26, 24, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 26px rgba(65, 48, 31, 0.08);
  transition: transform 0.25s ease, background 0.25s ease;
}

.slider-btn:hover {
  transform: translateY(-4px);
  background: #fff;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(29, 26, 24, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.slider-dots button.active {
  transform: scale(1.4);
  background: var(--text-main);
}

.contact-section {
  padding-top: 36px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  padding: 40px;
  border-radius: 34px;
  border: 1px solid rgba(29, 26, 24, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.5), transparent 25%),
    rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.form-control {
  border-radius: 18px;
  border: 1px solid rgba(29, 26, 24, 0.1);
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.84);
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(68, 52, 39, 0.08);
  border-color: rgba(68, 52, 39, 0.24);
}

.reveal-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 80px 0;
  }

  .hero-frame {
    min-height: 620px;
    padding: 32px;
  }

  .hero-copy {
    max-width: 100%;
    text-align: left;
    margin-left: 0;
    padding-top: 180px;
  }

  .hero-text {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .floating-note {
    left: 32px;
    bottom: 32px;
  }

  .stats-ribbon,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .service-grid::before {
    display: none;
  }

  .gallery-card {
    min-width: calc((100% - 22px) / 2);
  }
}

@media (max-width: 767.98px) {
  .navbar {
    min-height: 76px;
  }

  .hero-frame {
    min-height: 560px;
    border-radius: 26px;
  }

  .hero-copy h1 {
    font-size: 3.3rem;
  }

  .floating-note {
    position: static;
    margin-top: 24px;
    background: rgba(27, 21, 18, 0.45);
  }

  .stats-ribbon {
    margin-top: 22px;
    padding: 18px;
  }

  .shift-down {
    margin-top: 0;
  }

  .gallery-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .gallery-card {
    min-width: 100%;
  }

  .contact-panel {
    padding: 28px;
  }
}


.contact-cards {
  width: 100%;
  max-width: 100%;
  padding: 0 15px;   /* safe spacing on mobile */
  box-sizing: border-box;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f5f5f5;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  width: 100%;              /* important */
  max-width: 100%;          /* prevent overflow */
  box-sizing: border-box;   /* include padding in width */
}

.contact-card span {
  flex: 1;
  word-break: break-word;   /* 🔥 prevents long text overflow */
}
.contact-card i {
  font-size: 18px;
  color: #0d6efd;
  min-width: 25px;
  text-align: center;
}

.contact-card:hover {
  background: #000000;
  color: #fff;
  transform: translateY(-3px);
}

.contact-card:hover i {
  color: #fff;
}

@media (max-width: 480px) {
  .contact-card {
    font-size: 13px;
    padding: 12px;
  }

  .contact-card i {
    font-size: 16px;
  }
}

.contact-card.active {
  background: #000;
  color: #fff;
}

.contact-card.active i {
  color: #fff;
}