
* { box-sizing: border-box; }

html {
  width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: clip;
  background: #f7f3ec;
  color: #1f2a24;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.9;
  letter-spacing: .04em;
}

@supports not (overflow: clip) {
  html,
  body { overflow-x: hidden; }
}

.cottage {
  --cottage-bg: #f7f3ec;
  --cottage-soft: #fffaf1;
  --cottage-green: #23382d;
  --cottage-green-dark: #10251d;
  --cottage-gold: #a68655;
  --cottage-blue: #246887;
  --cottage-text: #1f2a24;
  --cottage-muted: rgba(31,42,36,.68);
  --cottage-line: rgba(31,42,36,.13);
  --cottage-white: #fff;
  --cottage-shadow: 0 24px 70px rgba(24,48,39,.14);
  background: var(--cottage-bg);
}

.cottage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cottage a {
  color: inherit;
  text-decoration: none;
}

.kg-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  color: #fff;
  background: linear-gradient(180deg, rgba(16,37,29,.74), rgba(16,37,29,0));
}

.kg-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.kg-header__mark {
  width: 38px;
  height: 38px;
}

.kg-header__mark img,
.kg-drawer__mark img,
.crea-footer__mark img {
  object-fit: contain;
}

.kg-header__name {
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .14em;
  white-space: nowrap;
}

.kg-header__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.kg-page-nav {
  display: none;
  align-items: center;
  gap: 20px;
  color: rgba(255,255,255,.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: .12em;
}

.kg-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: .12em;
}

.kg-lang__link {
  opacity: .72;
}

.kg-lang__link--current {
  color: var(--cottage-gold);
  opacity: 1;
}

.kg-lang__separator {
  opacity: .5;
}

.kg-menu-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.kg-menu-button__line {
  width: 18px;
  height: 1px;
  background: #fff;
}

.kg-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(166,134,85,.16) 0 1px, transparent 1px 100%),
    var(--cottage-green);
  transition: opacity .32s ease, visibility .32s ease;
}

.kg-drawer:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.kg-drawer__inner {
  min-height: 100dvh;
  padding: 24px 6vw 30px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
}

.kg-drawer__head,
.kg-drawer__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.kg-drawer__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.kg-drawer__mark {
  width: 42px;
  height: 42px;
}

.kg-drawer__name {
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: .14em;
  font-weight: 400;
}

.kg-drawer__close {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.kg-drawer__close-line {
  position: absolute;
  left: 14px;
  top: 23px;
  width: 18px;
  height: 1px;
  background: #fff;
}

.kg-drawer__close-line:first-child { transform: rotate(42deg); }
.kg-drawer__close-line:last-child { transform: rotate(-42deg); }

.kg-drawer__nav {
  align-self: center;
  display: grid;
  gap: clamp(22px, 3.2vw, 38px);
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.kg-drawer__group {
  display: grid;
  grid-template-columns: minmax(96px, .28fr) 1fr;
  align-items: baseline;
  gap: 20px;
}

.kg-drawer__category {
  margin: 0;
  color: var(--cottage-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.kg-drawer__list {
  display: grid;
  gap: 10px;
}

.kg-drawer__link {
  position: relative;
  width: fit-content;
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(24px, 4.2vw, 48px);
  line-height: 1.05;
  letter-spacing: .04em;
}

.kg-drawer__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--cottage-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.kg-drawer__link:hover::after {
  transform: scaleX(1);
}

.kg-drawer__lang,
.kg-drawer__instagram {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: .14em;
}

.kg-drawer__lang {
  display: inline-flex;
  gap: 10px;
}

.kg-drawer__lang-link {
  color: rgba(255,255,255,.66);
}

.kg-drawer__lang-link--current,
.kg-drawer__instagram {
  color: var(--cottage-gold);
}

.kg-drawer__separator {
  color: rgba(255,255,255,.4);
}

.cottage-section-label {
  margin: 0 0 14px;
  color: var(--cottage-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.cottage-section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .05em;
}

.cottage-text {
  margin: 24px 0 0;
  color: var(--cottage-muted);
  font-size: 15px;
  line-height: 2.15;
}

.cottage-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .08em;
  transition: background-color .28s ease, border-color .28s ease, color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.cottage-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(31,42,36,.18);
}

.cottage-button--primary {
  background: var(--cottage-gold);
  color: #fff;
}

.cottage-button--primary:hover {
  border-color: var(--cottage-gold);
  background: #fff;
  color: var(--cottage-gold);
}

.cottage-button--outline {
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

.cottage-button--outline:hover {
  background: #fff;
  color: var(--cottage-green);
}

.cottage-button--dark {
  border-color: rgba(31,42,36,.18);
  color: var(--cottage-green);
  background: #fff;
}

.cottage-hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-items: end;
  padding: 128px 6vw 68px;
  overflow: hidden;
  color: #fff;
  background: var(--cottage-green);
}

.cottage-hero__media {
  position: absolute;
  inset: 0;
}

.cottage-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,37,29,.68), rgba(16,37,29,.24) 58%, rgba(16,37,29,.08)),
    linear-gradient(0deg, rgba(16,37,29,.72), rgba(16,37,29,0) 52%);
}

.cottage-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cottage-hero__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: .05em;
}

.cottage-hero__lead {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 2.15;
}

.cottage-hero__actions,
.cottage-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cottage-concept,
.cottage-location,
.cottage-fuji,
.cottage-wood,
.cottage-room,
.cottage-facilities,
.cottage-bbq,
.cottage-instagram,
.cottage-access,
.cottage-cta {
  padding: clamp(78px, 11vw, 136px) 6vw;
}

.cottage-concept__inner,
.cottage-location__inner,
.cottage-fuji__inner,
.cottage-wood__inner,
.cottage-room__inner,
.cottage-facilities__inner,
.cottage-bbq__inner,
.cottage-instagram__inner,
.cottage-access__inner,
.cottage-cta__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.cottage-concept {
  background: var(--cottage-bg);
}

.cottage-concept__layout {
  display: grid;
  gap: 42px;
  align-items: end;
}

.cottage-concept__statement {
  color: var(--cottage-green);
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.7;
}

.cottage-photo {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--cottage-shadow);
  background: #ddd;
}

.cottage-photo--wide {
  aspect-ratio: 16 / 10;
}

.cottage-photo--panorama {
  aspect-ratio: 16 / 8;
}

.cottage-photo--square {
  aspect-ratio: 1 / 1;
}

.cottage-location {
  background: #fffaf1;
}

.cottage-location__layout,
.cottage-fuji__layout,
.cottage-split {
  display: grid;
  gap: 38px;
  align-items: center;
}

.cottage-gallery {
  display: grid;
  gap: 14px;
}

.cottage-gallery--overlap {
  align-items: end;
}

.cottage-gallery--overlap .cottage-photo:nth-child(2) {
  width: 78%;
  margin-top: -46px;
  margin-left: auto;
  border: 8px solid var(--cottage-soft);
}

.cottage-fuji {
  background: var(--cottage-bg);
}

.cottage-fuji__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cottage-fuji__photos .cottage-photo:first-child {
  grid-column: 1 / -1;
}

.cottage-wood {
  background: #e9dfcf;
}

.cottage-room {
  background: var(--cottage-bg);
}

.cottage-facilities {
  background: var(--cottage-green);
  color: #fff;
}

.cottage-facilities .cottage-text {
  color: rgba(255,255,255,.7);
}

.cottage-facility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.cottage-facility {
  min-height: 104px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
}

.cottage-facility__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--cottage-gold);
  background: rgba(255,255,255,.12);
}

.cottage-facility__icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.cottage-facility__name {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.cottage-bbq {
  background: var(--cottage-soft);
}

.cottage-instagram {
  background: var(--cottage-bg);
}

.cottage-instagram__card {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(166,134,85,.12), rgba(255,255,255,.72)),
    #fff;
  box-shadow: var(--cottage-shadow);
}

.cottage-instagram__preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cottage-instagram__tile {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
}

.cottage-instagram__account {
  margin: 18px 0 0;
  color: var(--cottage-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: .12em;
}

.cottage-access {
  background: #fffaf1;
}

.cottage-access__layout {
  display: grid;
  gap: 36px;
}

.cottage-access__address {
  margin: 26px 0 0;
  padding: 16px 20px;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: #fff;
  color: var(--cottage-green);
  font-size: 13px;
  box-shadow: 0 14px 32px rgba(16,37,29,.08);
}

.cottage-access__frame {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--cottage-shadow);
}

.cottage-access__frame iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.cottage-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--cottage-green-dark);
}

.cottage-cta::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: clamp(260px, 54vw, 560px);
  aspect-ratio: 1;
  background: var(--cottage-bg);
  opacity: .055;
  pointer-events: none;
  -webkit-mask: url("../images/logo.svg") center / contain no-repeat;
  mask: url("../images/logo.svg") center / contain no-repeat;
}

.cottage-cta__inner {
  position: relative;
  z-index: 1;
}

.cottage-cta .cottage-text {
  color: rgba(255,255,255,.72);
}

.crea-footer {
  padding: 72px 6vw 30px;
  background: #0d2119;
  color: rgba(247,241,231,.58);
  font-size: 11px;
}

.crea-footer__inner {
  display: grid;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}

.crea-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.crea-footer__mark {
  width: 42px;
  height: 42px;
}

.crea-footer__name {
  color: var(--cottage-bg);
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: .14em;
}

.crea-footer__text {
  max-width: 420px;
  margin: 22px 0 0;
  color: rgba(247,241,231,.62);
  font-size: 13px;
  line-height: 2;
}

.crea-footer__nav {
  display: grid;
  gap: 10px;
}

.crea-footer__label {
  margin: 0 0 8px;
  color: var(--cottage-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: .16em;
}

.crea-footer__nav a {
  color: rgba(247,241,231,.78);
  font-size: 13px;
}

.crea-footer__bottom {
  max-width: 1180px;
  margin: 54px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(247,241,231,.12);
  color: rgba(247,241,231,.52);
  text-align: center;
}

@media (max-width: 760px) {
  .kg-header {
    padding: 18px 5vw;
  }

  .kg-header__name {
    display: none;
  }

  .kg-header__right {
    gap: 12px;
  }

  .kg-drawer__inner {
    padding: 22px 5vw 28px;
  }

  .kg-drawer__group {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .kg-drawer__category {
    font-size: 11px;
  }

  .kg-drawer__link {
    font-size: clamp(27px, 9vw, 38px);
  }

  .cottage-hero {
    min-height: 88svh;
    padding: 118px 5vw 58px;
  }

  .cottage-hero__lead br {
    display: none;
  }

  .cottage-section-title {
    font-size: clamp(24px, 7vw, 34px);
  }

  .cottage-text {
    font-size: 14px;
  }

  .cottage-gallery--overlap .cottage-photo:nth-child(2) {
    width: 86%;
    margin-top: -30px;
  }

  .cottage-fuji__photos {
    grid-template-columns: 1fr;
  }

  .cottage-facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cottage-instagram__preview {
    gap: 8px;
  }

  .cottage-access__frame iframe {
    min-height: 340px;
  }
}

@media (min-width: 761px) {
  .kg-page-nav {
    display: flex;
  }

  .cottage-concept__layout,
  .cottage-location__layout,
  .cottage-fuji__layout,
  .cottage-split,
  .cottage-access__layout {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  }

  .cottage-location__layout,
  .cottage-fuji__layout,
  .cottage-split,
  .cottage-access__layout {
    align-items: center;
  }

  .cottage-facility-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cottage-instagram__card {
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
  }

  .crea-footer__inner {
    grid-template-columns: 1.2fr .8fr .8fr;
    align-items: start;
  }
}

/* Art-directed cottage LP */
.cottage-art-hero {
  position: relative;
  min-height: 94svh;
  padding: 116px 6vw 64px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(16,37,29,.96) 0 34%, rgba(35,56,45,.7) 34% 54%, rgba(35,56,45,.08) 54%),
    var(--cottage-green-dark);
}

.cottage-art-hero__image {
  position: absolute;
  inset: 0 0 0 34%;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.cottage-art-hero__image img {
  object-position: 20% center;
}

.cottage-art-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,37,29,.34), rgba(16,37,29,.03) 54%, rgba(16,37,29,.12));
}

.cottage-art-hero__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.cottage-art-hero__kicker {
  margin: 0 0 18px;
  color: var(--cottage-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: .24em;
}

.cottage-art-hero__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(34px, 7vw, 66px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: .04em;
}

.cottage-art-hero__lead {
  max-width: 460px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 2.15;
}

.cottage-art-hero__actions,
.cottage-art-cta__actions,
.cottage-art-instagram__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cottage-art-hero__index {
  position: absolute;
  right: 6vw;
  bottom: 44px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 18px;
  color: rgba(255,255,255,.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: .16em;
}

.cottage-art-section {
  position: relative;
  padding: clamp(84px, 12vw, 150px) 6vw;
}

.cottage-art-section--cream { background: var(--cottage-bg); }
.cottage-art-section--white { background: #fffaf1; }
.cottage-art-section--green {
  background: var(--cottage-green);
  color: #fff;
}
.cottage-art-section--green .cottage-text { color: rgba(255,255,255,.7); }

.cottage-art-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.cottage-art-heading {
  display: grid;
  gap: 18px;
  max-width: 780px;
}

.cottage-art-layout {
  display: grid;
  gap: 44px;
}

.cottage-art-layout--center {
  align-items: center;
}

.cottage-art-label {
  margin: 0;
  color: var(--cottage-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.cottage-art-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .05em;
}

.cottage-art-photo {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #ddd;
  box-shadow: var(--cottage-shadow);
}

.cottage-art-photo--wide { aspect-ratio: 16 / 10; }
.cottage-art-photo--cinema { aspect-ratio: 16 / 7; }
.cottage-art-photo--square { aspect-ratio: 1; }
.cottage-art-photo--portrait { aspect-ratio: 4 / 5; }

.cottage-art-photo__caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(16,37,29,.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: .14em;
}

.cottage-art-manifest {
  display: grid;
  gap: 22px;
}

.cottage-art-manifest__line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--cottage-line);
}

.cottage-art-manifest__number {
  color: var(--cottage-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.cottage-art-manifest__text {
  margin: 0;
  color: var(--cottage-green);
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.55;
}

.cottage-art-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.cottage-art-window {
  display: grid;
  gap: 16px;
}

.cottage-art-window__main {
  margin-left: clamp(0px, 5vw, 80px);
}

.cottage-art-window__subgrid {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 16px;
  align-items: end;
}

.cottage-art-strip {
  display: grid;
  gap: 16px;
}

.cottage-art-deck {
  display: grid;
  gap: 18px;
  align-items: end;
}

.cottage-art-deck__copy {
  padding: clamp(26px, 4vw, 46px);
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 22px 58px rgba(31,42,36,.1);
}

.cottage-art-facility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.cottage-art-facility {
  padding: 18px;
  min-height: 98px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
}

.cottage-art-facility__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: var(--cottage-gold);
  background: rgba(255,255,255,.12);
}

.cottage-art-facility__icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.cottage-art-facility__name {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.cottage-art-instagram {
  display: grid;
  gap: 28px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(166,134,85,.15), rgba(255,255,255,.82)),
    #fff;
  box-shadow: var(--cottage-shadow);
}

.cottage-art-instagram__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.cottage-art-instagram__tile {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
}

.cottage-art-access {
  display: grid;
  gap: 36px;
}

.cottage-art-access__address {
  margin: 26px 0 0;
  padding: 16px 20px;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: #fff;
  color: var(--cottage-green);
  font-size: 13px;
  box-shadow: 0 14px 32px rgba(16,37,29,.08);
}

.cottage-art-access__frame {
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--cottage-shadow);
}

.cottage-art-access__frame iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.cottage-art-wide-photo {
  overflow: hidden;
  background: var(--cottage-green-dark);
}

.cottage-art-wide-photo__image {
  width: 100%;
  height: clamp(360px, 54vw, 760px);
}

.cottage-art-wide-photo__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cottage-art-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 150px) 6vw;
  color: #fff;
  background: var(--cottage-green-dark);
}

.cottage-art-cta::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: clamp(260px, 54vw, 560px);
  aspect-ratio: 1;
  background: var(--cottage-bg);
  opacity: .055;
  pointer-events: none;
  -webkit-mask: url("../images/logo.svg") center / contain no-repeat;
  mask: url("../images/logo.svg") center / contain no-repeat;
}

.cottage-art-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.cottage-art-cta .cottage-text { color: rgba(255,255,255,.72); }

@media (max-width: 760px) {
  .cottage-art-hero {
    min-height: 94svh;
    padding: 116px 5vw 50px;
    align-items: end;
    background: var(--cottage-green-dark);
  }

  .cottage-art-hero__image {
    inset: 0;
    clip-path: none;
  }

  .cottage-art-hero__image::after {
    background: linear-gradient(180deg, rgba(16,37,29,.28), rgba(16,37,29,.82));
  }

  .cottage-art-hero__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .cottage-art-hero__lead br {
    display: none;
  }

  .cottage-art-hero__index {
    display: none;
  }

  .cottage-art-section {
    padding: clamp(72px, 18vw, 104px) 5vw;
  }

  .cottage-art-window__main {
    margin-left: 0;
  }

  .cottage-art-window__subgrid,
  .cottage-art-instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cottage-art-facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cottage-art-access__frame iframe {
    min-height: 340px;
  }
}

@media (min-width: 761px) {
  .cottage-art-layout {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  }

  .cottage-art-layout--reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  }

  .cottage-art-strip {
    grid-template-columns: 1fr .72fr;
    align-items: end;
  }

  .cottage-art-deck,
  .cottage-art-access,
  .cottage-art-instagram {
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
  }

  .cottage-art-facility-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
