/* ============================================================
   1 The Strand — stylesheet
   Palette taken from the headland: slate, marram grass, gorse,
   wet sand, and the white render of the house itself.
   ============================================================ */

:root {
  --slate:      #17242C;
  --shell:      #EFEEE9;
  --shell-2:    #E3E2DB;
  --sand:       #D6CBB6;
  --marram:     #8B9077;
  --gorse:      #E9A21B;
  --tide:       #2E6B78;

  --ink:        var(--slate);
  --rule:       rgba(23, 36, 44, 0.16);
  --rule-dark:  rgba(239, 238, 233, 0.22);

  --display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --body:    'Newsreader', Georgia, 'Times New Roman', serif;
  --mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --shell-pad: clamp(1.25rem, 5vw, 4.5rem);
  --measure:   68ch;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--shell);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.115rem);
  line-height: 1.6;
  font-optical-sizing: auto;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--gorse);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---- Type ------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 1.4rem + 5.6vw, 6rem); }
h2 { font-size: clamp(1.85rem, 1.2rem + 2.4vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem); letter-spacing: -0.015em; }

p { margin: 0 0 1em; max-width: var(--measure); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--marram);
  margin: 0 0 1.1rem;
  display: block;
}

.lede { font-size: 1.15em; line-height: 1.55; }

/* ---- Layout shells ---------------------------------------- */

.wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}

.band { padding-block: clamp(3.5rem, 8vw, 7rem); }
.band--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.band--dark {
  background: var(--slate);
  color: var(--shell);
}
.band--dark .eyebrow { color: var(--gorse); }
.band--dark a { color: var(--shell); }

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

/* ---- Header: two rows, one sticky unit --------------------
   Row 1 is which page. Row 2 is which part of the page.
   Both scroll away together, so there is no offset arithmetic.
   ----------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--shell) 94%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}

.masthead__row { border-bottom: 1px solid var(--rule); }
.masthead__row:last-child { border-bottom: 0; }

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 64px;
}

.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.brand span {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--marram);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.2vw, 1.9rem);
}

.nav a {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding-block: 0.35rem;
  border-bottom: 1.5px solid transparent;
  white-space: nowrap;
}
.nav a:hover { border-bottom-color: var(--gorse); }
.nav a[aria-current='page'] { border-bottom-color: var(--slate); }
.nav .btn { border-bottom: 0; }

/* --- Section nav (row 2) --- */

.subnav { background: var(--shell-2); }

.subnav__links {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.subnav__links::-webkit-scrollbar { display: none; }

.subnav__links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--marram);
  white-space: nowrap;
  padding: 0.72rem 0;
  margin-right: clamp(1.1rem, 3vw, 2.2rem);
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.subnav__links a:last-child { margin-right: 0; }
.subnav__links a:hover { color: var(--ink); }
.subnav__links a[aria-current='true'] {
  color: var(--ink);
  border-bottom-color: var(--gorse);
}

/* Anchored sections must clear the sticky header when jumped to. */
section[id] { scroll-margin-top: 112px; }

/* Standing heading for a generated band. */
.bandhead {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.4rem;
  margin-bottom: 1.6rem;
}
.bandhead h2 { font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.1rem); }
.bandhead p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--marram);
  max-width: 42ch;
}

/* ---- Buttons ---------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.72rem 1.15rem;
  background: var(--slate);
  color: var(--shell);
  border: 1.5px solid var(--slate);
  transition: background 0.16s ease, color 0.16s ease;
}
.btn:hover { background: var(--gorse); border-color: var(--gorse); color: var(--slate); }

.btn--ghost { background: transparent; color: var(--slate); }
.btn--ghost:hover { background: var(--slate); color: var(--shell); }

.band--dark .btn { background: var(--gorse); border-color: var(--gorse); color: var(--slate); }
.band--dark .btn:hover { background: var(--shell); border-color: var(--shell); }
.band--dark .btn--ghost { background: transparent; color: var(--shell); border-color: var(--rule-dark); }
.band--dark .btn--ghost:hover { background: var(--shell); color: var(--slate); border-color: var(--shell); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }

/* ============================================================
   SIGNATURE: the elevation stack
   Four storeys, drawn as stacked bands. Same device is used
   small in the hero and large on the house page.
   ============================================================ */

.stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}

.stack__row {
  position: relative;
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  align-items: stretch;
  border: 1px solid var(--rule-dark);
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  padding: 0;
  cursor: default;
  opacity: 0;
  transform: translateY(10px);
  animation: settle 0.6s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}

.stack__row:nth-child(1) { animation-delay: 0.05s; }
.stack__row:nth-child(2) { animation-delay: 0.14s; }
.stack__row:nth-child(3) { animation-delay: 0.23s; }
.stack__row:nth-child(4) { animation-delay: 0.32s; }

@keyframes settle {
  to { opacity: 1; transform: none; }
}

.stack__no {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gorse);
  border-right: 1px solid var(--rule-dark);
  padding: 0.85rem 0 0.85rem 0.75rem;
  display: flex;
  align-items: center;
}

.stack__body { padding: 0.85rem 1rem; }

.stack__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.99rem;
  letter-spacing: -0.015em;
  display: block;
}

.stack__view {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--marram);
  margin-top: 0.28rem;
  display: block;
}

/* the living floor is the one with the balcony — mark it */
.stack__row--key { background: rgba(233, 162, 27, 0.11); }
.stack__row--key .stack__view { color: var(--gorse); }

/* interactive variant, house page */
.stack--live .stack__row {
  cursor: pointer;
  border-color: var(--rule);
  transition: background 0.16s ease, border-color 0.16s ease;
}
.stack--live .stack__no { border-right-color: var(--rule); color: var(--marram); }
.stack--live .stack__row:hover { background: var(--shell-2); }
.stack--live .stack__row[aria-pressed='true'] {
  background: var(--slate);
  color: var(--shell);
  border-color: var(--slate);
}
.stack--live .stack__row[aria-pressed='true'] .stack__no {
  color: var(--gorse);
  border-right-color: var(--rule-dark);
}
.stack--live .stack__row[aria-pressed='true'] .stack__view { color: var(--sand); }

.floorpanel {
  border-left: 1.5px solid var(--gorse);
  padding-left: clamp(1rem, 2.5vw, 1.8rem);
}
.floorpanel h3 { margin-bottom: 0.9rem; }
.floorpanel ul { margin: 0; padding: 0; list-style: none; }
.floorpanel li {
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--rule);
  max-width: 56ch;
}
.floorpanel li:last-child { border-bottom: 0; }

/* ---- Hero ------------------------------------------------- */

.hero {
  background: var(--slate);
  color: var(--shell);
  padding-block: clamp(3.5rem, 9vw, 7.5rem);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}

.hero .eyebrow { color: var(--gorse); }

.hero h1 { margin-bottom: 1.3rem; }
.hero h1 em {
  font-style: normal;
  display: block;
  color: var(--sand);
  font-weight: 200;
}

.hero__lede { color: var(--shell-2); max-width: 46ch; }

.hero__aside { padding-bottom: 0.4rem; }

.hero__cap {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--marram);
  margin-bottom: 0.85rem;
}

/* ---- Fact strip ------------------------------------------- */

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.facts div {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem 1rem;
}
.facts dt {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--marram);
  margin-bottom: 0.4rem;
}
.facts dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

/* ---- Two-column section ----------------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.split--sticky > :first-child { position: sticky; top: 92px; }

/* ---- Cards ------------------------------------------------ */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.card {
  background: var(--shell);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: background 0.16s ease;
}
.card:hover { background: var(--shell-2); }
.card p { margin: 0; font-size: 0.96em; }
.card__go {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tide);
  margin-top: auto;
  padding-top: 0.8rem;
}

/* ---- Gallery ---------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 3px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--shell-2);
}
.gallery figure { margin: 0; }
.gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery figure:nth-child(1) img { aspect-ratio: 1 / 1; }

/* ---- Place list (eat / do) --------------------------------- */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 2.2rem;
}
.chip {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.42rem 0.8rem;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.chip:hover { border-color: var(--slate); }
.chip[aria-pressed='true'] { background: var(--slate); color: var(--shell); border-color: var(--slate); }

.places { list-style: none; margin: 0; padding: 0; }

.place {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: start;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--rule);
}
.place:first-child { border-top: 1px solid var(--rule); }

.place__dist {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding-top: 0.2rem;
}
.place__dist b { display: block; font-weight: 600; font-size: 1.02rem; }
.place__mode {
  color: var(--marram);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  display: block;
}

/* proportional distance rule — encodes how far, at a glance */
.place__bar {
  margin-top: 0.6rem;
  height: 1px;
  background: var(--rule);
  position: relative;
}
.place__bar i {
  position: absolute;
  inset: 0 auto 0 0;
  height: 1px;
  background: var(--marram);
  width: var(--w, 0%);
}
.place__bar i::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gorse);
}

.place__name { margin-bottom: 0.15rem; }
.place__where {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--marram);
  display: block;
  margin-bottom: 0.6rem;
}
.place__note { margin: 0; font-size: 0.97em; }

.place__links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-end;
  padding-top: 0.2rem;
}
.place__links a {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
}
.place__links a:hover { border-bottom-color: var(--gorse); }
.place__links a.is-site { color: var(--tide); }

/* ---- Callout ---------------------------------------------- */

.callout {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gorse);
  padding: 1.3rem 1.5rem;
  background: var(--shell-2);
  margin: 2rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout strong { font-family: var(--display); }

/* ---- Lists ------------------------------------------------ */

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li {
  padding: 0.6rem 0 0.6rem 1.5rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
  max-width: 56ch;
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 8px;
  height: 1px;
  background: var(--gorse);
}

/* ---- Footer ----------------------------------------------- */

.foot {
  background: var(--slate);
  color: var(--shell-2);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  font-size: 0.94rem;
}
.foot__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.foot h4 {
  font-size: 0.7rem;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gorse);
  margin-bottom: 0.9rem;
}
.foot a { color: var(--shell); text-decoration: none; border-bottom: 1px solid var(--rule-dark); }
.foot a:hover { border-bottom-color: var(--gorse); }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 0.5rem; }
.foot__fine {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule-dark);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--marram);
}

/* ---- Responsive ------------------------------------------- */

@media (max-width: 860px) {
  .hero__grid,
  .split { grid-template-columns: 1fr; }
  .split--sticky > :first-child { position: static; }
  .gallery figure:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery figure:nth-child(1) img { aspect-ratio: 4 / 3; }
}

@media (max-width: 720px) {
  .place {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .place__links { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .place__dist { display: flex; align-items: baseline; gap: 0.7rem; }
  .place__dist b { display: inline; }
  .place__mode { display: inline; margin-top: 0; }
  .place__bar { display: none; }
  .masthead__inner { flex-wrap: wrap; padding-block: 0.55rem; gap: 0.5rem 1rem; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 0.2rem; scrollbar-width: none; }
  .nav::-webkit-scrollbar { display: none; }
  section[id] { scroll-margin-top: 148px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stack__row { animation: none; opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ============================================================
   Hero with a photograph behind it
   Falls back to plain slate if assets/img/hero/ is empty, so an
   absent image degrades to the original header rather than a gap.
   ============================================================ */

.hero--image {
  background-image:
    linear-gradient(
      to right,
      rgba(23, 36, 44, 0.94) 0%,
      rgba(23, 36, 44, 0.86) 45%,
      rgba(23, 36, 44, 0.62) 100%
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center 55%;
  padding-block: clamp(4.5rem, 11vw, 9rem);
}

@media (max-width: 860px) {
  .hero--image {
    background-image:
      linear-gradient(to bottom, rgba(23, 36, 44, 0.9), rgba(23, 36, 44, 0.96)),
      var(--hero-image);
  }
}

/* ---- Instagram ------------------------------------------- */

.iglink {
  display: inline-flex;
  align-items: center;
  color: var(--marram);
  border-bottom: 0 !important;
  transition: color 0.15s ease;
}
.iglink:hover { color: var(--gorse); }

/* ============================================================
   Photographs, grouped by area
   ============================================================ */

.area { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.area:last-child { margin-bottom: 0; }

.area__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1.2rem;
  padding-bottom: 0.75rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--rule);
}
.area__head h3 { font-size: clamp(1.2rem, 1rem + 0.8vw, 1.55rem); }
.area__head p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--marram);
  max-width: 46ch;
}
.area__count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  color: var(--gorse);
}

.shot {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--shell-2);
  cursor: zoom-in;
  overflow: hidden;
}
.shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), opacity 0.2s ease;
}
.shot:hover img { transform: scale(1.035); opacity: 0.93; }

/* First shot in an area runs wide — it is usually the whole-room view. */
.area .gallery figure:first-child { grid-column: span 2; grid-row: span 2; }
.area .gallery figure:first-child img { aspect-ratio: 1 / 1; }

@media (max-width: 860px) {
  .area .gallery figure:first-child { grid-column: span 1; grid-row: span 1; }
  .area .gallery figure:first-child img { aspect-ratio: 4 / 3; }
}

/* ---- Lightbox -------------------------------------------- */

body.is-locked { overflow: hidden; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(13, 21, 26, 0.95);
  backdrop-filter: blur(4px);
}
.lightbox.is-open { display: flex; }

.lightbox__stage {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  object-fit: contain;
}
.lightbox__stage figcaption {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--marram);
}

.lightbox__nav,
.lightbox__close {
  border: 1px solid rgba(239, 238, 233, 0.28);
  background: transparent;
  color: var(--shell);
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.lightbox__nav {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  font-size: 1.7rem;
  padding-bottom: 4px;
}
.lightbox__close {
  position: absolute;
  top: clamp(0.75rem, 3vw, 1.6rem);
  right: clamp(0.75rem, 3vw, 1.6rem);
  width: 40px;
  height: 40px;
  font-size: 0.95rem;
}
.lightbox__nav:hover,
.lightbox__close:hover {
  background: var(--gorse);
  border-color: var(--gorse);
  color: var(--slate);
}

@media (max-width: 620px) {
  .lightbox__nav { width: 38px; height: 38px; font-size: 1.4rem; }
  .lightbox__stage img { max-height: 66vh; }
}

@media (prefers-reduced-motion: reduce) {
  .shot:hover img { transform: none; }
}
