:root {
  --black: #0a0a0a;
  --white: #f5f3ef;
  --cream: #ede9e2;
  --grey: #9a9690;
  --mid: #3a3835;
  --accent: #c8b49a;
  --serif: Cormorant Garamond, Georgia, serif;
  --sans: Noto Sans JP, sans-serif; }

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

html {
  scroll-behavior: smooth; }

body {
  background: var(--jess_white);
  color: var(--jess_black);
  line-height: 1.8;
  letter-spacing: 0.04em;
  overflow-x: hidden; }

section {
  padding: 120px 40px; }
  section .section-inner {
    max-width: 1000px;
    margin: 0 auto; }
  section .section-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--jess_black);
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; }
    section .section-label::before, section .section-label::after {
      content: '';
      flex: 1;
      max-width: 80px;
      height: 1px;
      background: var(--jess_black);
      opacity: 0.4; }

h2 {
  font-size: 10px;
  margin-bottom: 32px; }

p {
  font-size: var(--jess_font-size);
  line-height: 2.1;
  margin: 0 auto; }
  @media screen and (min-width: calc(991px + 1px)) {
    p {
      width: 47em;
      max-width: 560px; } }

.desc {
  margin-top: 5px;
  margin-left: 20px; }

.about {
  background: var(--jess_white);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center; }
  @media screen and (max-width: 575px) {
    .about {
      text-align: justify;
      text-align-last: left !important;
      margin-top: 60px; } }

.photos .photo-wrap {
  background: var(--jess_white);
  display: flex;
  gap: 5px; }
  .photos .photo-wrap .photo-block_1 {
    flex: 1;
    text-align: right; }
  .photos .photo-wrap .photo-block_2 {
    width: 40%;
    margin-top: 20%; }
  .photos .photo-wrap .photo_2 {
    margin-top: 5px;
    width: 60%; }
  @media screen and (min-width: calc(991px + 1px)) {
    .photos .photo-wrap {
      gap: 40px; }
      .photos .photo-wrap .photo_2 {
        margin-top: 30px;
        width: 80%; } }

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--jess_header-height) 80px 80px;
  overflow: hidden; }
  .hero picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .hero picture img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 60% 50%; }
      @media screen and (max-width: 575px) {
        .hero picture img {
          object-position: 65% 50%; } }
  .hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--jess_black), transparent 40%); }
  .hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    color: var(--jess_white); }
    .hero .hero-content .eyebrow {
      font-size: 10px;
      letter-spacing: 0.3em;
      margin-left: 0;
      margin-bottom: 20px; }
    .hero .hero-content h1 {
      font-size: clamp(30px, 4vw, 40px);
      line-height: 1.0;
      letter-spacing: 0.05em;
      margin-bottom: 28px; }
      .hero .hero-content h1 img {
        width: clamp(250px, 40vw, 400px); }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #9a9690;
  font-size: 10px;
  letter-spacing: 0.2em;
  cursor: pointer; }
  @media screen and (max-width: 575px) {
    .scroll-hint {
      bottom: 10vh; } }

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--jess_white), transparent);
  animation: scrollLine 2s ease-in-out infinite; }

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top; }
  50% {
    transform: scaleY(1);
    transform-origin: top; }
  51% {
    transform: scaleY(1);
    transform-origin: bottom; }
  100% {
    transform: scaleY(0);
    transform-origin: bottom; } }
.experience {
  background: var(--jess_white); }
  .experience .exp-items {
    font-size: var(--jess_font-size);
    margin: 0 auto;
    width: 20em; }
    .experience .exp-items .exp-item {
      padding: 5px 0; }
      .experience .exp-items .exp-item div {
        display: inline-block; }
      .experience .exp-items .exp-item .exp-text:before {
        content: "/"; }

.product {
  padding: 120px 0px;
  text-align: center; }
  @media screen and (max-width: 575px) {
    .product {
      padding: 80px 0px; } }
  .product .product-items {
    display: flex;
    gap: 0; }
    .product .product-items .product-item {
      flex: 1 1 0;
      min-width: 0;
      overflow: hidden; }
      .product .product-items .product-item img {
        width: 100%;
        height: 80%;
        object-fit: cover;
        display: block; }
  .product a {
    color: var(--jess_black); }
    .product a p {
      width: auto;
      max-width: none;
      margin: 0;
      text-align: center; }
  .product .dalur img {
    object-position: 50% 50%; }
  .product .skuggi img {
    object-position: 50% 50%; }
  .product .orka img {
    object-position: 50% 100%; }
  @media screen and (max-width: 1199px) {
    .product .dalur img {
      object-position: 50% 47%; }
    .product .skuggi img {
      object-position: 50% 47%; } }
  @media screen and (max-width: 991px) {
    .product .dalur img {
      object-position: 50% 46%; }
    .product .skuggi img {
      object-position: 50% 45%; } }
  @media screen and (max-width: 767px) {
    .product .dalur img {
      object-position: 50% 37%; }
    .product .skuggi img {
      object-position: 50% 37%; } }
  @media screen and (max-width: 575px) {
    .product .dalur img {
      object-position: 50% 0%; }
    .product .skuggi img {
      object-position: 50% 0%; } }

.flow {
  background: var(--jess_white); }
  .flow .flow-steps {
    flex: 1; }
  .flow .step {
    padding: 0 0 28px;
    position: relative;
    font-size: var(--jess_font-size); }
  .flow .flow-img {
    width: 100%;
    margin: 0 auto; }
  @media screen and (min-width: calc(767px + 1px)) {
    .flow .flow-img {
      width: 50%; }
    .flow .flow-steps {
      margin-left: 30px; }
    .flow .step:last-child {
      padding-bottom: 0; } }

.venue {
  background: var(--jess_white); }
  .venue .venue-items {
    margin-top: 56px;
    width: 30em; }
    @media screen and (max-width: 991px) {
      .venue .venue-items {
        width: 25em; } }
    @media screen and (max-width: 767px) {
      .venue .venue-items {
        width: 20em; } }
    @media screen and (max-width: 575px) {
      .venue .venue-items {
        width: auto;
        margin-bottom: 30px; } }
  .venue .venue-img {
    flex: 1; }
  .venue .venue-detail {
    display: flex;
    flex-direction: column;
    gap: 28px; }
  .venue .venue-item {
    font-size: var(--jess_font-size); }
    .venue .venue-item dt {
      margin-bottom: 6px; }
    @media screen and (max-width: 991px) {
      .venue .venue-item {
        width: 25em;
        margin: 0 auto; } }
  .venue .venue-map {
    width: 100%;
    height: 200px;
    filter: grayscale(1);
    opacity: 0.85;
    transition: opacity 0.4s ease; }
    .venue .venue-map :hover {
      opacity: 1; }
    .venue .venue-map iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block; }
  .venue .map-placeholder {
    aspect-ratio: 1;
    background: #3a3835;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #9a9690;
    opacity: 0.5;
    border: 1px solid rgba(255, 255, 255, 0.06); }

.reservation {
  background: var(--jess_white); }
  @media screen and (max-width: 991px) {
    .reservation {
      max-width: 500px;
      margin: 0 auto; } }
  .reservation .rsv-info {
    font-size: var(--jess_font-size);
    margin: 0 auto 100px;
    width: 25em; }
    .reservation .rsv-info > div {
      margin-bottom: 20px; }
  .reservation .booking-date-group {
    margin: 50px 0;
    color: var(--jess_black); }
    .reservation .booking-date-group .booking-date-label {
      margin-bottom: 10px; }
    .reservation .booking-date-group .booking-slots .booking-btn {
      width: 100%;
      max-width: 400px;
      margin: 5px auto;
      padding: 5px 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--jess_black);
      border: var(--jess_black) 1px solid;
      font-size: var(--jess_font-size);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s; }
      .reservation .booking-date-group .booking-slots .booking-btn:hover:not(.disabled) {
        background: var(--jess_black);
        color: var(--jess_white); }
      .reservation .booking-date-group .booking-slots .booking-btn.disabled {
        opacity: 0.15;
        cursor: not-allowed; }
  .reservation .booking-attention {
    text-align: right; }
    @media screen and (max-width: 575px) {
      .reservation .booking-attention {
        text-align: left; } }

.faq {
  background: var(--jess_white); }
  .faq .accordion {
    border-radius: 0; }
    .faq .accordion .accordion-item,
    .faq .accordion .accordion-body {
      border-radius: 0;
      border: none;
      border-top: 1px solid var(--jess_black); }
    .faq .accordion:last-child {
      border-bottom: 1px solid var(--jess_black); }
    .faq .accordion .accordion-button {
      font-size: var(--jess_font-size);
      padding: 7px 0 2px;
      color: var(--jess_black) !important;
      background-color: var(--jess_white) !important; }
    .faq .accordion .accordion-button::after {
      display: none !important; }
    .faq .accordion .accordion-button:not(.collapsed) {
      background-color: transparent;
      box-shadow: none; }
    .faq .accordion .accordion-button:focus, .faq .accordion .accordion-button:focus-visible, .faq .accordion .accordion-button:active {
      box-shadow: none;
      outline: none;
      background-color: transparent; }
    .faq .accordion .accordion-body {
      padding: 25px 0;
      line-height: 1.3;
      font-size: var(--jess_font-size); }
      .faq .accordion .accordion-body .text {
        padding-bottom: 12px; }
        .faq .accordion .accordion-body .text > div {
          margin-bottom: 1.2em; }
  .faq .faq-list {
    max-width: 400px;
    margin: 0 auto; }
    .faq .faq-list .faq-q span:before {
      content: "Question / "; }
    .faq .faq-list .faq-a p {
      padding: 10px 0 10px 20px;
      width: 100%;
      color: var(--jess_black); }

@media screen and (max-width: 991px) {
  .about {
    text-align: center; } }
@media (max-width: 768px) {
  header {
    padding: 20px 24px; }
    header nav {
      display: none; }

  section {
    padding: 80px 24px; }

  .hero {
    padding: 0 24px 60px; }

  .about-grid,
  .venue-grid,
  .rsv-info {
    grid-template-columns: 1fr;
    gap: 48px; }

  .about-photo {
    display: none; }

  footer {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start; }

  .booking-grid {
    grid-template-columns: 1fr; } }
