/* ==========================================================================
   TOKENS
   ========================================================================== */
:root{
  --bg-primary:#000000;
  --bg-secondary:#1F150C;
  --accent:#412D15;
  --light:#E1DCC9;

  --font-serif:'Cormorant Garamond', Georgia, serif;
  --font-sans:'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h:84px;
  --ease:cubic-bezier(.16,1,.3,1);
  --container:1360px;

  --shadow-soft:0 20px 44px -22px rgba(0,0,0,.6);
  --shadow-lift:0 30px 64px -26px rgba(0,0,0,.7);
  --border-hairline:1px solid rgba(225,220,201,.1);
  --border-hairline-strong:1px solid rgba(225,220,201,.24);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-sans);
  background:var(--bg-primary);
  color:var(--light);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  width:100%;
}
body.nav-scroll-lock{overflow:hidden;}
a{color:inherit;text-decoration:none;}
button{font:inherit;cursor:pointer;background:none;border:none;color:inherit;}
img,video,iframe{max-width:100%;}

#hero,#projects,#founder,#contact{scroll-margin-top:var(--nav-h);}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  height:var(--nav-h);
  display:flex;
  align-items:center;
  transition:background-color .5s var(--ease), box-shadow .5s var(--ease), backdrop-filter .5s var(--ease), height .35s var(--ease);
  background:linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,0));
}
.site-nav.is-scrolled{
  height:72px;
  background:rgba(31,21,12,.78);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  box-shadow:0 1px 0 rgba(225,220,201,.09), var(--shadow-soft);
}

.nav-inner{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 clamp(20px,4vw,48px);
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.logo-text{
  font-family:var(--font-serif);
  font-size:19px;
  font-weight:500;
  letter-spacing:.14em;
  color:var(--light);
  line-height:1;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:clamp(24px,3vw,44px);
}
.nav-link{
  position:relative;
  font-size:14px;
  font-weight:500;
  letter-spacing:.03em;
  color:var(--light);
  opacity:.85;
  padding:6px 0;
  transition:opacity .3s var(--ease);
}
.nav-link::after{
  content:'';
  position:absolute;
  left:50%;right:50%;
  bottom:0;
  height:1px;
  background:var(--light);
  transition:left .35s var(--ease), right .35s var(--ease);
}
.nav-link:hover,
.nav-link.is-active{opacity:1;}
.nav-link:hover::after,
.nav-link.is-active::after{left:0;right:0;}

.nav-toggle{
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  width:44px;
  height:44px;
  flex-shrink:0;
}
.nav-toggle span{
  width:22px;height:1px;
  background:var(--light);
  transition:transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(6px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}

.nav-inner{position:relative;z-index:2;}

.nav-links-mobile{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  height:100%;
  z-index:90;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:clamp(20px,6vw,32px);
  background:rgba(10,7,4,.98);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  opacity:0;
  visibility:hidden;
  transform:translateY(-12px);
  transition:opacity .4s var(--ease), transform .4s var(--ease), visibility .4s var(--ease);
}
.nav-links-mobile .nav-link{
  font-family:var(--font-serif);
  font-size:clamp(24px,6vw,30px);
  font-weight:500;
  letter-spacing:.02em;
  padding:6px 4px;
  opacity:.85;
}
.nav-links-mobile .nav-link.is-active,
.nav-links-mobile .nav-link:hover{opacity:1;}

body.nav-scroll-lock .nav-links-mobile{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  min-height:100vh;
  min-height:100dvh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:var(--bg-primary);
}

.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-fallback-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(65,45,21,.55) 0%, rgba(31,21,12,.0) 55%),
    linear-gradient(160deg, #1a1109 0%, #120b06 45%, #000000 100%);
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:1;
}
.hero-video.is-loaded{
  opacity:1;
}
.hero-video{
  opacity:0;
  transition:opacity 1s var(--ease);
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(to bottom, rgba(31,21,12,.58) 0%, rgba(10,7,4,.55) 42%, rgba(31,21,12,.62) 80%, rgba(0,0,0,.84) 100%),
    radial-gradient(120% 85% at 50% 28%, rgba(65,45,21,.4) 0%, rgba(65,45,21,0) 62%),
    linear-gradient(to right, rgba(0,0,0,.38) 0%, rgba(65,45,21,.14) 30%, rgba(65,45,21,.14) 70%, rgba(0,0,0,.38) 100%);
}

.hero-grain{
  position:absolute;
  inset:0;
  z-index:3;
  opacity:.05;
  mix-blend-mode:overlay;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content{
  position:relative;
  z-index:4;
  width:100%;
  max-width:900px;
  margin:0 auto;
  padding:calc(var(--nav-h) + 24px) 24px 80px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.hero-eyebrow{
  font-size:12px;
  font-weight:600;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--light);
  opacity:.72;
  margin-bottom:22px;
}

.hero-title{
  font-family:var(--font-serif);
  font-weight:500;
  font-size:clamp(2.1rem, 5.4vw, 4.4rem);
  line-height:1.12;
  letter-spacing:.005em;
  color:var(--light);
  margin-bottom:26px;
  text-wrap:balance;
}

.hero-subtitle{
  font-size:clamp(15px, 1.5vw, 17.5px);
  line-height:1.65;
  font-weight:400;
  color:var(--light);
  opacity:.82;
  max-width:600px;
  margin-bottom:42px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 32px;
  font-size:14px;
  font-weight:600;
  letter-spacing:.03em;
  border-radius:6px;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background-color .35s var(--ease), border-color .35s var(--ease);
  white-space:nowrap;
}
.btn:active{transform:scale(.97);}

.btn-primary{
  background:var(--light);
  color:#1a1109;
  box-shadow:0 16px 34px -12px rgba(225,220,201,.3);
}
.btn-primary:hover{
  transform:translateY(-2px) scale(1.015);
  box-shadow:0 22px 42px -12px rgba(225,220,201,.45);
}

.btn-secondary{
  background:rgba(225,220,201,.06);
  color:var(--light);
  border:1px solid rgba(225,220,201,.35);
  backdrop-filter:blur(6px);
}
.btn-secondary:hover{
  background:rgba(225,220,201,.14);
  border-color:rgba(225,220,201,.6);
  transform:translateY(-2px) scale(1.015);
}
.icon-whatsapp{flex-shrink:0;}

/* reveal-on-load */
.reveal{
  opacity:0;
  transform:translateY(16px);
  animation:heroReveal .9s var(--ease) forwards;
  animation-delay:var(--delay);
}
@keyframes heroReveal{
  to{opacity:1;transform:translateY(0);}
}

.hero-scroll-cue{
  position:absolute;
  left:50%;
  bottom:32px;
  transform:translateX(-50%);
  z-index:4;
  width:1px;
  height:46px;
  overflow:hidden;
  opacity:.5;
}
.scroll-line{
  display:block;
  width:100%;
  height:100%;
  background:linear-gradient(to bottom, transparent, var(--light) 40%, transparent);
  animation:scrollCue 2.4s var(--ease) infinite;
}
@keyframes scrollCue{
  0%{transform:translateY(-100%);}
  100%{transform:translateY(100%);}
}

@media (prefers-reduced-motion: reduce){
  .reveal{animation:none;opacity:1;transform:none;}
  .scroll-line{animation:none;}
  html{scroll-behavior:auto;}
}

/* ==========================================================================
   OUR PROJECTS
   ========================================================================== */
.projects{
  position:relative;
  background:var(--bg-secondary);
  padding:clamp(56px,7vw,84px) 0;
  overflow:hidden;
}
.projects::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(to right, transparent, rgba(225,220,201,.16) 20%, rgba(225,220,201,.16) 80%, transparent);
}

.projects-header{
  max-width:640px;
  margin:0 auto;
  text-align:center;
  padding:0 clamp(20px,4vw,48px);
  margin-bottom:clamp(36px,5vw,56px);
}

.section-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--light);
  opacity:.68;
  margin-bottom:18px;
}
.section-eyebrow::before{
  content:'';
  width:6px;height:6px;
  border-radius:50%;
  background:var(--light);
  opacity:.7;
}

.section-title{
  font-family:var(--font-serif);
  font-weight:500;
  font-size:clamp(1.9rem, 4vw, 3rem);
  line-height:1.15;
  color:var(--light);
  margin-bottom:18px;
}

.section-subtitle{
  font-size:15.5px;
  line-height:1.65;
  color:var(--light);
  opacity:.72;
}

/* ---- horizontal scroller ---- */
.projects-scroller{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.projects-scroller::-webkit-scrollbar{display:none;}

.project-slide{
  flex:0 0 100%;
  width:100%;
  max-width:100%;
  scroll-snap-align:start;
  padding:4px clamp(20px,4vw,48px) 4px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ---- the single rounded project card ---- */
.project-card{
  max-width:1080px;
  width:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  background:rgba(65,45,21,.22);
  border:var(--border-hairline);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow-lift);
}

/* ---- image area: one image visible at a time ---- */
.project-gallery{
  position:relative;
  min-height:340px;
  background:linear-gradient(155deg, #241708 0%, #150e07 55%, #000000 100%);
}

.gallery-slide{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  opacity:0;
  transition:opacity .5s var(--ease);
  pointer-events:none;
}
.gallery-slide.is-active{
  opacity:1;
  pointer-events:auto;
}
.gallery-slide img{
  display:block;
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  border-radius:6px;
}

.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(10,7,4,.45);
  backdrop-filter:blur(6px);
  border:var(--border-hairline-strong);
  color:var(--light);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background-color .3s var(--ease), transform .3s var(--ease);
}
.gallery-arrow:hover{background:rgba(10,7,4,.65);transform:translateY(-50%) scale(1.06);}
.gallery-arrow:disabled{opacity:.25;pointer-events:none;}
.gallery-arrow svg{width:15px;height:15px;}
.gallery-arrow.prev{left:12px;}
.gallery-arrow.next{right:12px;}

.gallery-counter{
  position:absolute;
  bottom:12px;
  right:14px;
  z-index:5;
  font-size:11px;
  font-weight:600;
  letter-spacing:.05em;
  padding:4px 10px;
  border-radius:20px;
  background:rgba(10,7,4,.5);
  color:var(--light);
  opacity:.85;
}

/* ---- text area ---- */
.project-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
  padding:clamp(28px,3.5vw,44px);
}

.project-index{
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  color:var(--light);
  opacity:.45;
}

.project-title{
  font-family:var(--font-serif);
  font-weight:500;
  font-size:clamp(1.5rem, 2.3vw, 2rem);
  color:var(--light);
  line-height:1.22;
}

.project-desc{
  font-size:14.5px;
  line-height:1.75;
  color:var(--light);
  opacity:.78;
}

/* ---- prev/next + dots ---- */
.projects-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  margin-top:clamp(36px,5vw,52px);
}

.proj-arrow{
  width:46px;
  height:46px;
  flex-shrink:0;
  border-radius:50%;
  border:var(--border-hairline-strong);
  background:rgba(225,220,201,.03);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--light);
  transition:background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.proj-arrow:hover{
  background:rgba(225,220,201,.1);
  border-color:rgba(225,220,201,.45);
  transform:scale(1.06);
}
.proj-arrow:disabled{opacity:.3;pointer-events:none;}
.proj-arrow svg{width:16px;height:16px;}

.proj-dots{
  display:flex;
  align-items:center;
  gap:8px;
}
.proj-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:rgba(225,220,201,.25);
  border:none;
  padding:0;
  transition:background-color .35s var(--ease), width .35s var(--ease), border-radius .35s var(--ease);
}
.proj-dot.is-active{
  width:24px;
  border-radius:4px;
  background:var(--light);
}

/* ==========================================================================
   MEET ANIL
   ========================================================================== */
.founder{
  position:relative;
  background:var(--bg-primary);
  padding:clamp(56px,7vw,84px) 0;
  overflow:hidden;
}
.founder::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(to right, transparent, rgba(225,220,201,.16) 20%, rgba(225,220,201,.16) 80%, transparent);
}

.founder-inner{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 clamp(20px,4vw,48px);
}

.founder-card{
  display:grid;
  grid-template-columns:2fr 3fr;
  background:rgba(65,45,21,.22);
  border:var(--border-hairline);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow-lift);
}

.founder-media{
  position:relative;
  align-self:center;
  aspect-ratio:4/5;
  background:linear-gradient(155deg, #241708 0%, #150e07 55%, #000000 100%);
}
.founder-photo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 24%;
}

.founder-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:16px;
  padding:clamp(32px,4vw,52px);
}

.founder-role{
  font-family:var(--font-serif);
  font-style:italic;
  font-weight:500;
  font-size:clamp(15px,1.6vw,17px);
  color:var(--light);
  opacity:.72;
  margin-top:-6px;
}

.founder-bio{
  font-size:14.5px;
  line-height:1.75;
  color:var(--light);
  opacity:.78;
  max-width:600px;
}

.founder-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:8px;
}

.stat-card{
  background:rgba(225,220,201,.04);
  border:var(--border-hairline);
  border-radius:14px;
  padding:18px 12px;
  text-align:center;
  transition:border-color .3s var(--ease), transform .3s var(--ease);
}
.stat-card:hover{
  border-color:rgba(225,220,201,.28);
  transform:translateY(-2px);
}

.stat-num{
  font-family:var(--font-serif);
  font-weight:600;
  font-size:clamp(1.4rem,2vw,1.8rem);
  color:var(--light);
  line-height:1;
  margin-bottom:6px;
}

.stat-label{
  font-size:11px;
  font-weight:600;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--light);
  opacity:.6;
  line-height:1.4;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact{
  position:relative;
  background:var(--bg-secondary);
  padding:clamp(56px,7vw,84px) 0;
  overflow:hidden;
}
.contact::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(to right, transparent, rgba(225,220,201,.16) 20%, rgba(225,220,201,.16) 80%, transparent);
}

.contact-inner{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 clamp(20px,4vw,48px);
}

.contact-header{
  max-width:640px;
  margin:0 auto;
  text-align:center;
  margin-bottom:clamp(36px,5vw,56px);
}

.contact-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  background:rgba(65,45,21,.22);
  border:var(--border-hairline);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow-lift);
}

.contact-info{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:28px;
  padding:clamp(28px,3.5vw,44px);
}

.contact-list{
  list-style:none;
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  gap:36px;
}

.contact-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  min-width:0;
}

.contact-icon{
  flex-shrink:0;
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(225,220,201,.05);
  border:var(--border-hairline);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--light);
}
.contact-icon svg{width:18px;height:18px;}

.contact-label{
  font-size:11px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--light);
  opacity:.5;
  margin-bottom:6px;
}

.contact-value{
  display:block;
  font-size:15px;
  font-weight:500;
  color:var(--light);
  opacity:.9;
  line-height:1.55;
  transition:opacity .3s var(--ease);
  overflow-wrap:anywhere;
  word-break:break-word;
}
a.contact-value:hover{opacity:1;}

.contact-address{
  font-style:normal;
}

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

.contact-map{
  position:relative;
  min-height:260px;
  background:linear-gradient(155deg, #241708 0%, #150e07 55%, #000000 100%);
}
.contact-map iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
}

.map-open-link{
  position:absolute;
  bottom:14px;
  right:14px;
  z-index:5;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.03em;
  padding:8px 14px;
  border-radius:20px;
  background:rgba(10,7,4,.6);
  backdrop-filter:blur(6px);
  border:var(--border-hairline-strong);
  color:var(--light);
  transition:background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.map-open-link:hover{
  background:rgba(10,7,4,.8);
  border-color:rgba(225,220,201,.45);
  transform:translateY(-1px);
}
.map-open-link svg{width:13px;height:13px;}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{
  background:var(--bg-primary);
  border-top:var(--border-hairline);
  text-align:center;
  padding:28px 20px;
}
.footer-copy{
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.04em;
  color:var(--light);
  opacity:.55;
  margin-bottom:4px;
}
.footer-tagline{
  font-size:12px;
  color:var(--light);
  opacity:.4;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:860px){
  .nav-links{display:none;}
  .nav-toggle{display:flex;}
  .hero-content{padding-bottom:64px;}
  .hero-scroll-cue{display:none;}

  .project-card{grid-template-columns:1fr;border-radius:22px;}
  .project-gallery{aspect-ratio:4/3;min-height:0;}
  .project-content{padding:24px;}

  .founder-card{border-radius:22px;}
  .founder-content{padding:28px;}
  .founder-stats{gap:10px;}

  .contact-card{border-radius:22px;}
  .contact-info{padding:28px;}
  .contact-map{min-height:280px;}
}

@media (max-width:700px){
  /* still side-by-side on phones, just a tighter 2x2 stat grid to stay readable */
  .founder-stats{grid-template-columns:repeat(2,1fr);}
}

@media (max-width:520px){
  .hero-title{font-size:clamp(1.9rem, 8vw, 2.6rem);}
  .btn{width:100%;padding:15px 24px;}
  .hero-actions{flex-direction:column;width:100%;max-width:340px;}
  .logo-text{font-size:13px;}

  .project-content{gap:10px;padding:20px;}
  .projects-nav{gap:14px;}
  .gallery-arrow{width:36px;height:36px;}

  /* keep the founder card side-by-side down to phone widths; only the very
     narrow breakpoint below actually stacks it */
  .founder-media{aspect-ratio:3/4;}
  .founder-content{padding:20px;gap:10px;}
  .founder-stats{gap:8px;}
  .stat-card{padding:14px 8px;}

  .contact-info{padding:22px;gap:24px;}
  .contact-list{gap:18px;}
  .contact-actions{flex-direction:column;width:100%;}
  .contact-map{min-height:240px;}
  .map-open-link{font-size:11.5px;padding:9px 13px;}
}

@media (max-width:360px){
  /* absolutely necessary: too narrow for a legible side-by-side split */
  .founder-card{grid-template-columns:1fr;}
  .founder-media{aspect-ratio:16/10;}

  .contact-icon{width:28px;height:28px;}
  .contact-icon svg{width:13px;height:13px;}
  .contact-item{gap:8px;}
  .contact-value{font-size:13.5px;}
  .contact-list{gap:14px;}
}

@media (min-width:861px){
  .br-desktop{display:inline;}
}
@media (max-width:860px){
  .br-desktop{display:none;}
}
