/* =============================================================
   ACHAYANS — STYLESHEET
   ============================================================= */

/* -------------------------------------------------------------
   1. TOKENS / VARIABLES
   ------------------------------------------------------------- */
:root {
  --bg: #faf0e0;
  --panel: #fffaf1;
  --cream: #17130d;
  --muted: #756e63;
  --gold: #c69a3a;
  --gold2: #e7bd61;
  --orange: #ed7d21;
  --orange2: #f49a43;
  --ink: #17130d;
  --line: rgba(198, 154, 58, .28);
}

/* -------------------------------------------------------------
   2. BASE / RESET
   ------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 !important;
  background: var(--bg) !important;
  color: var(--ink) !important;
  font-family: "DM Sans", sans-serif !important;
  overflow-x: hidden !important;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  background-image: radial-gradient(#fff 0.55px, transparent .55px);
  background-size: 5px 5px;
  z-index: 50;
}

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

.container {
  width: min(1180px, 90vw);
  margin: auto;
}



.floating-whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp-btn i {
    font-size: 28px;
    color: #fff;
}

.floating-whatsapp-btn span {
    position: absolute;
    right: 68px;
    background: #222;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    padding: 9px 14px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.floating-whatsapp-btn:hover {
    transform: translateY(-3px);
    animation: none;
}

.floating-whatsapp-btn:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2), 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 767px) {
    .floating-whatsapp-btn {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp-btn i {
        font-size: 25px;
    }

    .floating-whatsapp-btn span {
        display: none;
    }
}

/* -------------------------------------------------------------
   3. NAVIGATION
   ------------------------------------------------------------- */

   
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 25px 5vw !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .5s;
}

.nav.scrolled {
  background: rgba(11, 11, 10, .86);
  backdrop-filter: blur(16px);
  padding: 16px 5vw;
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: "Playfair Display";
  letter-spacing: .08em;
  font-size: 19px;
}

.logo small {
  font: 10px "DM Sans";
  letter-spacing: .28em;
  color: var(--gold);
  display: block;
  margin-top: 3px;
}

.navlinks {
  display: flex;
  gap: 28px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #d5d0c6;
}

.navlinks a {
  position: relative;
}

.navlinks a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: .3s;
}

.navlinks a:hover:after {
  width: 100%;
}

.navcta,
.btn {
  border: 1px solid var(--gold);
  padding: 12px 18px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: .3s;
}

.navcta:hover,
.btn:hover {
  background: var(--gold);
  color: #111;
}

.navcta--mobile {
  display: none;
}

/* --- Dropdown --- */
.navDropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.navDropdown-head {
  display: flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}

.navDropdown-toggle {
    background: none;
    border: none;
    padding: 0px;
    margin: 0;
    cursor: pointer;
    color: inherit;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.navDropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  min-width: 220px;
  background: rgba(11, 11, 10, .96);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .3s;
  z-index: 50;
}

.navDropdown:hover .navDropdown-menu,
.navDropdown:focus-within .navDropdown-menu,
.navDropdown.open .navDropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navDropdown-menu a {
  padding: 10px 20px;
  white-space: nowrap;
  color: #d5d0c6 !important;
  font-size: 10px;
}

.navDropdown-menu a:hover {
  color: var(--gold) !important;
}

.navDropdown-menu a:after {
  display: none;
}

.navDropdown-arrow {
  width: 11px;
  height: 11px;
  vertical-align: -1px;
  transition: transform .3s;
}

.navDropdown:hover .navDropdown-arrow,
.navDropdown:focus-within .navDropdown-arrow,
.navDropdown.open .navDropdown-arrow {
  transform: rotate(180deg);
}

/* --- Hamburger toggle button --- */
.navToggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.navToggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: .3s;
}

.navToggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navToggle.active span:nth-child(2) {
  opacity: 0;
}
.navToggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* --- Mobile nav --- */
@media (max-width: 991px) {
  .navToggle {
    display: flex !important;
  }

  .navcta {
    display: none !important;
  }

  .navcta--mobile {
    display: inline-block !important;
    margin-top: 12px;
    text-align: center;
    width: 100%;
  }

.navlinks {
    display: flex !important;
    position: fixed !important;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    overflow-y: auto;
    background: rgba(11, 11, 10, .98);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .4s ease;
    z-index: 1000;
}

  .navlinks.active {
    transform: translateX(0) !important;
  }

  
.navlinks a {
  position: relative;
  color: #d5d0c6 !important;
}

  /* Stack the dropdown: head on top, submenu list below */
  .navDropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .navDropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    border: none;
    width: 100%;
    padding: 4px 0 0 14px;
    margin-top: 6px;
    display: none;
  }

  .navDropdown.open .navDropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .navDropdown-menu a {
    padding: 8px 0;
  }
}

/* -------------------------------------------------------------
   4. HERO
   ------------------------------------------------------------- */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(237, 125, 33, .15), transparent 24%),
    radial-gradient(circle at 62% 45%, rgba(231, 189, 97, .18), transparent 30%),
    #fffdf9;
  background-image: url(../img/bg.png);
  background-size: cover;
}

.heroImg {
  position: absolute;
  right: 8%;
  bottom: -5%;
  height: 92%;
  width: min(54vw, 650px);
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(1.03);
  animation: heroIn 1.4s cubic-bezier(.2, .8, .2, 1) both;
}

.heroGlow {
  position: absolute;
  right: 18%;
  bottom: 8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(237, 125, 33, .13);
  filter: blur(90px);
}

.heroCopy {
  position: relative;
  z-index: 4;
  width: min(1180px, 90vw);
  padding-top: 8vh;
}

.eyebrow {
    color: var(--orange);
    font-size: 11px;
    letter-spacing: .35em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h1 {
    font: 600 clamp(60px, 8.4vw, 117px)/.88 "Cormorant Unicase", serif !important;
    letter-spacing: -.055em !important;
    margin: 0 !important;
    max-width: 760px !important;
    line-height: 90px !important;
}

h2, h3, h4, h5, h6 {
    font-family:"Cormorant Unicase", serif !important;
    font-weight: 600

}

h1 span {
  display: block;
  color: var(--gold);
}

.heroSub {
    font-size: 16px;
    line-height: 1.7;
    color: #c4beb2;
    max-width: 430px;
    margin: 15px 0;
    font-family: "Fraunces", serif;
    font-weight: 300;
    letter-spacing: 0px;
}

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

.btn.fill {
  background: linear-gradient(135deg, var(--orange), #ffb71b) !important;
  color: #fff !important;
  border-color: var(--orange) !important;
}

.btn.fill:hover {
  background: var(--gold2) !important;
}

.scroll {
  position: absolute;
  left: 5vw;
  bottom: 30px;
  z-index: 5;
  font-size: 10px;
  letter-spacing: .2em;
  color: #9d978d;
  writing-mode: vertical-rl;
}

.scroll:after {
  content: "";
  display: block;
  width: 1px;
  height: 70px;
  background: var(--gold);
  margin-top: 12px;
}

.goldOrb {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(225, 196, 125, .55);
  box-shadow: 0 0 30px rgba(225, 196, 125, .18);
  animation: float 7s ease-in-out infinite;
}

.o1 {
  top: 25%;
  left: 10%;
}

.o2 {
  top: 48%;
  right: 9%;
  animation-delay: 1.5s;
}

.o3 {
  bottom: 20%;
  left: 30%;
  animation-delay: 3s;
}

/* -------------------------------------------------------------
   5. GENERIC SECTION / TYPOGRAPHY HELPERS
   ------------------------------------------------------------- */
.section {
  padding: 150px 0;
  position: relative;
}

.kicker {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.big {
  font: 600 clamp(45px, 6vw, 65px)/.95 "Cormorant Unicase", serif;
  letter-spacing: -.04em;
  margin: 0;
}

.muted {
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  font-family: "Fraunces", serif;
}

/* -------------------------------------------------------------
   6. INTRO
   ------------------------------------------------------------- */
.intro {
  display: grid;
  grid-template-columns: 1.05fr .8fr;
  gap: 1vw;
  align-items: end;
}

.intro p {
  font-size: 17px;
  color: #1e180f;
  font-weight: 300;
  letter-spacing: 0px;
  line-height: 24px;
  font-family: "Fraunces", serif;
}

.line {
  height: 1px;
  background: var(--line);
  margin: 55px 0;
}

/* -------------------------------------------------------------
   7. SERVICES
   ------------------------------------------------------------- */
.services {
  background: #fff9ef;
}

.serviceGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 65px;
}

.card {
  min-height: 520px;
  padding: 42px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(145deg, #fff, #fff8ec);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: .5s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--line);
}

.card:before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  right: -120px;
  top: -100px;
  background: radial-gradient(circle, rgba(199, 164, 91, .22), transparent 65%);
  transition: .6s;
}

.card:hover:before {
  transform: scale(1.25);
}

.card-bangle {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 370px;
  pointer-events: none;
  user-select: none;
}

.card-pledge {
  position: absolute;
  right: 20px;
  top: 0px;
  width: 235px;
  pointer-events: none;
  user-select: none;
}

.num {
  position: absolute;
  top: 34px;
  left: 38px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .2em;
}

.card h3 {
  font: 600 43px "Playfair Display";
  margin: 0 0 16px;
  max-width: 470px;
}

.card p {
  max-width: 480px;
  color: #46433e;
  font-size: 16px;
  font-family: "Fraunces", serif;
  line-height: 1.7;
  margin: 0 0 28px;
}

.arrow {
  color: var(--gold);
  letter-spacing: .16em;
  font-size: 10px;
}

/* -------------------------------------------------------------
   8. TRUST
   ------------------------------------------------------------- */
.trust {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 10vw;
  align-items: start;
}

.trustList {
  border-top: 1px solid var(--line);
}

.trustItem {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.trustItem b {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .15em;
}

.trustItem h4 {
  margin: 0 0 7px;
  font-size: 23px;
}

.trustItem p {
  margin: 0;
  color: #50493d;
  font-size: 14px;
  line-height: 1.6;
  font-family: "Fraunces", serif;
  font-weight: 300;
  letter-spacing: 0px;
}

/* -------------------------------------------------------------
   9. PLEDGE
   ------------------------------------------------------------- */
.pledge {
  background: linear-gradient(110deg, #fff8e9, #fffdf9 60%);
  overflow: hidden;
}

.pledgeWrap {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 8vw;
  align-items: center;
}

.steps {
  margin-top: 55px;
}

.step {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.step strong {
  font: 600 28px "Playfair Display";
  color: var(--gold);
  width: 45px;
}

.step span {
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.goldDisc {
  width: min(35vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 32% 28%, #fff3bd 0, #e7bd61 16%, #b88429 35%, #6b4815 49%, #f0c96e 52%, #fff3c5 57%, transparent 58%);
  box-shadow: 0 0 100px rgba(199, 164, 91, .14);
  display: grid;
  place-items: center;
  transform: rotate(-10deg);
}

.goldDisc span {
  font: 600 clamp(30px, 4vw, 55px) "Playfair Display";
  color: #f4dfaa;
  text-align: center;
  line-height: 1;
}

.goldDisc small {
  display: block;
  font: 10px "DM Sans";
  letter-spacing: .25em;
  margin-top: 12px;
}

/* -------------------------------------------------------------
   10. PROCESS
   ------------------------------------------------------------- */
.process {
  padding-bottom: 120px;
}

.processGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
}

.processItem {
  padding: 25px;
  border-top: 1px solid var(--line);
  border-left: 1px solid rgba(255, 255, 255, .08);
  min-height: 180px;
}

.processItem b {
  color: var(--gold);
  font-size: 20px;
  font-family: "Fraunces", serif;
}

.processItem h4 {
  font: 500 24px "Playfair Display";
  margin: 35px 0 10px;
}

.processItem p {
  font-size: 13px;
  color: #8e8980;
  line-height: 1.6;
  font-family: "Fraunces", serif;
}

/* -------------------------------------------------------------
   11. TONY / QUOTE + BRANCHES
   ------------------------------------------------------------- */
.tony {
    min-height: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: #fff8ec;
    overflow: hidden;
}


.tony .container {
    width: 70vw !important;
    margin: auto !important;
}

.tony .pad-left {
    padding: 0 30px 0px 50px;
}

.tonyPhoto {
  height: 700px;
  position: relative;
}

.tonyPhoto img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .4));
}

.quote {
    font: 500 clamp(38px, 5vw, 68px)/1.03 "Playfair Display";
    letter-spacing: -.04em;
}

.signature {
  margin-top: 40px;
  color: var(--gold);
  font: italic 25px "Playfair Display";
}

.branches {
  background: #fffdf9;
}

.branchBox {
  margin-top: 55px;
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.branchBox strong {
  font: 500 28px "Playfair Display";
}

.branchBox p {
  color: #89847c;
  margin: 8px 0 0;
  font-family: "Fraunces", serif;
}

/* -------------------------------------------------------------
   12. CTA + FOOTER
   ------------------------------------------------------------- */
.cta {
  padding: 140px 0;
  background: radial-gradient(circle at 50% 10%, #fff0d5, #fffdf9 55%);
  text-align: center;
}

.cta .big {
  max-width: 850px;
  margin: auto;
}

.cta p {
  max-width: 500px;
  margin: 28px auto 35px;
}

.cta-fill {
    border: 1px solid #c69a3a !important;
      background: linear-gradient(135deg, var(--orange), #ffb71b) !important;
    color: #fff !important;
    border-color: var(--orange) !important;
    padding: 12px 18px !important;
    font-size: 10px !important;
    letter-spacing: .18em !important;
    text-transform: uppercase !important;
    transition: .3s !important;
}

.cta-fill:hover {
    border: 1px solid #c69a3a !important;
    background: transparent !important;
      color: #000 !important;
}

.cta-blank {
    border: 1px solid #c69a3a !important;
    padding: 12px 18px !important;
    font-size: 10px !important;
    letter-spacing: .18em !important;
    text-transform: uppercase !important;
    transition: .3s !important;
}

.cta-blank:hover {
    border: 1px solid #c69a3a !important;
      background: linear-gradient(135deg, var(--orange), #ffb71b) !important;
    color: #fff !important;  
}

.footer {
  padding: 55px 0 30px;
  border-top: 1px solid var(--line);
  background: #fff8ec;
}

.footerTop {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footerRight {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.footerAddress {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    margin-top: 14px;
    max-width: 320px;
}

.footerAddress i {
  margin-top: 5px;
}

.footerPhone {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  margin-top: 8px;
  color: inherit;
  text-decoration: none;
}

.footerPhone:hover {
  text-decoration: underline;
}

.footerLinks {
  display: flex;
  gap: 25px;
  color: #9d988e;
  font-size: 15px;
  font-family: "Fraunces", serif;
}

.footerSocial {
  display: flex;
  gap: 12px;
}

.footerSocial a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: color .3s, border-color .3s, background .3s, transform .3s;
}

.footerSocial a:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footerSocial svg {
  width: 17px;
  height: 17px;
}

.footerBottom {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.copyright {
  color: #57534d;
  font-size: 10px;
  letter-spacing: .08em;
}

.credit {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    font-family: "Fraunces", serif;
    color: #57534d;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.credit a {
  color: var(--gold);
  font-weight: 500;
  transition: color .3s;
}

.credit a:hover {
  color: var(--orange);
}

@media (max-width: 600px) {
  .footerBottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 500px) {
  .credit span {
    padding-left: 0;
  }
  .credit span:before {
    display: none;
  }
}

/* -------------------------------------------------------------
   13. UTILITIES / SCROLL REVEAL
   ------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 1s cubic-bezier(.2, .7, .2, 1);
}

.reveal.show {
  opacity: 1;
  transform: none;
}

.pad-left {
  padding-left: 50px;
}

.neck {
    background-image: url(../img/neck.png);
    background-repeat: no-repeat;
    background-size: 18%;
    top: -11px;
    filter: contrast(0.89) saturate(1.04) drop-shadow(0 34px 48px rgba(26, 18, 8, 0.4));
}

.mandara {
  background-image: url(../img/mandara.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/* -------------------------------------------------------------
   14. KEYFRAMES (base)
   ------------------------------------------------------------- */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(35px) scale(1.03);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}

/* -------------------------------------------------------------
   15. RESPONSIVE (base layout)
   ------------------------------------------------------------- */
@media (max-width: 800px) {
  .navlinks {
    display: none;
  }
  .nav {
    padding: 18px 5vw;
  }
  .navcta {
    padding: 10px 12px;
  }
  .hero {
    min-height: 850px;
  }
  .heroCopy {
    padding-top: 3vh;
    align-self: start;
    margin-top: 125px;
  }
  .heroImg {
    height: 64%;
    width: 90vw;
    right: 0;
    bottom: -2%;
  }
  .heroGlow {
    right: 10%;
    bottom: 12%;
    width: 280px;
    height: 280px;
  }
  .scroll {
    display: none;
  }
  .section {
    padding: 95px 0;
  }
  .intro,
  .trust,
  .pledgeWrap,
  .tony {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .serviceGrid {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: 440px;
    padding: 30px;
  }
  .card h3 {
    font-size: 38px;
  }
  .goldDisc {
    width: 75vw;
    margin: auto;
  }
  .processGrid {
    grid-template-columns: 1fr 1fr;
  }
  .processItem {
    min-height: 150px;
  }
  .tony {
    padding-top: 40px;
  }
  .tonyPhoto {
    height: 520px;
    order: 2;
  }
  .tony .container {
    width: 90vw;
  }
  .footerTop {
    flex-direction: column;
  }
  .footerRight {
    align-items: flex-start;
  }
  .footerLinks {
    flex-wrap: wrap;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 57px;
  }
  .heroSub {
    font-size: 13px;
  }
  .processGrid {
    grid-template-columns: 1fr;
  }
  .processItem {
    min-height: auto;
  }
  .branchBox {
    align-items: flex-start;
    flex-direction: column;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* =============================================================
   16. WHITE × ORANGE × GOLD CREATIVE LAYER
   ============================================================= */
.hero {
  color: var(--ink);
}

.heroCopy h1 {
  color: var(--ink);
}

.heroCopy h1 span {
  background: linear-gradient(135deg, var(--orange), #ffb71b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo {
  color: var(--ink);
}

.navlinks {
  color: #5d574f;
}

.nav.scrolled {
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 30px rgba(76, 54, 20, .08);
}

.navcta {
  color: var(--ink);
}

.eyebrow,
.kicker,
.num,
.arrow {
  color: var(--orange);
}

.heroSub,
.muted {
  color: #756e63;
}

.section {
  color: var(--ink);
}

.big {
  color: var(--ink);
}

.line,
.trustList,
.trustItem,
.step,
.processItem {
  border-color: var(--line);
}

.card {
  box-shadow: 0 20px 70px rgba(95, 67, 20, .08);
}

.card:hover {
  box-shadow: 0 30px 90px rgba(95, 67, 20, .14);
}

.services {
  color: var(--ink);
}

.pledge {
  color: var(--ink);
}

.goldOrb {
  border-color: rgba(237, 125, 33, .45);
  background: rgba(231, 189, 97, .12);
}

.floating-gold {
  position: absolute;
  z-index: 3;
  color: var(--gold);
  font-size: clamp(45px, 7vw, 100px);
  font-family: "Playfair Display";
  font-weight: 500;
  opacity: .22;
  pointer-events: none;
  filter: drop-shadow(0 12px 30px rgba(198, 154, 58, .16));
  animation: floatCreative 8s ease-in-out infinite;
}

.fg1 {
  top: 18%;
  right: 47%;
  font-size: 90px;
}

.fg2 {
  top: 34%;
  left: 8%;
  font-size: 48px;
  animation-delay: 1.2s;
}

.fg3 {
  bottom: 22%;
  right: 7%;
  font-size: 120px;
  animation-delay: 2.2s;
}

.side-word {
  position: absolute;
  right: 2%;
  top: 52%;
  z-index: 2;
  font: 600 11px "DM Sans";
  letter-spacing: .5em;
  color: rgba(237, 125, 33, .28);
  writing-mode: vertical-rl;
}

.marquee {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    background: #fff;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 28s linear infinite;
    color: #8b6930;
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    will-change: transform;
}

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 34px;
    padding-right: 34px;
}

.marquee-track b {
    color: var(--orange);
    font-size: 14px;
    flex-shrink: 0;
}

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

    to {
        transform: translateX(-50%);
    }
}

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


.goldDisc {
  position: relative;
}

.goldDisc:after {
  content: "";
  position: absolute;
  inset: -20px;
  border: 20px solid rgb(215 170 78);
  border-radius: 50%;
  background-image: url(../img/mssure.png);
  background-repeat: no-repeat;
  background-size: 85%;
}

.cta .big {
  color: var(--ink);
}

.footer {
  background: #fff8ec;
  color: var(--ink);
}

.footerLinks {
  color: #756e63;
}

.zoom-image {
  transition: transform 0.4s ease;
}

.zoom-image:hover {
  transform: scale(1.1);
}

/* -------------------------------------------------------------
   17. KEYFRAMES (creative)
   ------------------------------------------------------------- */
@keyframes floatCreative {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(18px, -28px, 0) rotate(8deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 800px) {
  .fg1 {
    top: 16%;
    right: 8%;
    font-size: 55px;
  }
  .fg2 {
    top: 38%;
    left: 5%;
    font-size: 35px;
  }
  .fg3 {
    bottom: 24%;
    right: 3%;
    font-size: 70px;
  }
  .side-word {
    display: none;
  }
}

/* =============================================================
   18. CINEMATIC BANGLE SCROLL SYSTEM — single transparent asset
   ============================================================= */
.hero {
  perspective: 1400px;
  transform-style: preserve-3d;
  isolation: isolate;
}

.heroImg {
  z-index: 2;
}

.bangleStage {
  position: absolute;
  inset: 0;
  /* z-index:3; */
  pointer-events: none;
  overflow: visible;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.bangle {
  position: absolute;
  width: min(54vw, 650px);
  height: auto;
  right: clamp(-3vw, 1vw, 2vw);
  top: 50%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
  transform-origin: 78% 78%;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  filter: contrast(0.89) saturate(1.04) drop-shadow(0 34px 48px rgba(26, 18, 8, 0.4));
}

.heroGlow {
  z-index: 1;
  pointer-events: none;
}

.heroCopy {
  z-index: 10;
}

.scroll {
  z-index: 11;
}

.floating-gold,
.side-word {
  z-index: 2;
}

@media (max-width: 1024px) {
  .bangle {
    width: min(58vw, 610px);
    right: -1vw;
  }
}

@media (max-width: 800px) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    perspective: 1000px;
  }
  .bangle {
    width: min(92vw, 520px);
    right: clamp(-22vw, -8vw, -3vw);
    top: 60%;
    filter: contrast(1.03) saturate(1.03) drop-shadow(0 24px 34px rgba(116, 75, 12, .16));
  }
  .heroGlow {
    right: 8%;
    bottom: 10%;
    width: 280px;
    height: 280px;
    filter: blur(65px);
  }
}

@media (max-width: 600px) {
  .bangle {
    width: clamp(330px, 96vw, 500px);
    right: -17vw;
    top: 63%;
  }
}

@media (max-width: 480px) {
  .bangle {
    width: clamp(310px, 101vw, 450px);
    right: -22vw;
    top: 64%;
  }
}

@media (max-width: 390px) {
  .bangle {
    width: clamp(295px, 106vw, 410px);
    right: -27vw;
    top: 65%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bangle {
    will-change: auto;
    transform: none !important;
    opacity: 1 !important;
    filter: contrast(1.03) saturate(1.03) drop-shadow(0 24px 34px rgba(116, 75, 12, .14));
  }
le{
    will-change:auto;
    transform:none!important;
    opacity:1!important;
    filter:contrast(1.03) saturate(1.03) drop-shadow(0 24px 34px rgba(116,75,12,.14));
  }
le{
    will-change:auto;
    transform:none!important;
    opacity:1!important;
    filter:contrast(1.03) saturate(1.03) drop-shadow(0 24px 34px rgba(116,75,12,.14));
  }
le{
    will-change:auto;
    transform:none!important;
    opacity:1!important;
    filter:contrast(1.03) saturate(1.03) drop-shadow(0 24px 34px rgba(116,75,12,.14));
  }
}



/* ABOUT — TRUSTED PARTNER section start */

.innerAboutUsTrust {
  padding: 120px 0 0;
  overflow: hidden;
}

.innerAboutUsTrustWrap {
  align-items: stretch;
}

.innerAboutUsTrust-text {
    max-width: unset;
    padding-right: 50px;
}

.innerAboutUsTrust-title {
    font: 600 clamp(45px, 8vw, 33px)/.95 "Cormorant Unicase", serif;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: #c69a3a;
    margin: 0 0 34px;
}

.innerAboutUsTrust-text p {
    color: #46433e;
    font-size: 16px;
    font-family: "Fraunces", serif;
    font-weight: 300;
    line-height: 1.75;
    margin: 0 0 20px;
}

.innerAboutUsTrust-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font: 600 12px "DM Sans", sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
}

.innerAboutUsTrust-more span {
  transition: transform .3s;
}

.innerAboutUsTrust-more:hover span {
  transform: translateX(5px);
}

.innerAboutUsTrust-wrap-right {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.innerAboutUsTrust-intro {
    padding: 0 0 50px;
    max-width: unset;
    margin-left: auto;
}

.innerAboutUsTrust-intro p {
    color: #46433e;
    font-size: 16px;
    font-family: "Fraunces", serif;
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
}

.innerAboutUsTrust-img {
  flex: 1;
  min-height: 380px;
}

.innerAboutUsTrust-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

@media (max-width: 991px) {
  .innerAboutUsTrust {
    padding: 100px 0 0;
  }
  .innerAboutUsTrust-text {
    max-width: none;
    padding: 0 5vw 40px;
  }
  .innerAboutUsTrust-intro {
    margin-left: 0;
    max-width: none;
    padding: 0 5vw 20px;
  }
  .innerAboutUsTrust-img {
    min-height: 300px;
  }
}

/* ABOUT — TRUSTED PARTNER section end */







/* ABOUT — FOUNDER MESSAGE section start */

.founderMsg {
  padding: 120px 0 80px;
}

.founderMsgWrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.founderMsgtag {
    color: #c69a3a;
    margin-bottom: 20px;
    font-size: 16px;
}

.founderMsg-text {
  flex: 1 1 55%;
}

.founderMsg-title {
    font-size: 54px;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 22px;
    font-family: "Cormorant Unicase", serif;
    font-weight: 600;
}

.founderMsg-text p {
    color: #46433e;
    font-size: 18px;
    font-family: "Fraunces", serif;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 16px;
}

.founderMsg-text p strong {
  color: var(--ink);
  font-weight: 600;
}

.founderMsg-img {
  flex: 1 1 45%;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.founderMsg-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.founderMsg-imgName {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 60px 26px 22px;
  background: linear-gradient(to top, rgba(10, 8, 4, .82), rgba(10, 8, 4, 0));
  color: #fff;
  font: 600 22px "Cormorant Unicase", serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .founderMsg {
    padding: 120px 0 60px;
  }
  .founderMsgWrap {
    flex-direction: column;
    gap: 30px;
  }
}

/* ABOUT — FOUNDER MESSAGE section end */




/* ABOUT — OUR LEGACY section start */

.ourLegacy {
  padding: 80px 0;
}

.ourLegacyPanel {
  border: 2px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.ourLegacyTabs {
    padding: 30px 25px !important;
}

.ourLegacy-title {
  font: 600 clamp(30px, 3.4vw, 42px)/1.2 "Cormorant Unicase", serif;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0 0 32px;
}

.ourLegacyTabList {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.ourLegacyTab {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 18px 4px;
  text-align: left;
  cursor: pointer;
  font-family: "Fraunces", serif;
}

.ourLegacyTab-num {
    font-size: 16px;
    color: var(--line);
    transition: .3s;
}

.ourLegacyTab-label {
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    transition: .3s;
}

.ourLegacyTab.is-active .ourLegacyTab-num,
.ourLegacyTab.is-active .ourLegacyTab-label {
  color: var(--gold);
}

.ourLegacyTabPanels {
  margin: 26px 0 34px;
  min-height: 108px;
}

.ourLegacyTabPanel {
    display: none;
    color: #46433e;
    font-size: 16px;
    font-family: "Fraunces", serif;
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
}

.ourLegacyTabPanel.is-active {
  display: block;
  animation: legacyFade .4s ease;
}

@keyframes legacyFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.ourLegacy-cta {
  display: inline-flex;
  border: 1px solid var(--gold);
  padding: 13px 26px;
  font: 600 12px "DM Sans", sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: .3s;
}

.ourLegacy-cta:hover {
  background: var(--gold);
  color: #111;
}

.ourLegacyImg {
  min-height: 380px;
  position: relative;
}

.ourLegacyImg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
  .ourLegacyImg {
    min-height: 280px;
    order: -1;
  }
}

/* ABOUT — OUR LEGACY section end */




/* ABOUT — MISSION / VISION section start */

.missionVision {
    padding: 80px 0;
}

.missionVisionItem {
  background: linear-gradient(145deg, #fff, #fff8ec);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 40px 36px;
  transition: .4s;
}

.missionVisionItem:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: -4px 10px 24px rgba(76, 54, 20, .1);
}

.missionVisionItem-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
    background: radial-gradient(circle, rgba(198, 154, 58, .14), rgba(198, 154, 58, .04));
}

.missionVisionItem-icon svg {
    width: 70px;
    height: 70px;
}

.missionVisionItem h3 {
  font: 600 26px "Cormorant Unicase", serif;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.missionVisionItem p {
  color: #46433e;
  font-size: 16px;
  font-family: "Fraunces", serif;
  font-weight: 300;
  line-height: 1.75;
  margin: 0;
}

/* ABOUT — MISSION / VISION section end */




/* ABOUT — VISIT US CTA section start */

.visitUsCta {
  padding: 0;
  position: relative;
  background: linear-gradient(rgba(10, 8, 4, .72), rgba(10, 8, 4, .72)), url(../img/jewels-and-gold-coins.webp) center/cover no-repeat;
}

.visitUsCta-inner {
  margin: 0 auto;
  text-align: center;
  padding: 90px 40px;
}

.visitUsCta-title {
  font: 600 clamp(30px, 4vw, 42px)/1.2 "Cormorant Unicase", serif;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}

.visitUsCta-inner p {
    color: #faf0e0;
    font-size: 16px;
    font-family: "Fraunces", serif;
    font-weight: 300;
    line-height: 1.75;
    margin: 0 auto 30px;
    max-width: 750px;
}

.visitUsCta-btn {
  display: inline-flex;
  background: var(--gold);
  color: #1a1408;
  padding: 14px 34px;
  font: 600 12px "DM Sans", sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: .3s;
}

.visitUsCta-btn:hover {
  background: var(--gold2);
}

@media (max-width: 700px) {
  .visitUsCta-inner {
    padding: 60px 24px;
  }
}

/* ABOUT — VISIT US CTA section end */







/* inner banner section start  */


.innerBanner {
    position: relative;
    overflow: hidden;
    padding: 250px 0 180px;
    background: radial-gradient(circle at 78% 30%, rgba(237, 125, 33, .12), transparent 24%),
    radial-gradient(circle at 62% 45%, rgba(231, 189, 97, .16), transparent 30%),
    #fffdf9;
    background-image: url(../img/bg.png);
    background-size: cover;
}

.innerBannerGlow {
  position: absolute;
  right: 12%;
  top: 10%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(237, 125, 33, .13);
  filter: blur(90px);
  pointer-events: none;
}

.innerBannerWrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

.innerBanner-head {
    font-size: 75px !important;
    line-height: 70px !important;
    text-align: center !important;
    max-width: 100% !important;
}

.innerBanner-head span {
  display: inline; 
}

.innerBannerText .innerBanner-para {
    margin: 20px auto 0;
    max-width: 650px;
    font-size: 20px;
}

@media (max-width: 900px) {
  .innerBanner {
    padding: 150px 0 60px;
  }
}


/* inner banner section end  */






/* inner service section start  */


.innerService {
    background: #fff9ef;
    padding: 80px 0;
}

.innerServiceCard {
    height: 100%;
    background: linear-gradient(145deg, #fff, #fff8ec);
    border: 1px solid rgb(198 154 58 / 36%);
    padding: 25px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 0.2s ease-in-out;
}

.innerServiceCard:hover {
    transform: translateY(-8px);
    border: 1px solid rgb(187 128 0);
}

.innerServiceCard-img {
    width: 100%;
    aspect-ratio: 4 / 2;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 30px;
    background: #f3e7cf;
}

.innerServiceCard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.innerServiceCard:hover .innerServiceCard-img img {
  transform: scale(1.06);
}

.innerServiceNum {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: .2em;
    margin-bottom: 10px;
    display: block;
}

.innerServiceCard h3 {
    font: 600 30px "Cormorant Unicase", serif;
    letter-spacing: -.01em;
    margin: 0 0 12px;
}

.innerServiceCard p {
    color: #46433e;
    font-size: 16px;
    font-family: "Fraunces", serif;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}


/* inner service section end  */




/* WHY CHOOSE US sections start  */

.innerServiceWhyChoose {
    padding: 80px 0;
    background: #fff9ef;
}

.innerServiceWhyChoose-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.innerServiceWhyChoose-head h2 {
    font-size: 54px;
    line-height: 1.2;
    font-family: "Cormorant Unicase", serif;
    font-weight: 600;
}

.innerServiceWhyChoose-head span {
    display: inline-block;
}

.innerServiceWhyChooseCard {
    height: 340px;
    background: linear-gradient(145deg, #fff, #fff8ec);
    border: 1px solid rgba(255, 255, 255, .08);
    border-top: 2px solid transparent;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: .5s;
    box-shadow: rgba(76, 54, 20, 0.08) -4px 10px 11px 4px;
    border-radius: 12px;
}

.innerServiceWhyChooseCard:hover {
    transform: translateY(-8px);
    border: 1px solid rgb(198 154 58 / 54%);
    border-top: 3px solid #c69a3a;
}

.innerServiceWhyChooseCard:hover img {
    filter: brightness(0) invert(1);
}

.innerServiceWhyChooseCard-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 154, 58, .14), rgba(198, 154, 58, .04));
    color: var(--gold);
    transition: .5s;
}

.innerServiceWhyChooseCard:hover .innerServiceWhyChooseCard-icon {
  background: var(--gold);
  color: #fff;
}

.innerServiceWhyChooseCard-icon svg, .innerServiceWhyChooseCard-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.innerServiceWhyChooseCard h3 {
    font: 600 20px "Cormorant Unicase", serif;
    letter-spacing: -.01em;
    margin: 0 0 12px;
    line-height: 1.4;
}

.innerServiceWhyChooseCard p {
    color: #46433e;
    font-size: 14px;
    font-family: "Fraunces", serif;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}



/* WHY CHOOSE US sections end  */




/* inner service form section start  */



.innerServiceContact {
  padding: 100px 0 150px;
}

.innerServiceContactWrap {
  align-items: center;
}

.innerServiceContacttag {
    color: #c69a3a;
    margin-bottom: 20px;
    font-size: 16px;
}

.innerServiceContactText h2 {
    font-size: 46px;
    line-height: 1.2;
    font-family: "Cormorant Unicase", serif;
    font-weight: 600;
}

.innerServiceContactText p {
    color: #46433e;
    font-size: 16px;
    font-family: "Fraunces", serif;
    font-weight: 300;
    line-height: 1.6;
    margin: 30px 0;
}

.innerServiceContactForm {
    background: #ffffff78;
    border: 1px solid #dac8a1;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: -4px 10px 24px rgba(76, 54, 20, .08);
}

.innerServiceContactField {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.innerServiceContactField label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.innerServiceContactField input,
.innerServiceContactField textarea {
  font: 15px "Fraunces", serif;
  font-weight: 300;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 16px;
  outline: none;
  transition: .3s;
  resize: vertical;
}

.innerServiceContactField input:focus,
.innerServiceContactField textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 154, 58, .12);
}

.innerServiceContactSubmit {
  align-self: flex-start;
  cursor: pointer;
  font-family: inherit;
}

@media (max-width: 900px) {
  .innerServiceContact {
    padding: 70px 0 90px;
  }
  .innerServiceContactForm {
    padding: 28px;
  }
}



/* inner service form section end  */




/* OLD GOLD BUYER section start*/


.oldGoldIntro {
  padding: 80px 0;
}

.oldGoldIntroWrap {
  align-items: center;
}

.oldGoldAccordion-title {
    font-size: 54px;
    line-height: 1.2;
    font-family: "Cormorant Unicase", serif;
    font-weight: 600;
}

.oldGoldIntroText p {
    color: #46433e;
    font-size: 16px;
    font-family: "Fraunces", serif;
    font-weight: 300;
    line-height: 1.6;
    margin: 20px 0 0;
}

.oldGoldIntroCall {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 25px;
  height: 100%;
  transition: .4s;
}

.oldGoldIntroCall-img img {
    width: 400px;
    height: 150px;
    object-fit: cover;
    display: block;
}

.oldGoldIntroCall-label {
    border: 1px solid var(--gold);
    padding: 12px 18px;
    display: inline-flex;
    font: 600 20px "Cormorant Unicase", serif;
    letter-spacing: .04em;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--gold);
    transition: .3s;
}

.oldGoldIntroCall-label:hover {
    background: var(--gold);
    color: #111;
}

@media (max-width: 900px) {
  .oldGoldIntro {
    padding: 60px 0 70px;
  }
}



/* OLD GOLD BUYER section end*/





/* OLD GOLD BUYER — WHY CHOOSE ACCORDION section start  */



.oldGoldAccordion {
  padding: 80px 0;
}

.oldGoldAccordion-head {
  text-align: center;
  margin: 0 auto 60px;
}

.oldGoldAccordion-title {
    font-size: 54px;
    line-height: 1.2;
    font-family: "Cormorant Unicase", serif;
    font-weight: 600;
}

.oldGoldAccordionList {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.oldGoldAccordionItem {
  background: linear-gradient(145deg, #fff, #fff8ec);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 26px;
  transition: .3s;
}

.oldGoldAccordionItem[open] {
  border-color: var(--gold);
}

.oldGoldAccordionItem summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    font: 600 19px "Cormorant Unicase", serif;
    font-size: 22px;
    letter-spacing: -.01em;
}

.oldGoldAccordionItem summary::-webkit-details-marker {
  display: none;
}

.oldGoldAccordionItem-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--gold);
  transition: transform .3s;
}

.oldGoldAccordionItem[open] .oldGoldAccordionItem-arrow {
  transform: rotate(180deg);
}

.oldGoldAccordionItem-body {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height .35s ease, opacity .3s ease;
}

.oldGoldAccordionItem p {
    margin: 0 0 24px;
    color: #46433e;
    font-size: 16px;
    font-family: "Fraunces", serif;
    font-weight: 300;
    line-height: 1.75;
}

@media (max-width: 700px) {
  .oldGoldAccordionItem summary {
    font-size: 17px;
  }
}



/* OLD GOLD BUYER — WHY CHOOSE ACCORDION section end  */




/* OLD GOLD BUYER — TRUST/CLOSING section start  */


.oldGoldTrust {
  padding: 80px 0;
}

.oldGoldTrust-title {
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0;
}

.oldGoldTrust-text p {
  color: #46433e;
  font-size: 16px;
  font-family: "Fraunces", serif;
  font-weight: 300;
  line-height: 1.65;
  margin: 20px 0 0;
}

.oldGoldTrust-cta {
  border: 1px solid var(--gold);
  padding: 14px 28px;
  display: inline-flex;
  font: 600 16px "Cormorant Unicase", serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: .3s;
}

.oldGoldTrust-cta:hover {
  background: var(--gold);
  color: #111;
}

@media (max-width: 900px) {
  .oldGoldTrust {
    padding: 50px 0 70px;
  }
  .oldGoldTrust-cta {
    width: 100%;
    justify-content: center;
  }
}

/* OLD GOLD BUYER — TRUST/CLOSING section end  */






/* OLD GOLD BUYER — STEPS SECTION section start  */


.oldGoldSteps {
  padding: 80px 0;
}

.oldGoldStepsList {
  justify-content: center;
}

.oldGoldProcess {
  padding: 80px 0;
}

.oldGoldProcessList {
  justify-content: center;
}

.oldGoldSteps-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.oldGoldSteps-title {
    font-size: 54px;
    line-height: 1.0;
    text-transform: uppercase;
    font-family: "Cormorant Unicase", serif;
    font-weight: 600;
}

.oldGoldSteps-head p {
  color: #46433e;
  font-size: 16px;
  font-family: "Fraunces", serif;
  font-weight: 300;
  line-height: 1.65;
  margin: 20px 0 0;
}

.oldGoldStep {
  position: relative;
  background: linear-gradient(145deg, #fff, #fff8ec);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 34px 22px 26px;
  text-align: center;
  transition: .4s;
}

.oldGoldStep:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: -4px 10px 24px rgba(76, 54, 20, .1);
}

.oldGoldStep-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 154, 58, .14), rgba(198, 154, 58, .04));
  color: var(--gold);
  transition: .4s;
}

.oldGoldStep:hover .oldGoldStep-icon {
  background: var(--gold);
  color: #fff;
}

.oldGoldStep-icon svg {
    width: 40px;
    height: 40px;
}

.oldGoldStep-num {
    font-size: 20px;
    letter-spacing: .2em;
    color: var(--gold);
    margin-bottom: 10px;
}

.oldGoldStep h3 {
    font: 600 24px "Cormorant Unicase", serif;
    letter-spacing: -.01em;
    margin: 0 0 10px;
}

.oldGoldStep p {
    color: #46433e;
    font-size: 16px;
    font-family: "Fraunces", serif;
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
}




/* OLD GOLD BUYER — STEPS SECTION section end  */




/* inner contact section start  */


.inner-contact-form-section {
  padding: 80px 5vw;
  background: #faf6ee;
}

/* ---------- Form (left) ---------- */
.inner-contact-form-wrapper {
  background: #ffffff;
  border: 1px solid #ece5d6;
  border-radius: 14px;
  padding: 55px 45px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .05);
}

.inner-contact-form h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: #1a1a1a;
  letter-spacing: .02em;
  margin-bottom: 34px;
  position: relative;
}

.inner-contact-form h2:after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold, #c9973a);
  margin-top: 16px;
}

.inner-contact-form-group {
  margin-bottom: 22px;
}

.inner-contact-form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #a37f2c;
  margin-bottom: 9px;
  font-weight: 600;
}

.inner-contact-form-group input,
.inner-contact-form-group select,
.inner-contact-form-group textarea {
  width: 100%;
  background: #faf8f3;
  border: 1px solid #e4dcc9;
  border-radius: 8px;
  color: #1a1a1a;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  padding: 12px 15px;
  transition: .3s;
}

.inner-contact-form-group textarea {
  resize: none;
}

.inner-contact-form-group input::placeholder,
.inner-contact-form-group textarea::placeholder {
  color: #a8a294;
}

.inner-contact-form-group input:focus,
.inner-contact-form-group select:focus,
.inner-contact-form-group textarea:focus {
  outline: none;
  border-color: var(--gold, #c9973a);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 151, 58, .12);
}

.inner-contact-form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9973a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 40px;
  cursor: pointer;
}

.inner-contact-form-submit {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #e8a13d, #c9973a);
  color: #fff;
  padding: 15px 18px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: .3s;
  margin-top: 8px;
  font-weight: 600;
}

.inner-contact-form-submit:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(201, 151, 58, .3);
}

/* ---------- Info (right) ---------- */
.inner-contact-info {
  background: #f3ecdd;
  border: 1px solid #e8dfc9;
  border-radius: 14px;
  padding: 55px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  color: #55503f;
}

.inner-contact-info-label {
  display: block;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #a37f2c;
  margin-bottom: 10px;
  font-weight: 600;
}

.inner-contact-info-block h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 500;
}

.inner-contact-info-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #6b6552;
    margin: 0;
}

.inner-contact-info-phone,
.inner-contact-info-email {
  font-size: 18px;
  color: #1a1a1a;
  text-decoration: none;
  transition: .3s;
}

.inner-contact-info-phone:hover,
.inner-contact-info-email:hover {
  color: #c9973a;
}

.inner-contact-socials {
  display: flex;
  gap: 14px;
}

.inner-contact-socials a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8cdb0;
  border-radius: 50%;
  color: #55503f;
  transition: .3s;
}

.inner-contact-socials a svg {
    width: 25px;
    height: 25px;
}

.inner-contact-socials a:hover {
  background: #c9973a;
  border-color: #c9973a;
  color: #fff;
}

.inner-contact-info-block + .inner-contact-info-block {
  border-top: 1px solid #e0d5b8;
  padding-top: 34px;
}

@media (max-width: 767px) {
  .inner-contact-form-section {
    padding: 70px 6vw;
  }

  .inner-contact-form-wrapper,
  .inner-contact-info {
    padding: 36px 26px;
  }

  .inner-contact-form h2 {
    font-size: 24px;
  }
}



.features-section {
  padding: 80px 0;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #ece5d6;
  border-radius: 14px;
  padding: 45px 34px;
  height: 100%;
  text-align: left;
  transition: .35s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .03);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #c9973a;
  box-shadow: 0 20px 40px rgba(201, 151, 58, .12);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3ecdd, #ece0c4);
  margin-bottom: 26px;
  transition: .35s;
}

.feature-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: .35s;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #e8a13d, #c9973a);
}

.feature-card:hover .feature-icon img {
  filter: invert(1);
}

.feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 14px;
  font-weight: 500;
}

.feature-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #6b6552;
  margin: 0;
}

@media (max-width: 767px) {
  .features-section {
    padding: 70px 6vw;
  }

  .feature-card {
    padding: 34px 26px;
  }
}



.map-section {
  padding: 100px 5vw;
  background: #ffffff;
}

/* ---------- Left info panel ---------- */
.map-info {
  background: #faf6ee;
  border: 1px solid #ece5d6;
  border-radius: 14px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #55503f;
}

.map-info-label {
  display: block;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #a37f2c;
  margin-bottom: 18px;
  font-weight: 600;
}

.map-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 34px;
}

.map-info-block {
  border-top: 1px solid #e4dcc9;
  padding-top: 24px;
  margin-bottom: 34px;
}

.map-info-block h3 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 500;
}

.map-info-block p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b6552;
    margin: 0;
}

.map-info-btn {
  display: inline-block;
  align-self: flex-start;
  border: 1px solid #c9973a;
  color: #1a1a1a;
  padding: 13px 26px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: .3s;
}

.map-info-btn:hover {
  background: #c9973a;
  color: #fff;
}

/* ---------- Right map ---------- */
.map-embed-wrapper {
  min-height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ece5d6;
}

.map-embed-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

@media (max-width: 991px) {
  .map-embed-wrapper,
  .map-embed-wrapper iframe {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .map-section {
    padding: 70px 6vw;
  }

  .map-info {
    padding: 40px 28px;
  }

  .map-info h2 {
    font-size: 24px;
  }
}




@media only screen and (min-width: 300px) and (max-width: 576.98px) {
 
  
.hero {
    min-height: clamp(600px, 1610px - 135.5vw, 930px) !important;
}

.heroCopy {
    padding-top: 0vh;
}

.heroLogo {
    width: 100px;
    object-fit: cover;
    height: 120px;
    margin-bottom: 15px;
}

h1 {
    /* 300px wide -> ~34px,  576.98px wide -> ~46px */
    font-size: clamp(34px, 4.33vw + 21px, 46px) !important;
    line-height: 1.2 !important;
}

.heroCopy {
    padding-top: 0vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.heroSub {
    font-size: 16px;
    line-height: 1.7;
    color: #141414;
    max-width: 430px;
    margin: 15px 0;
}

.heroImg {
    height: clamp(330px, 40.7vw + 240px, 425px);
    width: 90vw;
    right: clamp(30px, 9vw + 3px, 55px);
    bottom: clamp(-100px, -14.4vw - 16px, -60px);
}

.bangle {
    width: clamp(250px, 64vw, 410px);
    right: clamp(-155px, -27vw, -80px);
    top: clamp(66%, 68% - 4.16vw, 72%);
}


.neck {
    background-image: url(../img/neck.png);
    background-repeat: no-repeat;
    background-size: 170px;
    top: 0px;
    filter: contrast(0.89) saturate(1.04) drop-shadow(0 34px 48px rgba(26, 18, 8, 0.4));
    text-align: center;
}

.intro {
    margin-top: 80px;
}


.trustItem b {
    color: var(--gold);
    font-size: 28px;
    letter-spacing: .15em;
}

.kicker {
  text-align: center;
}

.big {
    font: 600 clamp(30px, 6vw, 65px)/.95 "Cormorant Unicase", serif;
    letter-spacing: -.04em;
    margin: 0;
    text-align: center;
}

.services {
    text-align: center;
}

.services br, .trustItem-section br, .pledge br, .process br, .tony br, .branches br {
    display: none;
}

.card {
    min-height: 450px;
    padding: 20px;
}

.num {
    position: absolute;
    top: 34px;
    left: 18px;
}

.card-bangle {
    position: absolute;
    right: 0;
    top: 25px;
    width: clamp(150px, 32vw + 110px, 290px);
    pointer-events: none;
    user-select: none;
}

.card-pledge {
    position: absolute;
    right: 0;
    top: 25px;
    width: clamp(110px, 24.4vw + 67px, 210px);
    pointer-events: none;
    user-select: none;
}

.card h3 {
    font-size: 30px;
}


.trustItem-section .kicker {
  text-align: center;
}

.trustItem-section .big {
  text-align: center;
}



.pledge .kicker {
  text-align: center;
}

.pledge .big {
  text-align: center;
}

.pledge .muted {
  text-align: center;
}


.process .kicker {
  text-align: center;
}

.process .big {
  text-align: center;
}




.pad-left {
    padding: 0 !important;
}

.tonyPhoto img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .4));
}

.quote {
    font: 500 clamp(30px, 5vw, 68px)/1.03 "Playfair Display";
    letter-spacing: -.04em;
}


.branchBox {
    align-items: flex-start;
    flex-direction: column;
    text-align: center;
}


.footerBottom {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.footerTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.footerRight {
    align-items: center;
}

.credit {
    display: flex;
    align-items: center;
    justify-content: center;
}




.innerBannerText .innerBanner-para {
    margin: 20px auto 0;
    max-width: 650px;
    font-size: 14px;
}



/* inner about us section  */

.innerAboutUsTrust {
    padding: 80px 0;
}

.innerAboutUsTrust-title  {
  display: none;
}

.innerAboutUsTrust-text {
    max-width: none;
    padding: 0;
}

.innerAboutUsTrust-text h3 {
  font-size: 20px;
}

.innerAboutUsTrust-text p {
    color: #46433e;
    font-size: 14px;
    margin: 0 0 20px;
}

.innerAboutUsTrust-intro p {
    color: #46433e;
    font-size: 14px;
    margin: 0;
}

.innerAboutUsTrust-intro {
    margin-left: 0;
    max-width: none;
    padding: 0 0 30px;
}



.missionVisionItem {
    background: linear-gradient(145deg, #fff, #fff8ec);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 25px;
    transition: .4s;
}

.missionVisionItem p {
    color: #46433e;
    font-size: 14px;
    margin: 0;
}


.ourLegacyTab-label {
    font-size: 18px;
}

.ourLegacyTabPanel {
    font-size: 14px;
    margin: 0;
}


.oldGoldSteps-title {
    font-size: 30px;
    line-height: 1.2;
    text-transform: uppercase;
}



.founderMsg {
    padding: 80px 0;
}

.founderMsgtag {
    color: #c69a3a;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
}

.founderMsg-title {
    font-size: 30px;
    margin: 0 0 22px;
    text-align: center;
}

.founderMsg-text p {
    color: #46433e;
    font-size: 14px;
    margin: 0 0 16px;
}

.oldGoldAccordion-title {
    font-size: 30px;
    line-height: 1.2;
}

.oldGoldAccordionItem p {
    margin: 0 0 24px;
    color: #46433e;
    font-size: 14px;
}





/* inner service section   */


.innerServiceCard h3 {
    font: 600 22px "Cormorant Unicase", serif;
    margin: 0 0 12px;
}

.innerServiceCard p {
    color: #46433e;
    font-size: 14px;
}


.innerServiceWhyChoose-head h2 {
    font-size: 30px;
    line-height: 1.2;
}

.innerServiceWhyChooseCard {
    height: 100%;
}

.innerServiceWhyChooseCard-icon {
    width: 80px;
    height: 80px;
}

.innerServiceWhyChooseCard-icon svg, .innerServiceWhyChooseCard-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}


.innerServiceContactText h2 {
    font-size: 26px;
    line-height: 1.2;
}

.innerServiceContactText p {
    color: #46433e;
    font-size: 14px;
    margin: 30px 0;
}

.oldGoldIntroText p {
    color: #46433e;
    font-size: 14px;
    margin: 20px 0 0;
}




.oldGoldIntroCall-label {
    font-size: 16px;
}


.oldGoldTrust-title {
    font-size: 30px;
    margin: 0;
}

.oldGoldTrust-text p {
    color: #46433e;
    font-size: 14px;
    margin: 20px 0 0;
}

.oldGoldTrust-cta {
    width: fit-content !important;
    justify-content: center;
}

.oldGoldTrust-cta {
    border: 1px solid var(--gold);
    padding: 14px 28px;
    display: inline-flex;
    font: 600 14px "Cormorant Unicase", serif;
}



/* inner page contact section   */


.inner-contact-form-section {
    padding: 80px 0;
}





  
}








@media only screen and (min-width: 577px) and (max-width: 768.98px) {


.hero {
    min-height: clamp(700px, 150.8vw + 9px, 1000px) !important;
}

.heroCopy {
    padding-top: 0vh;
}

.heroLogo {
    width: clamp(100px, 15.6vw + 10px, 130px);
    object-fit: cover;
    height: clamp(120px, 18.7vw + 12px, 156px);
}

h1 {
    /* 577px wide -> ~46px,  768.98px wide -> ~58px */
    font-size: clamp(46px, 6.25vw + 10px, 58px) !important;
    line-height: 1.2 !important;
}

.heroSub {
    font-size: clamp(16px, 1.04vw + 10px, 18px);
    line-height: 1.7;
    color: #c4beb2;
    max-width: unset;
    margin: 20px 0;
}

.heroImg {
    height: clamp(460px, 60.3vw + 30px, 560px);
    width: min(88vw, 640px);
    right: clamp(55px, 18.2vw - 50px, 90px);
    bottom: clamp(-100px, 15.6vw - 190px, -70px);
}

.bangle {
    width: clamp(410px, 60vw, 560px);
    right: clamp(-210px, -27vw, -155px);
    top: clamp(58%, 90% - 4.16vw, 55%);
}


.neck {
    background-image: url(../img/neck.png);
    background-repeat: no-repeat;
    background-size: 170px;
    top: 0px;
    filter: contrast(0.89) saturate(1.04) drop-shadow(0 34px 48px rgba(26, 18, 8, 0.4));
}

.intro {
    margin-top: 80px;
}



.trustItem b {
    color: var(--gold);
    font-size: 28px;
    letter-spacing: .15em;
}



.card {
    min-height: 450px;
    padding: 20px;
}

.num {
    position: absolute;
    top: 34px;
    left: 18px;
}

.card-bangle {
    position: absolute;
    right: 0;
    top: 25px;
    width: clamp(200px, 50.3vw + 38px, 310px);
    pointer-events: none;
    user-select: none;
}

.card-pledge {
    position: absolute;
    right: 0;
    top: 25px;
    width: clamp(150px, 33.4vw + 25px, 230px);
    pointer-events: none;
    user-select: none;
}

.card h3 {
    font-size: 30px;
}


.pad-left {
    padding-left: 0;
}


.tonyPhoto {
    height: 600px;
    order: 2;
}

.tonyPhoto img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .4));
}


.footerBottom {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.credit {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* inner about us section  */

.innerAboutUsTrust {
    padding: 80px 0;
}

.innerAboutUsTrust-title  {
  display: none;
}

.innerAboutUsTrust-text {
    max-width: none;
    padding: 0;
}

.innerAboutUsTrust-text h3 {
  font-size: 20px;
}



.innerAboutUsTrust-intro {
    margin-left: 0;
    max-width: none;
    padding: 0 0 30px;
}



.missionVisionItem {
    background: linear-gradient(145deg, #fff, #fff8ec);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 25px;
    transition: .4s;
}

.missionVisionItem p {
    color: #46433e;
    font-size: 16px;
    margin: 0;
}


.oldGoldSteps-title {
    font-size: 40px;
    line-height: 1.2;
    text-transform: uppercase;
}


.founderMsg-title {
    font-size: 40px;
    margin: 0 0 22px;
}

.founderMsg-text p {
    color: #46433e;
    font-size: 16px;
    margin: 0 0 16px;
}



.oldGoldAccordion-title {
    font-size: 40px;
    line-height: 1.2;
}

.oldGoldAccordionItem p {
    margin: 0 0 24px;
    color: #46433e;
    font-size: 16px;
}





/* inner service section   */


.innerServiceCard h3 {
    font: 600 26px "Cormorant Unicase", serif;
    margin: 0 0 12px;
}

.innerServiceCard p {
    color: #46433e;
    font-size: 16px;
}


.innerServiceWhyChoose-head h2 {
    font-size: 40px;
    line-height: 1.2;
}

.innerServiceWhyChooseCard {
    height: 100%;
}

.innerServiceWhyChooseCard-icon {
    width: 80px;
    height: 80px;
}

.innerServiceWhyChooseCard-icon svg, .innerServiceWhyChooseCard-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}


.innerServiceContactText h2 {
    font-size: 34px;
    line-height: 1.2;
}

.innerServiceContactText p {
    color: #46433e;
    font-size: 16px;
    margin: 30px 0;
}



.oldGoldIntroText p {
    color: #46433e;
    font-size: 14px;
    margin: 20px 0 0;
}




.oldGoldIntroCall-label {
    font-size: 16px;
}


.oldGoldTrust-title {
    font-size: 40px;
    margin: 0;
}

.oldGoldIntroText p {
    color: #46433e;
    font-size: 16px;
    margin: 20px 0 0;
}

.oldGoldTrust-cta {
    width: fit-content !important;
    justify-content: center;
}

.oldGoldTrust-cta {
    border: 1px solid var(--gold);
    padding: 14px 28px;
    display: inline-flex;
    font: 600 14px "Cormorant Unicase", serif;
}



/* inner page contact section   */


.inner-contact-form-section {
    padding: 80px 0;
}


  
}





@media only screen and (min-width: 769px) and (max-width: 991.98px) {


.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    gap: 15px;
    z-index: 40;
    padding: 25px 3vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}

.navlinks {
    display: flex;
    gap: 14px;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #c89d41;
}

.navlinks a {
    position: relative;
    color: #d5d0c6 !important;
    font-size: 16px;
}

.logo {
    font-family: "Playfair Display";
    letter-spacing: .08em;
    font-size: 19px;
    width: 180px;
}


.hero {
    min-height: clamp(720px, 150.8vw + 9px, 740px) !important;
}

.heroCopy {
    padding-top: 10vh;
}

.scroll {
    position: absolute;
    left: 1vw;
}

.heroLogo {
    width: clamp(100px, 15.6vw + 10px, 130px);
    object-fit: cover;
    height: clamp(120px, 18.7vw + 12px, 156px);
}

h1 {
    font-size: clamp(46px, 6.25vw + 10px, 50px) !important;
    line-height: 1.2 !important;
}

.heroSub {
    font-size: clamp(16px, 1.04vw + 10px, 18px);
    line-height: 1.7;
    color: #c4beb2;
    margin: 20px 0;
}

.heroImg {
    height: clamp(460px, 70.3vw + 30px, 560px);
    width: min(88vw, 660px);
    right: -20%;
    bottom: 0;
}

.bangle {
    width: clamp(410px, 60vw, 560px);
    right: clamp(-210px, -27vw, -155px);
    top: clamp(58%, 90% - 4.16vw, 55%);
}



.neck {
    background-image: url(../img/neck.png);
    background-repeat: no-repeat;
    background-size: 210px;
    top: 0px;
    filter: contrast(0.89) saturate(1.04) drop-shadow(0 34px 48px rgba(26, 18, 8, 0.4));
}

.intro {
    margin-top: 111px;
}

.intro {
    display: block;
    grid-template-columns: 1.05fr .8fr;
    gap: 1vw;
    align-items: end;
}



.trustItem b {
    color: var(--gold);
    font-size: 28px;
    letter-spacing: .15em;
}



.card {
    min-height: 450px;
    padding: 20px;
}

.num {
    position: absolute;
    top: 34px;
    left: 18px;
}

.card-bangle {
    position: absolute;
    right: 0;
    top: 25px;
    width: clamp(200px, 50.3vw + 38px, 310px);
    pointer-events: none;
    user-select: none;
}

.card-pledge {
    position: absolute;
    right: 0;
    top: 25px;
    width: clamp(150px, 33.4vw + 25px, 180px);
    pointer-events: none;
    user-select: none;
}

.card h3 {
    font-size: 30px;
}


.pad-left {
    padding-left: 0;
}


.tonyPhoto {
    height: 700px;
    order: 0;
}

.tonyPhoto img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .4));
}


.footerBottom {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.credit {
    display: flex;
    align-items: center;
    justify-content: center;
}



/* inner about us section  */

.innerAboutUsTrust {
    padding: 80px 0;
}

.innerAboutUsTrust-title  {
  display: none;
}

.innerAboutUsTrust-text {
    max-width: none;
    padding: 0;
}

.innerAboutUsTrust-text h3 {
  font-size: 20px;
}



.innerAboutUsTrust-intro {
    margin-left: 0;
    max-width: none;
    padding: 0 0 30px;
}



.missionVisionItem {
    background: linear-gradient(145deg, #fff, #fff8ec);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 25px;
    transition: .4s;
}

.missionVisionItem p {
    color: #46433e;
    font-size: 16px;
    margin: 0;
}


.oldGoldSteps-title {
    font-size: 40px;
    line-height: 1.2;
    text-transform: uppercase;
}


.founderMsg-title {
    font-size: 40px;
    margin: 0 0 22px;
}

.founderMsg-text p {
    color: #46433e;
    font-size: 16px;
    margin: 0 0 16px;
}



.oldGoldAccordion-title {
    font-size: 40px;
    line-height: 1.2;
}

.oldGoldAccordionItem p {
    margin: 0 0 24px;
    color: #46433e;
    font-size: 16px;
}












  
}








@media only screen and (min-width: 991px) and (max-width: 1200.98px) {


.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    gap: 15px;
    z-index: 40;
    padding: 25px 3vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}

.navlinks {
    display: flex;
    gap: 14px;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #c89d41;
}

.logo {
    font-family: "Playfair Display";
    letter-spacing: .08em;
    font-size: 19px;
    width: 180px;
}


.hero {
    min-height: clamp(720px, 150.8vw + 9px, 740px) !important;
}

.heroCopy {
    padding-top: 10vh;
}

.scroll {
    position: absolute;
    left: 1vw;
}

.heroLogo {
    width: clamp(100px, 15.6vw + 10px, 130px);
    object-fit: cover;
    height: clamp(120px, 18.7vw + 12px, 156px);
}

h1 {
    font-size: clamp(46px, 6.25vw + 10px, 60px) !important;
    line-height: 1.2 !important;
}

.heroSub {
    font-size: clamp(16px, 1.04vw + 10px, 18px);
    line-height: 1.7;
    color: #c4beb2;
    margin: 20px 0;
}

.heroImg {
    height: clamp(460px, 70.3vw + 30px, 600px);
    width: min(88vw, 690px);
    right: -10%;
    bottom: -5%;
}

.bangle {
    width: clamp(410px, 60vw, 560px);
    right: clamp(-210px, -27vw, -155px);
    top: clamp(58%, 90% - 4.16vw, 55%);
}



.neck {
    background-image: url(../img/neck.png);
    background-repeat: no-repeat;
    background-size: 210px;
    top: 0px;
    filter: contrast(0.89) saturate(1.04) drop-shadow(0 34px 48px rgba(26, 18, 8, 0.4));
}

.intro {
    margin-top: 111px;
}

.intro {
    display: block;
    grid-template-columns: 1.05fr .8fr;
    gap: 1vw;
    align-items: end;
}



.trustItem b {
    color: var(--gold);
    font-size: 28px;
    letter-spacing: .15em;
}



.card {
    min-height: 450px;
    padding: 20px;
}

.num {
    position: absolute;
    top: 34px;
    left: 18px;
}

.card-bangle {
    position: absolute;
    right: 0;
    top: 25px;
    width: clamp(200px, 50.3vw + 38px, 310px);
    pointer-events: none;
    user-select: none;
}

.card-pledge {
    position: absolute;
    right: 0;
    top: 25px;
    width: clamp(150px, 33.4vw + 25px, 180px);
    pointer-events: none;
    user-select: none;
}

.card h3 {
    font-size: 30px;
}


.pad-left {
    padding-left: 0;
}


.tonyPhoto {
    height: 700px;
    order: 0;
}

.tonyPhoto img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .4));
}


.footerBottom {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.copyright {
    color: #57534d;
    font-size: 10px;
    letter-spacing: .08em;
    display: flex;
    justify-content: flex-start;
    text-align: left;
}

.credit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
}

  
}




@media only screen and (min-width: 1200px) and (max-width: 1400.98px) {




.hero {
    min-height: clamp(720px, 150.8vw + 9px, 740px) !important;
}

.heroCopy {
    padding-top: 10vh;
}

.scroll {
    position: absolute;
    left: 1vw;
}

.heroLogo {
    width: clamp(100px, 15.6vw + 10px, 130px);
    object-fit: cover;
    height: clamp(120px, 18.7vw + 12px, 156px);
}

h1 {
    font-size: clamp(46px, 6.25vw + 10px, 60px) !important;
    line-height: 1.2 !important;
}

.heroSub {
    font-size: clamp(16px, 1.04vw + 10px, 18px);
    line-height: 1.7;
    color: #c4beb2;
    margin: 20px 0;
}

.heroImg {
    height: clamp(460px, 70.3vw + 30px, 646px);
    width: min(88vw, 680px);
    right: 0%;
    bottom: -5%;
}

.bangle {
    width: clamp(410px, 60vw, 560px);
    right: clamp(-210px, -27vw, -155px);
    top: clamp(58%, 90% - 4.16vw, 55%);
}



.neck {
    background-image: url(../img/neck.png);
    background-repeat: no-repeat;
    background-size: 210px;
    top: 0px;
    filter: contrast(0.89) saturate(1.04) drop-shadow(0 34px 48px rgba(26, 18, 8, 0.4));
}

.intro {
    margin-top: 111px;
}

.intro {
    display: block;
    grid-template-columns: 1.05fr .8fr;
    gap: 1vw;
    align-items: end;
}



.trustItem b {
    color: var(--gold);
    font-size: 28px;
    letter-spacing: .15em;
}



.card {
    min-height: 450px;
    padding: 20px;
}

.num {
    position: absolute;
    top: 34px;
    left: 18px;
}

.card-bangle {
    position: absolute;
    right: 0;
    top: 25px;
    width: clamp(200px, 50.3vw + 38px, 310px);
    pointer-events: none;
    user-select: none;
}

.card-pledge {
    position: absolute;
    right: 0;
    top: 25px;
    width: clamp(150px, 33.4vw + 25px, 180px);
    pointer-events: none;
    user-select: none;
}

.card h3 {
    font-size: 30px;
}


.pad-left {
    padding-left: 0;
}


.tonyPhoto {
    height: 700px;
    order: 0;
}

.tonyPhoto img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .4));
}


.footerBottom {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.copyright {
    color: #57534d;
    font-size: 10px;
    letter-spacing: .08em;
    display: flex;
    justify-content: flex-start;
    text-align: left;
}

.credit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
}

  
}