/* -----------------------------
   BASIC RESET
------------------------------ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8f7f2;
  color: #253126;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "YuGothic",
    "Noto Sans JP",
    sans-serif;

  line-height: 1.8;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}


/* -----------------------------
   CONTAINERS
------------------------------ */

.container {
  width: min(1160px, 88%);
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}


/* -----------------------------
   HEADER
------------------------------ */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;

  color: white;
}

.nav-container {
  min-height: 92px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.brand-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  letter-spacing: .5px;
}

.brand-jp {
  font-size: 12px;
  opacity: .85;
}

.nav {
  display: flex;
  gap: 27px;
  align-items: center;
}

.nav a {
  font-size: 13px;
  letter-spacing: .02em;
  opacity: .92;
  transition: opacity .25s;
}

.nav a:hover {
  opacity: .6;
}


/* -----------------------------
   HERO
------------------------------ */

.hero {
  position: relative;

  min-height: 760px;

  display: flex;
  align-items: center;

  background-image: url("images/hero-osaka.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(15, 29, 18, .73) 0%,
      rgba(15, 29, 18, .36) 45%,
      rgba(15, 29, 18, .07) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  color: white;

  padding-top: 70px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .28em;
  margin-bottom: 24px;
}

.hero h1 {
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    Georgia,
    serif;

  font-size: clamp(42px, 5vw, 72px);

  line-height: 1.35;

  font-weight: 500;

  margin:
    0
    0
    25px;
}

.hero-jp {
  font-size: 18px;
  margin-bottom: 4px;
}

.hero-en {
  font-family: Georgia, serif;
  font-size: 16px;
  opacity: .78;

  margin-top: 0;
}

.button {
  display: inline-block;

  margin-top: 26px;

  border: 1px solid rgba(255,255,255,.7);

  padding: 12px 24px;

  font-size: 13px;

  transition:
    background .2s,
    color .2s;
}

.button:hover {
  background: white;
  color: #213024;
}


/* -----------------------------
   COMMON SECTIONS
------------------------------ */

.section {
  padding: 110px 0;
}

.section-light {
  background: #fcfbf7;
}

.section-soft {
  background: #eef0e6;
}

.section-label {
  color: #9c762a;

  letter-spacing: .2em;

  font-size: 11px;

  font-weight: 700;

  margin-bottom: 16px;
}

h2 {
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    Georgia,
    serif;

  color: #253629;

  font-size: clamp(31px, 4vw, 45px);

  line-height: 1.5;

  font-weight: 500;

  margin:
    0
    0
    28px;
}

h3 {
  font-family:
    "Yu Mincho",
    "YuMincho",
    Georgia,
    serif;

  font-size: 23px;

  font-weight: 500;
}

.lead {
  font-size: 20px;

  line-height: 2;

  color: #304333;
}

.english-copy {
  margin-top: 25px;

  padding-left: 22px;

  border-left: 1px solid #c7b580;

  color: #677168;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 15px;

  line-height: 1.9;
}


/* -----------------------------
   SPLIT LAYOUT
------------------------------ */

.split {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 80px;

  align-items: center;
}

.split.reverse .image-wrap {
  order: 2;
}

.image-wrap img {
  height: 630px;

  object-fit: cover;
}

.content p {
  margin:
    0
    0
    20px;
}


/* -----------------------------
   WIDE BEEKEEPER IMAGE
------------------------------ */

.wide-image-section {
  position: relative;

  height: 580px;

  overflow: hidden;
}

.wide-image-section > img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}

.wide-image-section::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(19,34,21,.45),
      transparent 60%
    );
}

.wide-image-caption {
  position: absolute;

  z-index: 3;

  left: 8%;
  bottom: 62px;

  max-width: 530px;

  color: white;
}

.caption-jp {
  display: block;

  font-family:
    "Yu Mincho",
    "YuMincho",
    Georgia,
    serif;

  font-size: 31px;

  margin-bottom: 9px;
}

.caption-en {
  display: block;

  font-family:
    Georgia,
    serif;

  font-size: 15px;

  opacity: .85;
}


/* -----------------------------
   FUTURE
------------------------------ */

.future-section {
  background: #1e3024;
  color: #e5eadf;
}

.future-section h2 {
  color: white;
}

.future-heading {
  max-width: 720px;
}

.future-heading > p:last-child {
  font-size: 18px;
}

.future-grid {
  margin-top: 65px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 28px;
}

.future-card {
  border-top: 1px solid rgba(255,255,255,.25);

  padding:
    30px
    12px
    20px
    0;
}

.future-card h3 {
  color: white;
}

.future-number {
  color: #d4ae54;

  font-family:
    Georgia,
    serif;

  font-size: 13px;
}

.future-card p {
  color: #c8d0c6;
}

.card-en {
  font-family:
    Georgia,
    serif;

  font-size: 14px;

  opacity: .65;
}


/* -----------------------------
   SAKURA
------------------------------ */

.sakura-section {
  height: 560px;

  position: relative;

  overflow: hidden;
}

.sakura-section > img {
  height: 100%;

  object-fit: cover;
}

.sakura-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(12,26,18,.6),
      rgba(12,26,18,.05)
    );
}

.sakura-text {
  position: absolute;

  left: 8%;
  bottom: 65px;

  z-index: 2;

  color: white;
}

.sakura-text p {
  font-family:
    "Yu Mincho",
    "YuMincho",
    Georgia,
    serif;

  font-size: 34px;

  margin: 0 0 4px;
}

.sakura-text span {
  font-family:
    Georgia,
    serif;

  opacity: .83;
}


/* -----------------------------
   CONTACT
------------------------------ */

.contact-section {
  background: #faf8f1;

  text-align: center;
}

.contact-box {
  margin-top: 55px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top: 1px solid #d8d4c6;

  border-bottom: 1px solid #d8d4c6;
}

.contact-box > div {
  padding:
    30px
    20px;
}

.contact-box > div + div {
  border-left: 1px solid #d8d4c6;
}

.contact-box strong,
.contact-box small {
  display: block;
}

.contact-label {
  display: block;

  color: #997732;

  font-size: 10px;

  letter-spacing: .15em;

  margin-bottom: 8px;
}


/* -----------------------------
   FOOTER
------------------------------ */

.footer {
  background: #17251b;
  color: #dbe2d8;

  padding: 35px 0;
}

.footer-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.footer strong {
  display: block;

  font-family:
    Georgia,
    serif;
}

.footer span,
.footer p {
  font-size: 12px;

  opacity: .7;
}


/* -----------------------------
   MOBILE
------------------------------ */

@media (max-width: 900px) {

  .site-header {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .nav-container {
    min-height: 75px;
  }

  .hero {
    min-height: 680px;

    background-position: 67% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(16,30,18,.75),
        rgba(16,30,18,.25)
      );
  }

  .hero h1 {
    font-size: 43px;
  }

  .section {
    padding: 80px 0;
  }

  .split {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .split.reverse .image-wrap {
    order: 0;
  }

  .image-wrap img {
    height: 450px;
  }

  .future-grid {
    grid-template-columns: 1fr;
  }

  .wide-image-section {
    height: 500px;
  }

  .wide-image-section > img {
    object-position: 60% center;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-box > div + div {
    border-left: 0;

    border-top: 1px solid #d8d4c6;
  }

}


@media (max-width: 600px) {

  .container {
    width: 88%;
  }

  .hero {
    min-height: 640px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero-jp {
    font-size: 16px;
  }

  h2 {
    font-size: 31px;
  }

  .lead {
    font-size: 17px;
  }

  .image-wrap img {
    height: 370px;
  }

  .wide-image-caption {
    left: 6%;
    right: 6%;

    bottom: 42px;
  }

  .caption-jp {
    font-size: 25px;
  }

  .sakura-section {
    height: 430px;
  }

  .sakura-text {
    left: 6%;
    right: 6%;

    bottom: 42px;
  }

  .sakura-text p {
    font-size: 27px;
  }

  .footer-inner {
    display: block;
  }

  .footer-inner p {
    margin-top: 20px;
  }

}