@font-face {
  font-family: 'WindSong';
  src: url('/fonts/windsong-v13-latin_latin-ext-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg:#ffffff;
  --card:#ffffff;
  --text:rgba(18,18,18,.92);
  --muted:rgba(18,18,18,.66);
  --border:rgba(10,10,10,.12);
  --shadow:0 18px 55px rgba(0,0,0,.10);
  --radius:18px;
  --max:1080px;
  --title-font:"WindSong", serif;
  --body-font:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--body-font);
  line-height:1.5;
}

a{color:inherit}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px 56px;
}

header{
  border:none;
  background:transparent;
  border-radius:0;
  box-shadow:none;
  overflow:visible;
  position:relative;
}
.lang-switch{
  position:absolute;
  top:28px;
  right:40px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.85);
  display:flex;
  gap:8px;
  align-items:center;
}

.lang-switch .divider{
  opacity:.4;
}

.lang-switch a{
  text-decoration:none;
  opacity:.6;
}

.lang-switch a.active{
  opacity:1;
  font-weight:600;
}

.lang-switch a:hover{
  opacity:1;
}

.lang-switch span.active{
  opacity:1;
  font-weight:600;
  cursor:default;
}

.hero{
  position:relative;
  min-height:380px;
  display:flex;
  align-items:stretch;
  text-align:center;
  padding:22px;
  isolation:isolate;
  background:#111;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

.hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.02);
  z-index:-2;
}

.hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.65) 70%, rgba(0,0,0,.78) 100%);
  z-index:-1;
}

.hero > div{
  display:flex;
  flex-direction:column;
  height:100%;
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding:0 12px;
}

.hero-center{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  transform:translateY(100px);
}

.hero-title{
  margin:0 0 10px;
  font-family:var(--title-font);
  font-weight:400;
  letter-spacing:.04em;
  color:rgba(255,255,255,.96);
  font-size:clamp(30px,4vw,44px);
  line-height:1.1;
}

.hero-kicker{
  margin:0 0 14px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(255,255,255,.82);
}
.hero-sub{
  margin-top:auto;
  margin-bottom:4px;
  margin-left:auto;
  margin-right:auto;
  max-width:1100px;
  font-family: var(--body-font);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .9;
  line-height:1.2;
  color:rgba(255,255,255,.86);
  white-space:nowrap;
  transform:translateY(140px);
}

@media (max-width:1100px){
  .hero-sub{
    white-space:normal;
    max-width:90%;
  }
}

@media (max-width:950px){
  .hero{min-height:320px;}
  .hero-sub{font-size:15px;}
}

.note.coming-soon{
  width:100vw;  
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  border-radius:0;
  border:none;
  padding:12px 40px;
  text-align:center;
  font-size:13px;

  background:#fdf6e3;
  border-top:1px solid rgba(201,166,83,.35);
  border-bottom:1px solid rgba(201,166,83,.35);
  color:#6a5425;
}

html[data-theme="dark"] .coming-soon{
  background:rgba(201,166,83,.12);
  border-color:rgba(201,166,83,.35);
  color:rgba(255,220,150,.85);
}

.topbar{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  max-width:980px;
  width:calc(100vw - 36px);
  margin:20px auto 18px;
  padding:0;
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;
  backdrop-filter:none;
}

.addr{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin:0;
  max-width:460px;
  color:rgba(18,18,18,.72);
  font-size:14px;
}

.addr svg{flex:0 0 auto; margin-top:2px; opacity:.95}

.cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:center;
}

@media (max-width:900px){
  .topbar{flex-direction:column; align-items:flex-start;}
  .cta{width:100%; justify-content:flex-start;}
  .addr{max-width:100%;}
}

main{margin-top:16px;}

.grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:16px;
  margin-top:16px;
  align-items:stretch;
}

.grid > .card{
  height:100%;
  display:flex;
  flex-direction:column;
}

.grid > .card .gallery{
  flex:1;
}

.grid > .card .tiny{
  margin-top:auto;
}

@media (max-width:950px){
  .grid{grid-template-columns:1fr;}
}

.card{
  border:1px solid var(--border);
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:10px;
  padding:12px;
}

.tile{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(10,10,10,.10);
  cursor:zoom-in;
  min-height:170px;
}

.tile img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

.tile:hover img{transform:scale(1.03);}

.label{
  position:absolute;
  left:10px;
  bottom:10px;
  font-size:12px;
  color:rgba(18,18,18,.90);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(10,10,10,.12);
  padding:6px 10px;
  border-radius:999px;
  backdrop-filter:blur(6px);
}

.span-8{grid-column:span 8;}
.span-6{grid-column:span 6;}
.span-4{grid-column:span 4;}

@media (max-width:950px){
  .span-8,.span-6,.span-4{grid-column:span 12;}
  .tile{min-height:210px;}
}

.info{padding:16px 16px 18px;}

.info h2,
.reviews h2{
  margin:0 0 10px;
  font-family:var(--body-font);
  font-weight:600;
  letter-spacing:0;
  font-size:18px;
}

.bullets{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  font-size:14px;
}

.bullets li{margin:8px 0;}

.tiny{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding:12px 14px;
  border-top:1px solid var(--border);
  background:rgba(0,0,0,.02);
  color:rgba(18,18,18,.58);
  font-size:12px;
}

.footer{
  margin-top:16px;
  color:rgba(18,18,18,.55);
  font-size:12px;
  text-align:center;
}

.btn{
  appearance:none;
  border:1px solid rgba(10,10,10,.14);
  background:rgba(255,255,255,.86);
  color:rgba(18,18,18,.90);
  padding:12px 16px;
  border-radius:999px;
  font-size:15px;
  font-weight:650;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:transform .08s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
  box-shadow:none;
}

.btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.94);
  border-color:rgba(10,10,10,.22);
}

.btn.primary{
  background:rgba(255,255,255,.86);
  border-color:rgba(10,10,10,.16);
  color:rgba(18,18,18,.92);
}

.btn svg{opacity:.95}

.btn.small{
  padding:10px 12px;
  font-size:13px;
}

.btn.disabled{
  opacity:.45;
  pointer-events:none;
  cursor:default;
  transform:none;
}

.btn.disabled:hover{
  transform:none;
  background:inherit;
  border-color:inherit;
}

.map-embed{
  margin-top:12px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(10,10,10,.12);
  background:rgba(0,0,0,.02);
  box-shadow:0 14px 40px rgba(0,0,0,.12);
}

.map-embed iframe{
  width:100%;
  height:260px;
  border:0;
  filter:grayscale(.1) contrast(1.05) saturate(1.05);
}

@media (max-width:950px){
  .map-embed iframe{height:220px;}
}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.72);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:9999;
}

.lightbox.open{display:flex;}

.lb-inner{
  max-width:min(1100px, 96vw);
  max-height:90vh;
  width:100%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(10,10,12,.65);
  box-shadow:0 30px 90px rgba(0,0,0,.60);
  position:relative;
}

.lb-img{
  width:100%;
  height:72vh;
  object-fit:contain;
  background:rgba(0,0,0,.35);
  display:block;
}

.lb-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.80);
  font-size:13px;
}

.iconbtn{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  color:rgba(255,255,255,.92);
  border-radius:999px;
  padding:10px 12px;
  cursor:pointer;
  font-weight:650;
}

.iconbtn:hover{background:rgba(255,255,255,.14);}

.lb-actions{display:flex; gap:8px; align-items:center;}

.reviews{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--border);
}

/* Traveller Review Award */
.awardCard{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  margin:10px 0 14px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
}

.awardLeft{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.awardIcon{
  width:28px;
  height:28px;
  flex:0 0 28px;
  opacity:.75;
}

.awardTitle{
  font-weight:600;
  font-size:14px;
  margin:0 0 2px;
}

.awardText{
  margin:0;
  font-size:13px;
  color:var(--muted);
}

.awardSource{
  font-size:12px;
  color:var(--muted);
  white-space:nowrap;
}

/* Dark mode */
html[data-theme="dark"] .awardCard{
  background:var(--card);
}


.ratingRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin:6px 0 12px;
  color:rgba(18,18,18,.76);
  font-size:14px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(10,10,10,.12);
  background:rgba(0,0,0,.03);
  white-space:nowrap;
}

.reviewsGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:10px;
}

.reviewCard{
  border:1px solid rgba(10,10,10,.10);
  background:rgba(0,0,0,.02);
  border-radius:14px;
  padding:12px;
}

.reviewHead{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  align-items:baseline;
  margin-bottom:6px;
}

.reviewName{
  font-weight:600;
  color:rgba(18,18,18,.92);
  font-size:14px;
  font-family:var(--body-font);
}

.reviewMeta{
  color:rgba(18,18,18,.60);
  font-size:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.reviewText{
  margin:0;
  color:rgba(18,18,18,.72);
  font-size:13.5px;
  line-height:1.55;
}

html[data-theme="dark"]{
  --bg:#0b0b0c;
  --card:#111114;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.66);
  --border:rgba(255,255,255,.12);
  --shadow:0 18px 55px rgba(0,0,0,.45);
}

html[data-theme="dark"] .card{
  background:var(--card);
  border-color:var(--border);
  box-shadow:var(--shadow);
}

html[data-theme="dark"] .btn{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.14);
  color:rgba(255,255,255,.90);
}

html[data-theme="dark"] .btn:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.22);
}

html[data-theme="dark"] .pill{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
}

html[data-theme="dark"] .tile{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.10);
}

html[data-theme="dark"] .label{
  background:rgba(0,0,0,.35);
  border-color:rgba(255,255,255,.14);
  color:rgba(255,255,255,.90);
}

html[data-theme="dark"] .tiny{
  background:rgba(255,255,255,.03);
  border-top-color:rgba(255,255,255,.10);
  color:rgba(255,255,255,.55);
}

html[data-theme="dark"] .reviewCard{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.10);
}

html[data-theme="dark"] .note{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.10);
  color:rgba(255,255,255,.72);
}

html[data-theme="dark"] .addr{color:rgba(255,255,255,.68);}

.footerbar{
  margin-top:16px;
  margin-left:8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:rgba(18,18,18,.55);
  font-size:12px;
}

.footertext{white-space:nowrap}

.socialIcon{
  display:inline-flex;
  align-items:center;
  color:#8a8a8a;
  transition:color .15s ease;
}

.socialIcon:hover{
  color:#111;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p4r-link{
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
  margin-right:8px;
  font-size:12px;
  text-decoration:none;
}

@media (max-width: 600px) {
  .p4r-credit {
    display: none;
  }
}

.note{
  margin-top:10px;
  padding:10px 12px;
  border:1px solid rgba(10,10,10,.10);
  background:rgba(0,0,0,.02);
  border-radius:14px;
  color:rgba(18,18,18,.72);
  font-size:13px;
}

.theme-toggle-link {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
}

/* Dark mode */
html[data-theme="dark"] .socialIcon{
  color:#9aa0a6;
}

html[data-theme="dark"] .socialIcon:hover{
  color:#fff;
}

.theme-toggle-link{
  margin-right:8px;
  font-size:12px;
  color:inherit;
  text-decoration:none;
}

.theme-toggle-link:hover{text-decoration:underline}

.toggle-dark{display:none}
html[data-theme="dark"] .toggle-light{display:none}
html[data-theme="dark"] .toggle-dark{display:inline}

.reviewsNote{
  margin-top:10px;
  margin-bottom:10px;
  margin-left:8px;
  font-size:12px;
  color:var(--muted);
}

html[data-theme="dark"] .reviewName{color:rgba(255,255,255,.92)}
html[data-theme="dark"] .reviewMeta{color:rgba(255,255,255,.60)}
html[data-theme="dark"] .reviewText{color:rgba(255,255,255,.72)}
html[data-theme="dark"] .ratingRow{color:rgba(255,255,255,.76)}
html[data-theme="dark"] .bullets{color:rgba(255,255,255,.66)}
html[data-theme="dark"] .label{color:rgba(255,255,255,.90)}
html[data-theme="dark"] .pill{color:rgba(255,255,255,.86)}
html[data-theme="dark"] .footerbar{
  color: rgba(255,255,255,.55);
}
html[data-theme="dark"] .theme-toggle-link{
  color: rgba(255,255,255,.55);
}

/* Icon lists */
.ul-icons{
  list-style:none;
  padding-left:0;
}
.ul-icons li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.ul-icons li::before{
  content:"";
  width:18px;
  height:18px;
  margin-top:2px;
  flex:0 0 18px;
  background-size:18px 18px;
  background-repeat:no-repeat;
  opacity:.85;
}

/* Green check for highlights */
.ul-check li::before{
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M5 13l4 4L19 7" stroke="%2322c55e" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}


/* Location icons */
.ul-location li::before{
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M12 22s7-4.5 7-11a7 7 0 1 0-14 0c0 6.5 7 11 7 11z" stroke="%23666" stroke-width="1.8"/><circle cx="12" cy="11" r="2.5" stroke="%23666" stroke-width="1.8"/></svg>');
}

/* Refined highlight icons */
.ul-check li:nth-child(1)::before{ /* balcony / sun */
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="4" stroke="%23f59e0b" stroke-width="2"/><path d="M12 2v3M12 19v3M2 12h3M19 12h3M4.9 4.9l2.1 2.1M17 17l2.1 2.1M19.1 4.9L17 7M7 17l-2.1 2.1" stroke="%23f59e0b" stroke-width="2" stroke-linecap="round"/></svg>');
}

.ul-check li:nth-child(2)::before{ /* kitchen */
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><rect x="3" y="4" width="18" height="16" rx="2" stroke="%23666" stroke-width="1.8"/><path d="M8 4v16M16 4v16M3 10h18" stroke="%23666" stroke-width="1.6"/></svg>');
}

.ul-check li:nth-child(3)::before{ /* bed */
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M3 12h18v6H3zM3 10a3 3 0 0 1 3-3h4a3 3 0 0 1 3 3M14 10a3 3 0 0 1 3-3h1a3 3 0 0 1 3 3" stroke="%23666" stroke-width="1.8"/></svg>');
}

.ul-check li:nth-child(4)::before{ /* AC / snowflake */
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M12 2v20M2 12h20M5 5l14 14M19 5L5 19" stroke="%230ea5e9" stroke-width="1.8" stroke-linecap="round"/></svg>');
}

.ul-check li:nth-child(5)::before{ /* wifi */
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M2 8c5-4 15-4 20 0M5 12c4-3 10-3 14 0M8.5 16c2-1.5 5-1.5 7 0" stroke="%23666" stroke-width="1.8" stroke-linecap="round"/><circle cx="12" cy="19" r="1.5" fill="%23666"/></svg>');
}

/* Refined greyscale highlight icons */
.ul-check li::before{
  background-image:none;
}

.ul-check li:nth-child(1)::before{ /* location pin */
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M12 22s7-4.5 7-11a7 7 0 1 0-14 0c0 6.5 7 11 7 11z" stroke="%23777777" stroke-width="1.8"/><circle cx="12" cy="11" r="2.5" stroke="%23777777" stroke-width="1.8"/></svg>');
}

.ul-check li:nth-child(2)::before{ /* fork & knife */
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M6 2v8M9 2v8M6 10h3M15 2v20M18 2v6c0 2-3 2-3 0V2" stroke="%23777777" stroke-width="1.8" stroke-linecap="round"/></svg>');
}

.ul-check li:nth-child(3)::before{ /* bed (simplified) */
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><rect x="3" y="11" width="18" height="6" rx="1.5" stroke="%23777777" stroke-width="1.8"/><rect x="5" y="7" width="6" height="4" rx="1" stroke="%23777777" stroke-width="1.8"/></svg>');
}

.ul-check li:nth-child(4)::before{ /* AC / snowflake minimal */
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M12 2v20M2 12h20M6 6l12 12M18 6L6 18" stroke="%23777777" stroke-width="1.8" stroke-linecap="round"/></svg>');
}

.ul-check li:nth-child(5)::before{ /* wifi */
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M2 8c5-4 15-4 20 0M5 12c4-3 10-3 14 0M8.5 16c2-1.5 5-1.5 7 0" stroke="%23777777" stroke-width="1.8" stroke-linecap="round"/><circle cx="12" cy="19" r="1.5" fill="%23777777"/></svg>');
}

/* Kitchen icon – clear fork & knife (Welcome Beyond–style) */
.ul-check li:nth-child(2)::before{
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M6 2v7M8 2v7M10 2v7M6 9h4v13" stroke="%23777777" stroke-width="1.6" stroke-linecap="round"/><path d="M15 2v20" stroke="%23777777" stroke-width="1.6" stroke-linecap="round"/></svg>');
}

/* Comfort & amenities: greyscale checkmarks */
.ul-amenities li::before{
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M5 13l4 4L19 7" stroke="%23777777" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}


.reviewsActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:10px;
}

@media (max-width: 640px){
  /* Reviews buttons spacing on mobile */
  .reviewsActions{flex-direction:column; align-items:flex-start; gap:10px;}

  /* Footer: keep copyright readable + put theme toggle on its own line */
  .footerbar{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-left: 0;
  }
  .theme-toggle-link{
    display: inline-block;
    align-self: flex-start;
  }

  .hero-sub{
    transform: translateY(90px);
    margin-bottom: 18px;
    white-space: normal;
    padding: 0 10px;
  }

  .hero-title{ font-size: 44px; line-height: 1.05; }
  .hero-loc{ font-size: 12px; }
}
