:root {
  --paper: #f7f6f1;
  --ink: #263d33;
  --green: #284c40;
  --muted: #737b71;
  --line: #dcded4;
  --white: #fff;
  --serif: Georgia, "Times New Roman", serif;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.4;
  cursor: default;
}
img {
  display: block;
  max-width: 100%;
}
button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #bb8449;
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -2px;
}
h1 {
  font-size: clamp(52px, 5.65vw, 86px);
  line-height: 1.02;
}
h2 {
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.12;
}
h1 em,
h2 em {
  font-weight: 400;
  color: #748368;
}
.wrap {
  width: min(1360px, calc(100% - 104px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.8px;
  line-height: 1.6;
  font-weight: 600;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6f855b;
  vertical-align: middle;
  margin-right: 7px;
}
.site-header {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand strong {
  display: block;
  letter-spacing: 2.2px;
  font-size: 13px;
  font-weight: 500;
}
.brand small {
  display: block;
  font-size: 7px;
  letter-spacing: 1.5px;
  margin-top: 6px;
}
.brand img {
  border-radius: 0;
}
.site-header nav {
  display: flex;
  gap: 30px;
  font-size: 12px;
}
.site-header nav a {
  padding: 12px 0;
}
.site-header nav a:hover {
  color: #819373;
}
.nav-contact {
  font-size: 12px;
  border-bottom: 1px solid #7e8a7c;
  padding: 10px 0;
}
.nav-contact span {
  margin-left: 23px;
}
.hero {
  display: grid;
  grid-template-columns: 43% 57%;
  padding-top: 60px;
  padding-bottom: 70px;
  min-height: 635px;
  align-items: center;
}
.hero-copy {
  padding: 0 25px 10px 0;
}
.hero h1 {
  margin: 29px 0 23px;
}
.hero-description {
  font-size: 14px;
  color: #6d766d;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  border: 1px solid var(--green);
  background: var(--green);
  padding: 17px 23px;
  color: var(--white);
  font-size: 12px;
  line-height: 1.2;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #39614f;
  transform: translateY(-2px);
}
.button span {
  font-size: 19px;
  line-height: 0.8;
}
.text-link {
  font-size: 11px;
  border-bottom: 1px solid #a5ad9c;
  padding-bottom: 6px;
  display: inline-block;
}
.hero-location {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 44px;
  font-size: 12px;
}
.hero-location > span:first-child {
  font-size: 30px;
  color: #8b987f;
}
.hero-location small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 6px;
}
.hero-visual {
  position: relative;
  padding-left: 28px;
  margin-bottom: 26px;
}
.hero-photo {
  padding: 0;
  border: 0;
  width: 100%;
  height: 455px;
  background: #e2e3d8;
  overflow: hidden;
  position: relative;
}
.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 0.6s;
}
.hero-photo:hover > img {
  transform: scale(1.035);
}
.photo-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 20px 24px;
  color: white;
  background: linear-gradient(transparent, #16231b99);
  font-size: 9px;
  letter-spacing: 1.5px;
  padding-top: 45px;
}
.photo-tag > span {
  font-size: 20px;
}
.hero-inset {
  position: absolute;
  width: 168px;
  height: 206px;
  left: -38px;
  bottom: -40px;
  background: var(--paper);
  padding: 7px;
  border: 0;
  box-shadow: 0 12px 30px #1d35271a;
  transform: rotate(-4deg);
  transition: transform 0.2s;
}
.hero-inset:hover {
  transform: rotate(0deg) translateY(-5px);
}
.hero-inset img {
  width: 100%;
  height: 166px;
  object-fit: cover;
}
.hero-inset > span {
  font-size: 9px;
  display: block;
  margin-top: 10px;
}
.vertical-note {
  position: absolute;
  writing-mode: vertical-rl;
  right: -25px;
  top: 0;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--muted);
}
.facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 1fr 1.5fr;
  padding: 30px 0;
  gap: 25px;
  align-items: center;
}
.facts > div {
  border-right: 1px solid var(--line);
}
.facts strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  display: block;
  line-height: 1;
}
.facts strong small {
  font-size: 18px;
}
.facts > div > span {
  font-size: 8px;
  letter-spacing: 1.1px;
  display: block;
  margin-top: 12px;
  color: var(--muted);
}
.facts > a {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.facts > a small {
  display: block;
  font-size: 8px;
  letter-spacing: 1.1px;
  color: var(--muted);
  margin-top: 9px;
}
.round-arrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #abb5a7;
  border-radius: 50%;
  font-size: 20px;
  flex-shrink: 0;
}
.section {
  padding-top: 85px;
  padding-bottom: 85px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 36px;
}
.section-heading h2 {
  margin-top: 13px;
}
.section-heading > p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  padding-bottom: 3px;
}
.explore-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 245px;
  gap: 36px;
  align-items: stretch;
}
.map-panel {
  background: #eeefe6;
  border: 1px solid #dde0d4;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.map-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 20px;
}
.map-toolbar > span {
  font-size: 8px;
  letter-spacing: 1.2px;
}
.view-switch {
  display: flex;
  background: #e2e5d9;
  padding: 3px;
  gap: 2px;
}
.view-switch button {
  background: transparent;
  border: 0;
  padding: 8px 10px;
  font-size: 10px;
}
.view-switch button[aria-pressed="true"] {
  background: #fefef9;
  box-shadow: 0 1px 4px #00000012;
}
.floorplan {
  flex: 1;
  display: grid;
  align-items: center;
  min-height: 390px;
  overflow: hidden;
  background-image: radial-gradient(#6c7d5726 0.6px, transparent 0.6px);
  background-size: 17px 17px;
}
.floorplan svg {
  width: 100%;
  height: auto;
  display: block;
}
.floor-room {
  cursor: pointer;
}
.floor-room polygon {
  transition: fill 0.2s;
}
.floor-room:hover .room-floor,
.floor-room:focus .room-floor {
  fill: #aab999;
}
.floor-room:hover .room-number {
  fill: var(--green);
}
.plan-pin {
  cursor: pointer;
  transition: filter 0.2s;
}
.plan-pin:hover {
  filter: drop-shadow(0 3px 4px #22422a55);
}
.map-footer {
  padding: 12px 19px 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 8px;
  color: #77826e;
  letter-spacing: 0.3px;
}
.room-index {
  padding-top: 8px;
}
.room-index > .eyebrow {
  color: var(--muted);
  margin-bottom: 14px;
}
.room-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  width: 100%;
  padding: 11px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.room-item:hover {
  color: #7c915f;
}
.room-item img {
  width: 42px;
  height: 34px;
  object-fit: cover;
}
.room-item .room-name {
  flex: 1;
  font-size: 11px;
}
.room-item small {
  color: var(--muted);
  font-size: 9px;
  display: block;
  margin-top: 5px;
}
.room-item .room-number {
  font-family: var(--serif);
  font-size: 13px;
  color: #94a18a;
  width: 16px;
}
.plan-link {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  margin-top: 21px;
  padding: 10px 0;
}
.gallery-section {
  background: #eeeee6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.gallery-filters button {
  border: 1px solid #cfd5c7;
  border-radius: 25px;
  padding: 10px 16px;
  background: transparent;
  font-size: 10px;
  white-space: nowrap;
}
.gallery-filters button[aria-pressed="true"] {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 20px;
}
.gallery-card {
  border: 0;
  background: none;
  padding: 0;
  text-align: left;
  position: relative;
  min-width: 0;
}
.gallery-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e1e2d7;
  position: relative;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-card:hover img {
  transform: scale(1.04);
}
.image-expand {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 28px;
  height: 28px;
  background: #f7f6f1ed;
  display: grid;
  place-items: center;
  font-size: 15px;
  border-radius: 50%;
}
.gallery-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 11px;
}
.gallery-caption small {
  font-size: 9px;
  color: var(--muted);
}
.button-outline {
  color: var(--green);
  background: transparent;
}
.button-outline:hover {
  color: white;
}
#show-more {
  display: flex;
  margin: 38px auto 0;
}
#show-more[hidden] {
  display: none;
}
.details {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 95px;
}
.detail-intro h2 {
  margin: 18px 0 24px;
}
.detail-intro > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 360px;
}
.detail-intro .text-link {
  margin-top: 28px;
}
.detail-data dl {
  margin: 0;
}
.detail-data dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.detail-data dt {
  color: var(--muted);
  flex-shrink: 0;
}
.detail-data dd {
  text-align: right;
  margin: 0;
}
.detail-data dd small {
  font-size: 9px;
}
.source-note {
  font-size: 10px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 22px;
}
.enquire {
  background: var(--green);
  color: #f6f5ec;
  padding: 55px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.enquire .eyebrow {
  color: #b5c1a5;
}
.enquire h2 {
  margin: 15px 0 18px;
}
.enquire h2 em {
  color: #c2ceaa;
}
.enquire p:not(.eyebrow) {
  font-size: 12px;
  color: #c7d0c3;
  line-height: 1.8;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  min-width: 260px;
}
.button-light {
  background: #f1f1e6;
  color: var(--green);
  border-color: #f1f1e6;
}
.button-light:hover {
  background: #dbe3cf;
  color: var(--green);
}
.contact-actions > a:not(.button) {
  font-size: 12px;
  text-align: center;
  color: #dce2d6;
}
.contact-actions > a > span {
  margin-left: 18px;
}
footer {
  padding-top: 38px;
  padding-bottom: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
footer .brand strong {
  font-size: 10px;
  letter-spacing: 1.3px;
}
footer > span,
footer > a:last-child {
  font-size: 10px;
  color: var(--muted);
}
.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 20px;
  background: white;
}
dialog {
  border: 0;
  padding: 24px 32px;
  background: #19241e;
  color: #f8f6ee;
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  overflow: hidden;
}
dialog[open] {
  display: flex;
  flex-direction: column;
}
dialog::backdrop {
  background: #19241ef0;
}
.lightbox-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}
.lightbox-top .eyebrow {
  font-size: 8px;
  color: #a8b29e;
}
.lightbox-top h2 {
  font-size: 26px;
  letter-spacing: -0.5px;
  margin-top: 5px;
}
.icon-button {
  width: 44px;
  height: 44px;
  background: #ffffff10;
  border: 1px solid #ffffff30;
  border-radius: 50%;
  color: white;
  font-size: 23px;
  flex-shrink: 0;
}
.icon-button:hover {
  background: #ffffff28;
}
.lightbox-stage {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-height: 0;
  flex: 1;
  padding: 20px 0 5px;
  touch-action: pan-y;
}
.lightbox-stage > img {
  height: 100%;
  width: calc(100% - 136px);
  min-height: 0;
  object-fit: contain;
}
.lightbox-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  padding: 13px 68px 16px;
  color: #c3cbbf;
}
.lightbox-bottom > span {
  font-size: 10px;
  color: #899b89;
}
.lightbox-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  min-height: 68px;
  flex-shrink: 0;
  justify-content: flex-start;
  padding: 0 68px 6px;
  scrollbar-width: thin;
}
.lightbox-thumbs button {
  width: 72px;
  height: 54px;
  border: 2px solid transparent;
  padding: 2px;
  background: none;
  flex-shrink: 0;
  opacity: 0.55;
}
.lightbox-thumbs button[aria-current="true"] {
  border-color: #d5dfb9;
  opacity: 1;
}
.lightbox-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body:has(dialog[open]) {
  overflow: hidden;
}
@media (min-width: 1550px) {
  .hero {
    padding-block: 80px;
  }
  .hero-photo {
    height: 530px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header nav {
    gap: 18px;
  }
  .hero {
    grid-template-columns: 44% 56%;
  }
  .hero h1 {
    font-size: 62px;
  }
  .hero-visual {
    padding-left: 5px;
  }
  .hero-photo {
    height: 415px;
  }
  .hero-inset {
    width: 142px;
    height: 180px;
    left: -18px;
  }
  .hero-inset img {
    height: 140px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .explore-layout {
    grid-template-columns: minmax(0, 1fr) 200px;
    gap: 25px;
  }
  .floorplan {
    min-height: 370px;
  }
  .map-toolbar {
    padding: 14px;
  }
  .map-toolbar > span {
    font-size: 7px;
  }
  .map-footer {
    font-size: 7px;
  }
  .details {
    gap: 55px;
  }
  .facts {
    gap: 18px;
  }
  .facts > a {
    font-size: 10px;
  }
  .facts > a small {
    font-size: 7px;
  }
  .enquire {
    padding: 45px 40px;
  }
  .gallery-filters {
    gap: 6px;
  }
  .gallery-filters button {
    padding: 9px 12px;
  }
}
@media (max-width: 760px) {
  :root {
    scroll-padding-top: 15px;
  }
  .wrap {
    width: calc(100% - 36px);
  }
  .site-header {
    height: 80px;
    gap: 12px;
  }
  .brand strong {
    font-size: 11px;
    letter-spacing: 1.7px;
  }
  .brand small {
    font-size: 6px;
    letter-spacing: 1px;
  }
  .brand img {
    width: 33px;
    height: 33px;
  }
  .site-header nav {
    display: none;
  }
  .nav-contact {
    font-size: 11px;
  }
  .nav-contact span {
    margin-left: 8px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 35px;
    padding-bottom: 54px;
  }
  .hero-copy {
    width: 100%;
    padding: 0;
  }
  .hero h1 {
    font-size: 64px;
    margin: 23px 0 20px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 22px;
  }
  .hero-location {
    display: none;
  }
  .hero-visual {
    padding: 0;
    width: 100%;
    margin: 0;
  }
  .hero-photo {
    height: 330px;
  }
  .hero-inset {
    left: auto;
    right: 15px;
    bottom: -23px;
    width: 115px;
    height: 143px;
    transform: rotate(5deg);
    padding: 5px;
  }
  .hero-inset img {
    height: 110px;
  }
  .hero-inset > span {
    font-size: 7px;
    margin-top: 8px;
  }
  .photo-tag {
    font-size: 7px;
    padding: 35px 15px 15px;
    justify-content: flex-start;
    gap: 10px;
  }
  .vertical-note {
    display: none;
  }
  .facts {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 0;
    gap: 27px 20px;
  }
  .facts > div:nth-child(2n) {
    border: 0;
  }
  .facts strong {
    font-size: 33px;
  }
  .facts > div > span {
    font-size: 8px;
  }
  .facts > a {
    grid-column: 1/-1;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    font-size: 12px;
  }
  .facts > a small {
    font-size: 8px;
  }
  .section {
    padding-block: 50px;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading h2 {
    font-size: 39px;
    letter-spacing: -1.5px;
  }
  .section-heading > p {
    font-size: 11px;
    margin-top: 15px;
  }
  .explore-layout {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .floorplan {
    min-height: 0;
  }
  .map-toolbar {
    padding: 13px 10px;
  }
  .map-toolbar > span {
    font-size: 7px;
    letter-spacing: 0.7px;
  }
  .view-switch button {
    font-size: 9px;
    padding: 7px 8px;
  }
  .map-footer {
    padding: 8px 10px 13px;
    font-size: 6px;
    gap: 6px;
  }
  .room-index {
    padding: 0;
  }
  .room-index > .eyebrow {
    margin-bottom: 5px;
  }
  #room-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
  .room-item {
    padding-block: 10px;
    gap: 8px;
  }
  .room-item .room-number {
    font-size: 11px;
    width: 13px;
  }
  .room-item img {
    width: 34px;
    height: 31px;
  }
  .room-item .room-name {
    font-size: 10px;
  }
  .room-item small {
    font-size: 8px;
  }
  .room-item > span:last-child {
    display: none;
  }
  .plan-link {
    margin-top: 15px;
  }
  .gallery-filters {
    gap: 7px;
    margin-bottom: 22px;
  }
  .gallery-filters button {
    font-size: 9px;
    padding: 9px 12px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }
  .gallery-caption {
    font-size: 10px;
    gap: 5px;
    align-items: flex-start;
  }
  .gallery-caption small {
    font-size: 8px;
    white-space: nowrap;
  }
  .image-expand {
    height: 23px;
    width: 23px;
    right: 8px;
    bottom: 8px;
    font-size: 13px;
  }
  .details {
    display: block;
  }
  .detail-intro h2 {
    font-size: 44px;
  }
  .detail-intro > p:not(.eyebrow) {
    max-width: none;
    font-size: 12px;
  }
  .detail-data {
    margin-top: 30px;
  }
  .detail-data dl > div {
    font-size: 11px;
    gap: 12px;
  }
  .detail-data dd small {
    display: block;
    margin-top: 3px;
  }
  .enquire {
    display: block;
    padding: 32px 24px;
  }
  .enquire h2 {
    font-size: 38px;
  }
  .enquire p:not(.eyebrow) {
    font-size: 11px;
  }
  .contact-actions {
    margin-top: 28px;
    min-width: 0;
  }
  .contact-actions .button {
    align-self: flex-start;
  }
  .contact-actions > a:not(.button) {
    text-align: left;
  }
  footer {
    flex-wrap: wrap;
    padding-block: 28px;
    gap: 20px;
  }
  footer > span {
    display: none;
  }
  footer .brand strong {
    font-size: 8px;
  }
  footer > a:last-child {
    font-size: 9px;
  }
  .lightbox-top h2 {
    font-size: 22px;
  }
  dialog {
    padding: 18px 14px;
  }
  .lightbox-stage {
    gap: 0;
    position: relative;
    padding: 20px 0 5px;
  }
  .lightbox-stage > img {
    width: 100%;
    height: 100%;
  }
  .lightbox-stage .icon-button {
    position: absolute;
    z-index: 2;
    width: 35px;
    height: 35px;
    font-size: 19px;
    background: #14221bc0;
  }
  .lightbox-stage #previous-photo {
    left: 0;
  }
  .lightbox-stage #next-photo {
    right: 0;
  }
  .lightbox-bottom {
    padding: 12px 0 16px;
    font-size: 10px;
  }
  .lightbox-bottom > span {
    font-size: 8px;
  }
  .lightbox-thumbs {
    padding-inline: 0;
  }
  .icon-button {
    width: 38px;
    height: 38px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

@media (min-width: 761px) {
  .photo-tag {
    padding-left: 125px;
  }
}
