:root{
  --ink:#2b2a26;
  --ink-soft:#5a574f;
  --paper:#f6f3ec;
  --paper-2:#efeadf;
  --sage:#4a5d4e;
  --sage-deep:#36473b;
  --line:#dcd6c8;
  --accent:#8a6d3b;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Georgia","Times New Roman",serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.7;
  font-size:19px;
  -webkit-font-smoothing:antialiased;
}
.wrap{max-width:760px;margin:0 auto;padding:0 24px}

/* Language navigation */
.language-nav{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  font-family:Arial,Helvetica,sans-serif;
}
.language-nav .btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  min-height:42px;
  padding:9px 16px 9px 12px;
  font-size:14px;
  font-weight:600;
  border-radius:999px;
  letter-spacing:.01em;
  transition:background .2s,border-color .2s,box-shadow .2s,color .2s,transform .2s;
}
.language-nav .btn-outline{
  background:rgba(255,255,255,.38);
  border-color:rgba(74,93,78,.32);
  box-shadow:0 2px 8px rgba(20,18,14,.05);
}
.language-nav .btn-outline:hover,
.language-nav .btn-outline:focus{
  background:var(--sage);
  border-color:var(--sage);
  box-shadow:0 4px 12px rgba(20,18,14,.12);
  transform:translateY(-1px);
}
.flag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:18px;
  overflow:hidden;
  border-radius:2px;
  box-shadow:0 0 0 1px rgba(20,18,14,.12),0 1px 2px rgba(20,18,14,.12);
}
.flag .fi{
  width:100%;
  line-height:18px;
}

/* Hero */
header.hero{
  text-align:center;
  padding:88px 24px 68px;
}
header.hero h1{
  font-size:clamp(40px,8vw,68px);
  font-weight:normal;
  letter-spacing:0.5px;
  line-height:1.1;
  margin-bottom:28px;
}
header.hero .intro{
  max-width:620px;
  margin:0 auto 24px;
  color:var(--ink-soft);
  font-size:clamp(18px,2.4vw,21px);
}
.btn{
  display:inline-block;
  background:var(--sage);
  color:#fff;
  text-decoration:none;
  border:1px solid var(--sage);
  padding:14px 30px;
  border-radius:4px;
  font-family:Arial,Helvetica,sans-serif;
  font-size:16px;
  line-height:1.2;
  cursor:pointer;
  transition:background .2s;
}
.btn:hover,.btn:focus{background:var(--sage-deep)}
.btn-outline{
  background:transparent;
  color:var(--sage);
  border:1px solid var(--sage);
}
.btn-outline:hover,.btn-outline:focus{background:var(--sage);color:#fff}

/* Sections */
section{padding:64px 0;border-top:1px solid var(--line)}
section.alt{background:var(--paper-2)}
h2{
  font-size:clamp(28px,5vw,38px);
  font-weight:normal;
  text-align:center;
  margin-bottom:36px;
  letter-spacing:0.3px;
}
h3{
  font-size:21px;
  font-weight:normal;
  color:var(--sage-deep);
  margin-bottom:6px;
}

/* Feature list */
ul.features{list-style:none}
ul.features li{
  padding:18px 0;
  border-bottom:1px solid var(--line);
}
ul.features li:last-child{border-bottom:none}
ul.features p{color:var(--ink-soft);font-size:17px}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.gallery img{
  width:100%;
  height:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:6px;
  display:block;
  cursor:pointer;
  transition:opacity .2s,transform .2s,box-shadow .2s;
}
.gallery img:hover,.gallery img:focus{
  opacity:.9;
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(20,18,14,.14);
}
@media(max-width:600px){
  .gallery{grid-template-columns:repeat(2,1fr)}
}

/* Lightbox */
.lightbox{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(20,18,14,.9);
  z-index:1000;
  cursor:zoom-out;
  padding:24px;
}
.lightbox.open{display:flex;align-items:center;justify-content:center}
.lightbox img{
  max-width:calc(100% - 120px);
  max-height:100%;
  border-radius:6px;
}
.lightbox .close{
  position:absolute;
  top:18px;
  right:24px;
  z-index:2;
  padding:0;
  border:0;
  background:transparent;
  color:#fff;
  font-family:Arial,Helvetica,sans-serif;
  font-size:34px;
  line-height:1;
  text-decoration:none;
  cursor:pointer;
}
.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:64px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:4px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-family:Arial,Helvetica,sans-serif;
  font-size:42px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .2s,border-color .2s,transform .2s;
}
.lightbox-nav:hover,
.lightbox-nav:focus{
  background:rgba(255,255,255,.22);
  border-color:rgba(255,255,255,.5);
}
.lightbox-nav.prev{left:24px}
.lightbox-nav.next{right:24px}
@media(max-width:600px){
  .lightbox{padding:56px 14px 24px}
  .lightbox img{max-width:100%}
  .lightbox-nav{
    width:40px;
    height:52px;
    background:rgba(20,18,14,.45);
    font-size:36px;
  }
  .lightbox-nav.prev{left:10px}
  .lightbox-nav.next{right:10px}
}

/* Prices */
.price-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:6px;
  padding:34px;
  text-align:left;
  border-top:4px solid var(--sage);
  box-shadow:0 10px 28px rgba(20,18,14,.07);
}
.price-card .big{
  font-size:46px;
  color:var(--sage-deep);
  line-height:1.1;
  text-align:center;
}
.price-card .big small{font-size:18px;color:var(--ink-soft)}
.price-card ul{list-style:none;margin-top:24px;text-align:left}
.price-card ul li{
  position:relative;
  padding:8px 0 8px 24px;
  color:var(--ink-soft);
  font-size:17px;
  border-top:1px solid var(--line);
}
.price-card ul li:before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
}
.price-card .note{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid var(--line);
  font-size:16px;
  color:var(--ink-soft);
  font-style:italic;
}

/* Nearby area */
.area-copy p{
  max-width:660px;
  margin:0 auto;
  color:var(--ink-soft);
  font-size:18px;
}
.area-copy .area-note{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid var(--line);
  font-size:16px;
  font-style:italic;
}

/* Directions */
.place-card{
  max-width:560px;
  margin:0 auto;
  padding:18px 20px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.place{text-align:center;color:var(--ink-soft);font-size:17px}
.directions-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
  font-family:Arial,Helvetica,sans-serif;
}
.directions-actions .btn{
  min-width:170px;
  text-align:center;
}

/* Contact */
.contact-grid{text-align:center}
.contact-grid a{color:var(--sage-deep)}
.contact-actions{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:6px;
}
.contact-grid .contact-action{
  display:flex;
  min-height:104px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:18px 14px;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:6px;
  text-decoration:none;
  box-shadow:0 6px 16px rgba(20,18,14,.05);
  transition:background .2s,border-color .2s,box-shadow .2s,transform .2s;
}
.contact-grid .contact-action span{
  color:var(--ink-soft);
  font-family:Arial,Helvetica,sans-serif;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
}
.contact-grid .contact-action strong{
  color:var(--sage-deep);
  font-family:Arial,Helvetica,sans-serif;
  font-size:15px;
  line-height:1.35;
  overflow-wrap:anywhere;
}
.contact-grid .contact-action.primary{
  background:var(--sage);
  border-color:var(--sage);
}
.contact-grid .contact-action.primary span,
.contact-grid .contact-action.primary strong{color:#fff}
.contact-grid .contact-action:hover,
.contact-grid .contact-action:focus{
  transform:translateY(-2px);
  border-color:var(--sage);
  box-shadow:0 10px 24px rgba(20,18,14,.12);
}
.contact-note{color:var(--ink-soft);font-size:17px;margin-top:26px;max-width:600px;margin-left:auto;margin-right:auto}

/* Footer */
footer{
  background:var(--sage-deep);
  color:#e9ece8;
  text-align:center;
  padding:40px 24px;
  font-family:Arial,Helvetica,sans-serif;
  font-size:15px;
  line-height:1.8;
}
footer a{color:#fff}

@media(max-width:520px){
  body{font-size:18px}
  header.hero{padding:64px 20px 52px}
  section{padding:48px 0}
  .contact-actions{grid-template-columns:1fr}
  .contact-grid .contact-action{min-height:86px}
  .directions-actions{align-items:stretch;flex-direction:column}
  .directions-actions .btn{width:100%}
}

.fib, .fi {
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
}

.fi {
  position: relative;
  display: inline-block;
  width: 1.333333em;
  line-height: 1em;
}
.fi:before {
  content: " ";
}
.fi.fis {
  width: 1em;
}

.fi-gb {
  background-image: url(../flags/gb.svg);
}

.fi-de {
  background-image: url(../flags/de.svg);
}

.fi-se {
  background-image: url(../flags/se.svg);
}
