:root {
  --gold:#c29328;
  --gold-dark:#8d6200;
  --maroon:#1f0d0e;
  --cream:#faf7f2;
  --ink:#1c1917;
  --sans:'Plus Jakarta Sans',system-ui,sans-serif;
  --serif:'Playfair Display','Cormorant Garamond',serif
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth
}

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

button,a,input,textarea {
  font:inherit
}

button {
  cursor:pointer
}

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

.wide {
  max-width:1280px;
  margin:auto
}

.narrow {
  max-width:900px
}

.topbar {
  background:#231214;
  color:#d6d3d1;
  font-size:12px;
  border-bottom:1px solid #3d2326
}

.topbar-inner {
  height:31px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between
}

.topbar a {
  margin-right:24px
}

.topbar a:first-child,.topbar b {
}

.topbar-right {
  display:flex;
  gap:12px
}

.header {
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(250,247,242,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid #e7e5e4;
  box-shadow:0 1px 3px #0000000d
}

.header-inner {
  height:80px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between
}

.brand img {
  height:64px;
  width:auto;
  display:block
}

.icon-button {
  border:0;
  background:none;
  font-size:27px;
  color:#292524
}

.whatsapp-button {
  border:0;
  border-radius:999px;
  background:#25d366;
  color:white;
  padding:11px 17px;
  display:flex;
  gap:8px;
  align-items:center;
  box-shadow:0 2px 5px #0002
}

.hero {
  height:620px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden
}

.hero-image,.hero-shade {
  position:absolute;
  inset:0;
  width:100%;
  height:100%
}

.hero-image {
  object-fit:cover
}

.hero-shade {
  background:linear-gradient(to top,rgba(0,0,0,.72),rgba(0,0,0,.34),rgba(0,0,0,.3))
}

.hero-content {
  z-index:1;
  text-align:center;
  color:#fff;
  padding:40px;
  max-width:850px
}

.hero-badge {
  display:inline-block;
  background:var(--gold-dark);
  color:#fde9aa;
  border:1px solid #e7b549;
  padding:10px 20px;
  letter-spacing:.25em;
  font-weight:600;
  font-size:13px;
  box-shadow:0 8px 20px #0004
}

.hero-content p {
  font-size:20px;
  line-height:1.7;
  font-weight:300;
  margin:28px auto 34px;
  max-width:720px;
  text-shadow:0 2px 8px #000
}

.gold-button {
  display:inline-flex;
  align-items:center;
  gap:16px;
  background:#a37311;
  color:#fff;
  border:1px solid #e7b54980;
  padding:17px 30px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.2em;
  box-shadow:0 14px 30px #0004;
  transition:.25s
}

.gold-button:hover {
  background:#b88219;
  transform:translateY(-2px)
}

.section {
  max-width:1120px;
  margin:auto;
  padding:76px 24px
}

.section-heading {
  text-align:center;
  margin-bottom:38px
}

.section-heading h2 {
  font:600 38px var(--serif);
  letter-spacing:.02em;
  margin:0 0 12px
}

.section-heading p {
  color:#57534e;
  font-size:15px;
  font-weight:300
}

.section-heading i {
  display:block;
  width:64px;
  height:4px;
  border-radius:4px;
  background:var(--gold);
  margin:auto
}

.slider {
  position:relative;
  aspect-ratio:3 / 2;
  background:#1c1917;
  border:1px solid #ded9d2;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 24px 50px #1c191733
}

.slider>img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:opacity .3s
}

.slide-shade {
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.88),rgba(0,0,0,.12) 65%)
}

.slide-copy {
  position:absolute;
  left:40px;
  right:40px;
  bottom:40px;
  color:#fff
}

.slide-copy p {
  font-size:13px;
  color:#fcd34d;
  letter-spacing:.17em;
  margin:0 0 8px
}

.slide-copy h3 {
  font:600 48px var(--serif);
  margin:0;
  text-shadow:0 3px 8px #000
}

.slide-arrow {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:49px;
  height:49px;
  border-radius:50%;
  border:1px solid #ffffff40;
  background:#1c1917aa;
  color:white;
  font-size:34px;
  line-height:1
}

.slide-arrow:hover {
  background:#1c1917
}

.slide-arrow.prev {
  left:22px
}

.slide-arrow.next {
  right:22px
}

.dots {
  position:absolute;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px
}

.dots button {
  border:0;
  width:9px;
  height:9px;
  border-radius:10px;
  padding:0;
  background:#ffffff80;
  transition:.2s
}

.dots button.active {
  width:30px;
  background:var(--gold)
}

.filters {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  margin-top:32px
}

.filters button {
  border:0;
  border-radius:999px;
  background:#e7e5e4;
  color:#44403c;
  padding:9px 16px;
  font-size:13px
}

.filters button.active {
  background:var(--gold-dark);
  color:#fff;
  box-shadow:0 3px 8px #0002;
  transform:scale(1.04)
}

.story {
  background:#f6f2ea;
  border-block:1px solid #e7e1d8
}

.story .section {
  padding-block:76px
}

.story-card {
  background:#fff;
  border:1px solid #e7e5e4;
  border-left:6px solid var(--gold-dark);
  border-radius:2px 16px 16px 2px;
  padding:30px 38px;
  box-shadow:0 2px 5px #0000000d;
  margin-bottom:44px
}

.story-card p {
  font-size:17px;
  line-height:1.75;
  margin:0 0 15px
}

.story-card b {
  display:inline-block;
  border-top:1px solid #eee;
  padding-top:18px;
  color:var(--gold-dark);
  font-size:12px;
  letter-spacing:.18em
}

.stats {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  text-align:center
}

.stats>div>span {
  width:62px;
  height:62px;
  border-radius:16px;
  background:#f0e6d2;
  border:1px solid #d9c59f;
  color:var(--gold-dark);
  display:grid;
  place-items:center;
  margin:auto;
  font-size:25px
}

.stats h3 {
  font:600 28px var(--serif);
  margin:13px 0 5px
}

.stats small {
  font-size:17px;
  font-weight:400
}

.stats p {
  font-size:10px;
  font-weight:700;
  letter-spacing:.1em;
  color:#57534e
}

.gallery {
  display:grid;
  gap:22px
}

.gallery-wide {
  grid-column:1/-1;
  aspect-ratio:3/2!important
}

.gallery-item {
  position:relative;
  padding:0;
  border:1px solid #ddd;
  background:#eee;
  border-radius:16px;
  overflow:hidden;
  aspect-ratio:3/2;
  box-shadow:0 4px 12px #0002
}

.gallery-item img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.6s
}

.gallery-item:hover img {
  transform:scale(1.05)
}

.gallery-item span {
  position:absolute;
  inset:auto 0 0;
  padding:54px 22px 20px;
  text-align:left;
  color:white;
  font-family:var(--serif);
  font-size:22px;
  font-weight:500;
  line-height:1.3;
  letter-spacing:.01em;
  text-shadow:0 2px 7px #000;
  background:linear-gradient(to bottom,transparent,rgba(0,0,0,.86));
  opacity:1;
  transition:.25s
}

.gallery-item:hover span {
  opacity:1
}

.location-title {
  text-align:center;
  font:700 28px var(--serif);
  line-height:1.4;
  margin:36px 0
}

.location-title strong {
  display:block;
  color:var(--gold-dark)
}

.office {
  width:100%;
  max-height:600px;
  aspect-ratio:3/4
}

.location-card {
  width:min(100%,660px);
  margin:24px auto 0;
  background:#fff;
  border:1px solid #e1ded9;
  border-radius:16px;
  padding:18px;
  box-shadow:0 2px 8px #0000000d
}

.address {
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-bottom:20px
}

.address>span {
  background:#fff8e8;
  border:1px solid #eed7a2;
  border-radius:12px;
  padding:12px;
  color:var(--gold-dark);
  font-size:23px
}

.address b {
  font-size:11px;
  color:var(--gold-dark);
  letter-spacing:.1em
}

.address p {
  font-size:13.5px;
  font-weight:700;
  line-height:1.55;
  margin:3px 0
}

.map {
  width:min(100%,600px);
  height:auto;
  aspect-ratio:1200/776;
  margin:0 auto;
  border:1px solid #ccc;
  border-radius:12px;
  overflow:hidden
}

.map a {
  display:block;
  width:100%;
  height:100%
}

.map img {
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center
}

.map-button {
  display:table;
  margin:18px auto 0;
  background:#1c1917;
  color:#fff;
  border-radius:11px;
  padding:14px 22px;
  font-weight:700
}

.map-button:hover {
  background:var(--gold-dark)
}

.contact {
  background:#fbf9f5;
  border-top:1px solid #e7e5e4;
  padding:76px 20px
}

.contact-wrap {
  max-width:580px;
  margin:auto
}

.contact-card {
  background:#fff;
  border:1px solid #e5e2de;
  border-radius:16px;
  padding:31px;
  box-shadow:0 3px 12px #0000000d
}

.contact-card form {
  display:flex;
  flex-direction:column;
  gap:23px
}

.contact-card label {
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em;
  color:#44403c
}

.contact-card input,.contact-card textarea {
  display:block;
  width:100%;
  margin-top:8px;
  border:1px solid #e1ded9;
  border-radius:9px;
  background:#f8f6f0;
  padding:13px 14px;
  color:#1c1917;
  outline:0
}

.contact-card input:focus,.contact-card textarea:focus {
  border-color:var(--gold);
  box-shadow:0 0 0 2px #c2932833;
  background:white
}

.contact-card form>button {
  border:0;
  background:#d4a029;
  color:#fff;
  border-radius:9px;
  padding:16px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em
}

.form-success {
  text-align:center;
  padding:25px 8px;
  display:none
}

.form-success>span {
  display:grid;
  place-items:center;
  margin:auto;
  width:64px;
  height:64px;
  border-radius:50%;
  background:#fef3c7;
  color:var(--gold-dark);
  font-size:32px
}

.form-success h3 {
  font:600 28px var(--serif)
}

.form-success p {
  font-size:14px;
  color:#57534e;
  line-height:1.6
}

.form-success button {
  border:0;
  background:transparent;
  color:var(--gold-dark);
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em
}

footer {
  background:var(--maroon);
  color:#d6d3d1;
  padding:60px 25px 24px
}

.footer-logo {
  text-align:center;
  border-bottom:1px solid #3d1f21;
  padding-bottom:38px
}

.footer-logo img {
  height:70px
}

.footer-logo span {
  display:block;
  color:#d4af37;
  font-size:10px;
  letter-spacing:.2em;
  font-weight:600
}

.footer-grid {
  display:grid;
  grid-template-columns:1fr 2fr 1fr;
  gap:50px;
  padding:42px 0;
  border-bottom:1px solid #3d1f21;
  font-size:12px
}

.footer-grid h4 {
  color:#d4af37;
  font-size:11px;
  letter-spacing:.2em;
  margin:0 0 18px
}

.footer-grid a {
  display:block;
  margin:0 0 11px
}

.footer-grid a:hover {
  color:#fde68a
}

.footer-varieties #footerVarieties {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:11px 28px
}

.footer-grid p {
  line-height:1.7
}

.copyright {
  text-align:center;
  padding-top:22px;
  font-size:11px;
  color:#78716c
}

.drawer {
  display:none;
  position:fixed;
  inset:0;
  z-index:60
}

.drawer.open {
  display:block
}

.drawer-backdrop,.modal-bg {
  position:absolute;
  inset:0;
  border:0;
  background:#1c1917a8;
  backdrop-filter:blur(2px)
}

.drawer-panel {
  position:relative;
  width:min(260px,88vw);
  height:100%;
  background:var(--cream);
  padding:25px;
  box-shadow:14px 0 40px #0004;
  overflow:auto
}

.drawer-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid #ddd;
  padding-bottom:20px
}

.drawer-head img {
  height:48px
}

.drawer-head button,.wa-head>button {
  border:0;
  background:transparent;
  font-size:30px
}

.eyebrow {
  color:var(--gold-dark);
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
  margin-top:27px
}

.drawer nav a {
  display:flex;
  justify-content:space-between;
  padding:14px 10px;
  border-radius:8px;
  font:500 18px var(--serif)
}

.drawer nav a:hover {
  background:#e7e5e4
}

.quick-inquiry {
  margin-top:30px;
  border-top:1px solid #ddd;
  padding-top:23px;
  font-size:12px;
  line-height:1.5
}

.quick-inquiry button {
  width:100%;
  border:0;
  border-radius:8px;
  background:#25d366;
  color:white;
  padding:11px;
  font-weight:700
}

.bottom-nav {
  display:none
}

.modal {
  display:none;
  position:fixed;
  inset:0;
  z-index:80;
  align-items:center;
  justify-content:center;
  padding:20px
}

.modal.open {
  display:flex
}

.lightbox-box,.wa-box {
  position:relative;
  z-index:1;
  width:min(900px,96vw);
  background:#1c1917;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 30px 70px #0008
}

.lightbox-box>img {
  width:100%;
  height:min(72vh,680px);
  object-fit:contain;
  background:#000;
  display:block
}

.lightbox-box>div {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 24px;
  color:#fff
}

.lightbox-box h3 {
  font:600 24px var(--serif);
  color:#fde68a;
  margin:0
}

.modal-close {
  position:absolute;
  right:14px;
  top:12px;
  z-index:2;
  border:0;
  border-radius:50%;
  background:#000a;
  color:#fff;
  width:38px;
  height:38px;
  font-size:25px
}

.light-arrow {
  position:absolute;
  z-index:2;
  top:48%;
  transform:translateY(-50%);
  border:1px solid #ffffff33;
  background:#000a;
  color:white;
  border-radius:50%;
  width:44px;
  height:44px;
  font-size:30px
}

.light-arrow.left {
  left:14px
}

.light-arrow.right {
  right:14px
}

.wa-box {
  max-width:450px;
  background:white
}

.wa-head {
  background:#128c7e;
  color:#fff;
  display:flex;
  align-items:center;
  gap:12px;
  padding:18px
}

.wa-head>span {
  font-size:28px
}

.wa-head div {
  flex:1
}

.wa-head h3 {
  font-size:16px;
  margin:0
}

.wa-head p {
  font-size:10px;
  color:#d1fae5;
  margin:4px 0
}

.wa-head button {
  color:white
}

.wa-body {
  padding:22px
}

.wa-body>label {
  display:block;
  font-size:10px;
  font-weight:700;
  margin:15px 0 8px
}

.choice-row,.choice-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px
}

.choice-row button,.choice-grid button {
  border:1px solid #ddd;
  background:#fff;
  border-radius:8px;
  padding:9px;
  font-size:10px;
  color:#57534e
}

.choice-row b {
  display:block;
  font-size:11px;
  color:#333
}

.choice-row button.active,.choice-grid button.active {
  border-color:#059669;
  background:#ecfdf5;
  color:#065f46
}

.wa-body textarea {
  width:100%;
  border:1px solid #ddd;
  border-radius:8px;
  background:#fafafa;
  padding:11px;
  font-size:12px
}

.start-chat {
  width:100%;
  border:0;
  border-radius:10px;
  background:#25d366;
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  padding:14px;
  margin-top:16px
}

@media(max-width:700px) {
  .topbar-inner {
    height:30px;
    padding:0 12px
  }

  .topbar a {
    margin-right:10px
  }

  .topbar-right {
    display:none
  }

  .topbar a span {
    font-size:10px
  }

  .header-inner {
    height:68px;
    padding:0 14px
  }

  .brand img {
    height:53px
  }

  .whatsapp-button {
    padding:10px
  }

  .whatsapp-button b {
    display:none
  }

  .hero {
    height:520px
  }

  .hero-content {
    padding:25px
  }

  .hero-content p {
    font-size:16px
  }

  .hero-badge {
    font-size:11px
  }

  .section,.story .section {
    padding:58px 16px
  }

  .section-heading {
    margin-bottom:30px
  }

  .section-heading h2 {
    font-size:31px
  }

  .slider {
    aspect-ratio:16/10
  }

  .slide-copy {
    left:22px;
    bottom:30px
  }

  .slide-copy h3 {
    font-size:29px
  }

  .slide-copy p {
    font-size:10px
  }

  .slide-arrow {
    width:40px;
    height:40px
  }

  .slide-arrow.prev {
    left:10px
  }

  .slide-arrow.next {
    right:10px
  }

  .stats {
    grid-template-columns:1fr 1fr
  }

  .story-card {
    padding:24px 20px
  }

  .story-card p {
    font-size:15px
  }

  .gallery {
    grid-template-columns:1fr;
    gap:15px
  }

  .gallery-wide {
    grid-column:auto;
    aspect-ratio:3/2!important
  }

  .gallery-item span {
    padding:46px 16px 14px;
    font-size:18px;
    opacity:1
  }

  .location-title {
    font-size:22px
  }

  .location-card {
    padding:18px
  }

  .contact {
    padding:58px 15px
  }

  .contact-card {
    padding:22px
  }

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

  .footer-varieties #footerVarieties {
    grid-template-columns:1fr 1fr
  }

  .bottom-nav {
    position:fixed;
    bottom:0;
    inset-inline:0;
    z-index:50;
    height:61px;
    background:#faf7f2f7;
    border-top:1px solid #ddd;
    display:flex;
    justify-content:space-around;
    box-shadow:0 -3px 14px #0002
  }

  .bottom-nav a {
    width:25%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-size:9px;
    font-weight:700;
    letter-spacing:.06em;
    color:#57534e
  }

  .bottom-nav span {
    font-size:20px;
    margin-bottom:2px
  }

  .bottom-nav a:focus {
    color:var(--gold-dark)
  }

  footer {
    padding-bottom:82px
  }

  .lightbox-box>img {
    height:64vh
  }

}

/* Updated client version */ .topbar-inner {
  height:auto;
  min-height:46px;
  padding:5px 24px
}

.topbar-inner>a,.topbar-phones a {
  display:flex;
  align-items:center;
  gap:6px;
  margin:0;
  color:#d6d3d1
}

.topbar-phones {
  display:flex;
  flex-direction:column;
  gap:3px
}

.header-inner {
  height:92px
}

.header-balance {
  display:block;
  width:36px
}

.hero {
  height:580px
}

.gold-button.compact {
  padding:11px 24px;
  font-size:11px
}

.hero-ribbon {
  min-height:52px;
  padding:10px 20px;
  background:#3a1014;
  border-block:1px solid #571b21;
  color:#fff7df;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:22px;
  font-size:13px;
  box-shadow:0 3px 10px #0002
}

.hero-ribbon a {
  color:#fde6a8
}

.hero-ribbon strong {
  border:1px solid #7a2831;
  background:#541a20;
  color:#f3d382;
  border-radius:999px;
  padding:7px 14px;
  font-size:11px;
  letter-spacing:.08em
}

.direct-wa {
  display:block!important;
  text-align:center;
  background:#25d366;
  color:#fff!important;
  border-radius:8px;
  padding:10px;
  margin-top:12px;
  font-weight:700
}

.story-placeholder {
  border:2px dashed #8d620044;
  border-radius:12px;
  background:#fafaf9;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#78716c;
  margin-bottom:24px
}

.story-placeholder>span {
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff8e8;
  border:1px solid #eed7a2;
  color:#8d6200;
  font-size:28px;
  margin-bottom:10px
}

.story-placeholder b {
  border:0!important;
  padding:0!important;
  color:#44403c!important;
  font-size:13px!important;
  letter-spacing:.04em!important
}

.story-placeholder small {
  font-size:11px;
  color:#a8a29e;
  margin-top:4px
}

.location-photo {
  display:block;
  width:min(100%,460px);
  height:auto;
  max-height:none;
  aspect-ratio:1/1;
  margin:16px auto 24px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid #ddd;
  box-shadow:0 4px 12px #0002
}

.location-photo img {
  display:block;
  width:100%;
  height:100%;
  max-width:100%;
  object-fit:contain;
  object-position:center
}

/* Balanced location row on desktop only */
@media screen and (min-width:768px) {
  .location-layout {
    display:grid;
    grid-template-columns:minmax(0,50fr) minmax(0,50fr);
    align-items:stretch;
    gap:24px;
/*    width:min(100%,960px); */
    margin:16px auto 0
  }

  .location-layout .location-photo {
    width:100%;
    height:100%;
    min-height:0;
    max-height:none;
    aspect-ratio:auto;
    margin:0
  }

  .location-layout .location-photo img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center
  }

  .location-layout .location-card {
    display:flex;
    flex-direction:column;
    width:100%;
    height:100%;
    margin:0
  }

  .location-layout .map {
    width:100%;
    max-width:100%
  }

  .location-layout .map-button {
    margin-top:18px
  }
}

.captcha-box {
  border:1px solid #e1ded9;
  border-radius:10px;
  background:#fbfaf7;
  padding:14px
}

.captcha-box>label {
  display:block;
  margin-bottom:9px
}

.captcha-box>div {
  display:grid;
  grid-template-columns:auto 1fr 42px;
  align-items:center;
  gap:10px
}

.captcha-box span {
  font-weight:700;
  color:#44403c;
  white-space:nowrap
}

.captcha-box input {
  margin:0!important;
  min-width:0
}

.captcha-box button {
  height:44px;
  border:1px solid #ddd;
  border-radius:8px;
  background:#fff;
  color:#8d6200;
  font-size:20px
}

.captcha-box small {
  display:block;
  min-height:16px;
  margin-top:5px;
  color:#b91c1c;
  font-size:11px
}

.floating-whatsapp {
  position:fixed;
  right:18px;
  top:66%;
  transform:translateY(-50%);
  z-index:55;
  display:flex;
  align-items:center
}

.floating-whatsapp img {
  width:48px;
  height:48px;
  object-fit:contain;
  filter:drop-shadow(0 4px 10px #0004);
  transition:.25s
}

.floating-whatsapp span {
  opacity:0;
  transform:translateX(8px);
  transition:.25s;
  margin-right:9px;
  background:#1c1917e8;
  color:#fff;
  border:1px solid #44403c;
  border-radius:8px;
  padding:7px 10px;
  font-size:11px;
  font-weight:700;
  pointer-events:none
}

.floating-whatsapp:hover span {
  opacity:1;
  transform:none
}

.floating-whatsapp:hover img {
  transform:scale(1.1)
}

@media(max-width:700px) {
  .topbar-inner {
    min-height:52px;
    height:auto;
    padding:5px 12px
  }

  .topbar-inner>a span,.topbar-phones a span {
    font-size:10px
  }

  .header-inner {
    height:72px
  }

  .hero {
    height:480px
  }

  .hero-ribbon {
    gap:10px;
    flex-wrap:wrap;
    font-size:11px
  }

  .hero-ribbon>span {
    display:none
  }

  .hero-ribbon strong {
    font-size:9px
  }

  .story-placeholder {
    height:190px
  }

  .contact-card input,.contact-card textarea,.captcha-box input {
    font-size:16px!important
  }

  .captcha-box>div {
    grid-template-columns:auto 1fr 40px
  }

  .floating-whatsapp {
    right:12px
  }

  .floating-whatsapp img {
    width:43px;
    height:43px
  }

  .floating-whatsapp span {
    display:none
  }

}

.story-photo {
  margin:0 0 24px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #ded8cf;
  background:#f5f1ea;
  box-shadow:0 6px 18px #1c19171a
}

.story-photo img {
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:2048/1643;
  object-fit:cover
}

/* Final responsive corrections */ .topbar-inner {
  min-height:36px;
  padding:4px 24px
}

.topbar-phones {
  flex-direction:row;
  align-items:center;
  gap:22px
}

.header-inner {
  height:82px
}

.brand img {
  max-width:230px;
  height:62px;
  object-fit:contain
}

.story-photo {
  width:100%;
  height:340px
}

.story-photo img {
  width:100%;
  height:100%;
  max-width:100%;
  aspect-ratio:auto;
  object-fit:cover;
  object-position:center 72%
}

.captcha-row {
  display:flex!important;
  align-items:center;
  gap:10px;
  width:100%;
  min-width:0
}

.captcha-row #captchaQuestion {
  display:block;
  flex:0 0 68px;
  text-align:center;
  font-size:17px;
  font-weight:700;
  color:#3f342d
}

.captcha-row #captchaAnswer {
  display:block;
  flex:1 1 auto;
  width:0!important;
  min-width:0!important;
  height:46px;
  margin:0!important;
  padding:10px 12px!important;
  font-size:16px
}

.captcha-row #refreshCaptcha {
  display:grid;
  place-items:center;
  flex:0 0 46px;
  width:46px;
  height:46px;
  margin:0;
  padding:0
}

@media(max-width:700px) {
  .topbar-inner {
    min-height:54px;
    padding:5px 10px;
    flex-direction:column;
    justify-content:center;
    gap:4px
  }

  .topbar-phones {
    flex-direction:row;
    justify-content:center;
    gap:14px;
    width:100%
  }

  .topbar-inner>a,.topbar-phones a {
    font-size:10px;
    line-height:1.2
  }

  .topbar-inner>a span,.topbar-phones a span {
    font-size:10px
  }

  .header-inner {
    height:66px;
    padding:0 14px
  }

  .icon-button {
    width:38px;
    padding:0;
    text-align:left
  }

  .header-balance {
    width:38px
  }

  .brand img {
    height:52px;
    max-width:190px
  }

  .story-photo {
    height:190px;
    margin-bottom:18px
  }

  .story-photo img {
    object-position:center 72%
  }

  .captcha-box {
    padding:12px
  }

  .captcha-row {
    gap:7px
  }

  .captcha-row #captchaQuestion {
    flex-basis:60px;
    font-size:16px
  }

  .captcha-row #refreshCaptcha {
    flex-basis:44px;
    width:44px;
    height:44px
  }

}

/* WhatsApp enquiry composer */ button.floating-whatsapp {
  border:0;
  background:transparent;
  padding:0;
  font-family:inherit
}

.quick-inquiry button.direct-wa {
  width:100%;
  border:0;
  cursor:pointer
}

.wa-box {
  max-height:min(760px,92vh);
  overflow:auto
}

.wa-body .choice-row {
  grid-template-columns:repeat(2,1fr)
}

.wa-body .choice-grid {
  grid-template-columns:repeat(2,1fr)
}

.choice-row button.active,.choice-grid button.active {
  border-color:#059669;
  background:#ecfdf5;
  color:#065f46;
  box-shadow:inset 0 0 0 1px #10b981
}

.wa-body textarea {
  resize:vertical;
  min-height:88px;
  font-size:13px;
  line-height:1.5;
  color:#292524
}

.start-chat:hover {
  background:#1fbd59
}

@media(max-width:700px) {
  .modal#whatsappModal {
    align-items:flex-end;
    padding:10px
  }

  .wa-box {
    width:100%;
    max-height:90vh;
    border-radius:14px 14px 8px 8px
  }

  .wa-head {
    padding:14px
  }

  .wa-body {
    padding:16px
  }

  .wa-body>label {
    margin-top:12px
  }

  .choice-row button,.choice-grid button {
    padding:10px 7px;
    font-size:10px
  }

}

/* Consistent contact icons and responsive footer */ .contact-icon {
  display:block;
  flex:0 0 auto;
  width:19px;
  height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round
}

.topbar .contact-icon {
  width:14px;
  height:14px;
  color:var(--gold)
}

.topbar-inner>a,.topbar-phones a {
  gap:7px
}

.hero-ribbon a {
  display:inline-flex;
  align-items:center;
  gap:7px
}

.hero-ribbon .contact-icon {
  width:17px;
  height:17px;
  color:#e2b735
}

.address>span {
  display:grid;
  place-items:center
}

.address .contact-icon {
  width:23px;
  height:23px
}

.footer-grid {
  grid-template-columns:.85fr 1.65fr 1.35fr;
  align-items:start
}

.footer-contact a {
  display:flex;
  align-items:flex-start;
  gap:13px;
  margin-bottom:15px;
  line-height:1.55
}

.footer-contact .contact-icon {
  width:20px;
  height:20px;
  color:#d2a91d;
  margin-top:1px
}

.footer-contact a span {
  min-width:0;
  overflow-wrap:anywhere
}

.footer-contact h4 {
  margin-bottom:23px
}

@media(max-width:700px) {
  .topbar-inner {
    gap:5px;
    padding:7px 12px
  }

  .topbar-phones {
    gap:18px
  }

  .topbar-inner>a,.topbar-phones a {
    gap:5px
  }

  .topbar .contact-icon {
    width:13px;
    height:13px
  }

  .footer-grid {
    display:flex;
    flex-direction:column;
    gap:36px;
    padding:36px 0
  }

  .footer-contact {
    order:1;
    width:100%
  }

  .footer-links {
    order:2;
    width:100%
  }

  .footer-varieties {
    order:3;
    width:100%
  }

  .footer-contact a {
    display:flex!important;
    font-size:13px;
    margin-bottom:16px;
    gap:12px
  }

  .footer-contact .contact-icon {
    width:21px;
    height:21px
  }

  .footer-contact h4 {
    font-size:12px;
    margin-bottom:22px
  }

  .footer-varieties #footerVarieties {
    grid-template-columns:1fr 1fr
  }

  .hero-ribbon .contact-icon {
    width:15px;
    height:15px
  }

}

/* Final cross-device safeguards */ .contact-icon,.contact-icon * {
  color:#d2a91d!important;
  stroke:#d2a91d!important;
  fill:none!important
}

.story-placeholder {
  display:flex!important;
  visibility:visible!important;
  opacity:1!important;
  min-height:220px!important;
  border:2px dashed rgba(141,98,0,.35)!important;
  border-radius:12px!important;
  background:#fafaf9!important
}

.floating-whatsapp {
  position:fixed!important;
  right:18px!important;
  top:auto!important;
  bottom:82px!important;
  transform:none!important;
  width:50px!important;
  height:50px!important;
  display:grid!important;
  place-items:center!important;
  z-index:999!important;
  margin:0!important
}

.floating-whatsapp img {
  display:block!important;
  width:48px!important;
  height:48px!important;
  max-width:48px!important;
  object-fit:contain!important
}

.floating-whatsapp>span {
  position:absolute;
  right:52px;
  width:max-content
}

.captcha-row #captchaQuestion {
  font-variant-numeric:tabular-nums
}

@media(max-width:700px) {
  .hero-ribbon {
    display:grid!important;
    grid-template-columns:1fr!important;
    justify-items:center!important;
    gap:10px!important;
    min-height:auto!important;
    padding:14px 16px 16px!important;
    background:#3a1014!important;
    border-top:1px solid #7a2831!important;
    border-bottom:1px solid #8b7474!important
  }

  .hero-ribbon>a {
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:100%!important;
    color:#fde6a8!important;
    font-size:14px!important
  }

  .hero-ribbon>span {
    display:none!important
  }

  .hero-ribbon>strong {
    display:block!important;
    width:100%!important;
    max-width:360px!important;
    padding:10px 14px!important;
    border:1px solid #8f3039!important;
    border-radius:999px!important;
    background:#541a20!important;
    color:#f3d382!important;
    text-align:center!important;
    font-size:11px!important;
    letter-spacing:.08em!important;
    line-height:1.35!important
  }

  .story-placeholder {
    min-height:190px!important;
    height:190px!important;
    margin-bottom:20px!important
  }

  .story-placeholder>span {
    display:grid!important
  }

  .floating-whatsapp {
    right:12px!important;
    bottom:76px!important;
    width:46px!important;
    height:46px!important
  }

  .floating-whatsapp img {
    width:44px!important;
    height:44px!important;
    max-width:44px!important
  }

  .floating-whatsapp>span {
    display:none!important
  }

  .footer-contact .contact-icon,.topbar .contact-icon {
    color:#d2a91d!important;
    stroke:#d2a91d!important
  }

}

.our-story-image {
  width: 100% !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.our-story-image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}

@media only screen and (max-width: 767px) {
  .story-card .our-story-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: auto !important;
    max-height: 380px !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .story-card .our-story-image img {
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 380px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
  }

}

@media screen and (max-width: 767px) {
  .collection-note {
    margin-top: 18px;
    padding: 0 15px;
    font-size: 14px;
    line-height: 1.6;
  }
}
.collection-note {
  width: 100%;
  margin: 24px auto 0;
  text-align: center;
  color: #8d6300;
  font-size: 15px;
  line-height: 1.7;
font-weight: bold;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
}

.header {
  position: sticky;
  top: 37px; /* height of phone bar */
  z-index: 1000;
width: 100%;
}

@media screen and (max-width: 767px) {
  .header {
    top: 54px !important;
  }
}

/* Offset for sticky phone and logo bars */
html {
  scroll-padding-top: 100px;
}

section[id] {
  scroll-margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .location-photo {
    width:100%;
    max-width:100%;
    height:auto;
    max-height:none;
    aspect-ratio:auto;
    border-radius:14px
  }

  .location-photo img {
    width:100%;
    max-width:100%;
    height:auto;
    object-fit:contain;
    object-position:center
  }

  .location-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px !important;
    overflow: hidden !important;
  }

  .map {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  .map a {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .map img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    object-position: center !important;
  }
}

/* Mobile sticky bars are taller */
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 100px;
  }

  section[id] {
    scroll-margin-top: 100px;
  }
}
