:root {
  --ink: #141414;
  --muted: #64605a;
  --paper: #fffdfa;
  --wash: #efeee9;
  --copper: #c6653e;
  --copper-dark: #a24b30;
  --navy: #173754;
  --gold: #b99a56;
  --line: #dfd9ce;
  --shadow: 0 18px 38px rgba(26, 25, 22, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.9), transparent 28rem),
    linear-gradient(135deg, #f5f3ed 0%, #e8e6df 100%);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

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

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

.site-header,
main {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 26px;
  margin-top: 22px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 20px;
  white-space: nowrap;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
}

.global-nav a {
  padding: 28px 0 24px;
}

.global-nav .active,
.global-nav a:hover {
  color: var(--copper);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  margin-top: 0;
  background: #111;
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  min-height: 590px;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.hero-photo {
  background-size: cover;
  background-position: center;
}

.hero-food {
  grid-row: 1 / 3;
  background-image: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,.62)), url("assets/food-hero.png");
}

.hero-dog {
  background-image: url("assets/dog.png");
}

.hero-interior {
  background-image: url("assets/interior.png");
}

.hero-lobby {
  background-image: url("assets/interior.png");
  filter: brightness(1.08);
}

.hero-kimono {
  background-image: url("assets/kimono.png");
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(to top, rgba(0,0,0,.76), transparent);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 7.5% 42px;
  color: #fff;
  text-align: center;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(34px, 5.2vw, 66px);
  line-height: 1.08;
  text-shadow: 0 5px 16px rgba(0,0,0,.45);
}

.lead {
  display: inline-block;
  margin: 0;
  padding: 12px 22px;
  background: var(--copper);
  font-size: clamp(18px, 2.4vw, 32px);
  line-height: 1.28;
}

.sublead {
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(14px, 1.6vw, 20px);
}

.service-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 72px 70px 88px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 320px;
  padding: 26px 28px;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-food {
  background: linear-gradient(140deg, #d9784c, #ad4f31);
}

.service-pet {
  background: linear-gradient(140deg, #1a4264, #10273c);
}

.service-business {
  background: linear-gradient(140deg, #c5a15c, #9f7f3c);
}

.service-icon {
  width: 58px;
  height: 58px;
  margin: 8px auto 12px;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  line-height: 1;
}

.service-tag {
  margin: 0 0 26px;
  font-size: 25px;
}

.service-card h2 {
  margin: 0 0 26px;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.18;
}

.service-card a {
  width: 100%;
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 6px;
  font-size: 17px;
}

.service-pet a {
  color: #fff;
  background: transparent;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 34px;
  margin-top: 34px;
}

.panel {
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 40px 44px;
}

.section-title {
  margin-bottom: 24px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1;
}

.section-title p {
  margin: 8px 0 0;
  font-size: 18px;
}

.work-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.work-tabs button,
.work-tab {
  min-height: 44px;
  border: 0;
  color: #fff;
  font: inherit;
  font-size: 18px;
  display: grid;
  place-items: center;
}

.tab-food {
  background: var(--copper);
}

.tab-pet {
  background: var(--navy);
}

.tab-business {
  background: var(--gold);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 138px;
  gap: 8px;
}

.works-grid img,
.video-tile {
  border: 0;
  background: #050505;
}

.works-grid .tall {
  grid-row: span 2;
}

.video-tile {
  position: relative;
  color: #fff;
  display: grid;
  place-items: center;
  min-width: 0;
}

.video-tile span {
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
}

.video-tile span::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 12px;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.video-tile small {
  position: absolute;
  left: 14px;
  bottom: 12px;
}

.outline-button {
  width: max-content;
  max-width: 100%;
  min-height: 50px;
  margin: 28px auto 0;
  padding: 12px 24px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: #fff;
  font-size: 16px;
}

.profile-body {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 32px;
  align-items: start;
}

.profile-body img {
  aspect-ratio: 4 / 5;
  height: auto;
  background: #eee;
}

.profile-copy {
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.55;
}

.profile-copy p {
  margin: 0 0 18px;
}

.profile-copy p:nth-child(2) {
  color: var(--copper-dark);
}

.profile-copy p:nth-child(2)::first-line {
  color: var(--ink);
}

.profile-message {
  margin-top: 46px;
  text-align: center;
  line-height: 1.85;
}

.profile-message h3 {
  margin: 0 0 16px;
  font-size: 23px;
}

.profile-message p {
  max-width: 610px;
  margin: 0 auto;
  font-weight: 600;
}

.lower-layout {
  align-items: stretch;
  margin-bottom: 56px;
}

.column-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.column-item img {
  aspect-ratio: 16 / 9;
  height: auto;
}

.column-item span {
  font-size: 15px;
}

.column-item h3 {
  margin: 5px 0 0;
  font-size: 19px;
  line-height: 1.35;
}

.contact-panel {
  min-height: 520px;
  padding: 60px 54px 42px;
  color: #fff;
  background:
    linear-gradient(to bottom, rgba(19,22,25,.96) 0 48%, rgba(19,22,25,.76) 48% 100%),
    linear-gradient(135deg, #d36e48, #b85030);
  box-shadow: var(--shadow);
}

.contact-panel .section-title {
  margin-bottom: 50px;
}

.contact-panel .section-title h2 {
  font-size: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 8px 18px;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-radius: 5px;
  padding: 11px 14px;
  font: inherit;
  font-weight: 600;
  background: #fff;
}

textarea {
  min-height: 98px;
  resize: vertical;
}

.line-box {
  grid-column: 2;
  grid-row: 1 / 6;
  min-height: 230px;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.line-box strong {
  width: 88px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #222;
  background: #fff;
  border-radius: 50%;
  font-size: 27px;
}

.line-box span {
  font-size: 18px;
  line-height: 1.45;
}

.submit-button {
  width: 100%;
  min-height: 58px;
  margin-top: 22px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(180deg, #252a2d, #171a1d);
  font: inherit;
  font-size: 19px;
}

button,
a,
input,
textarea {
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

a:hover,
button:hover {
  opacity: .9;
}

@media (max-width: 980px) {
  .site-header,
  main {
    width: min(100% - 24px, 760px);
  }

  .site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .menu-toggle {
    display: block;
  }

  .global-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .global-nav.open {
    display: grid;
  }

  .global-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .hero-grid {
    min-height: 690px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.5fr 1fr 1fr;
  }

  .hero-food {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .service-band,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .service-band {
    padding: 32px;
  }

  .panel,
  .contact-panel {
    padding: 32px 22px;
  }

  .profile-body {
    grid-template-columns: 1fr;
  }

  .profile-body img {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .site-header,
  main {
    width: 100%;
  }

  .site-header {
    margin-top: 0;
  }

  .hero {
    min-height: 650px;
  }

  .hero-grid {
    min-height: 650px;
    grid-template-columns: 1fr;
    grid-template-rows: 1.3fr repeat(4, .7fr);
  }

  .hero-food {
    grid-column: auto;
  }

  .hero-copy {
    padding: 0 18px 30px;
  }

  .service-band {
    gap: 16px;
    padding: 24px 18px 34px;
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }

  .work-tabs {
    grid-template-columns: 1fr;
  }

  .column-item {
    grid-template-columns: 1fr;
  }

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

  .line-box {
    grid-column: auto;
    grid-row: auto;
    min-height: 170px;
  }
}

.food-page {
  background: linear-gradient(135deg, #f3f1eb 0%, #e5e3dc 100%);
}

.food-main {
  width: min(1380px, calc(100% - 40px));
}

.food-stage {
  display: grid;
  grid-template-columns: minmax(560px, 1.7fr) minmax(300px, .86fr) minmax(300px, .86fr);
  gap: 24px;
  align-items: start;
  margin: 0 auto 46px;
}

.food-sheet {
  background: var(--paper);
  box-shadow: var(--shadow);
}

.page-kicker {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.1;
}

.food-left {
  padding-top: 0;
}

.food-detail-hero {
  min-height: 430px;
  box-shadow: none;
}

.food-detail-hero .hero-grid {
  min-height: 430px;
}

.food-detail-hero .hero-copy {
  padding-bottom: 26px;
}

.food-detail-hero h1 {
  font-size: clamp(28px, 3.1vw, 46px);
}

.food-detail-hero .lead {
  font-size: clamp(16px, 1.6vw, 23px);
}

.food-detail-hero .sublead {
  margin-top: 14px;
  font-size: 15px;
}

.photo-proof {
  padding: 22px 38px 34px;
  text-align: center;
}

.photo-proof h2,
.video-design h2,
.case-block h2,
.account-design h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
}

.photo-proof h2 span,
.video-design h2 span,
.case-block h2 span,
.account-design h2 span,
.food-cta span {
  font-size: .72em;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
  text-align: left;
}

.proof-grid img {
  aspect-ratio: 16 / 10;
  height: auto;
}

.slash-list {
  margin: 12px 0 0 18px;
  padding: 0;
  color: var(--copper-dark);
  font-size: 16px;
  line-height: 1.55;
}

.proof-grid p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

.food-center {
  padding: 0 18px 24px;
}

.video-design,
.case-block,
.account-design {
  text-align: center;
}

.video-design {
  padding-top: 14px;
}

.video-design p,
.account-design p,
.case-block p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.45;
}

.video-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.video-compare figure {
  margin: 0;
}

.video-compare figcaption {
  padding: 6px;
  color: #fff;
  background: var(--copper);
  font-size: 15px;
}

.video-compare figure:nth-child(2) figcaption {
  background: var(--gold);
}

.video-frame {
  position: relative;
  background: #111;
}

.video-frame img {
  aspect-ratio: 2 / 3;
  height: auto;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
}

.play-mark::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 12px;
  border-left: 15px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.video-compare small {
  display: block;
  margin-top: 7px;
  font-size: 12px;
}

.compact-button {
  min-height: 38px;
  margin-top: 16px;
  padding: 8px 14px;
  font-size: 13px;
}

.case-block {
  margin-top: 24px;
}

.case-block img {
  aspect-ratio: 296 / 92;
  height: auto;
  border: 1px solid var(--line);
}

.food-right {
  display: grid;
  gap: 40px;
}

.account-design {
  padding: 0 32px 26px;
}

.account-design .page-kicker {
  text-align: left;
}

.account-design img {
  aspect-ratio: 265 / 170;
  height: auto;
  margin: 14px 0;
  border: 1px solid var(--line);
}

.account-note {
  font-size: 15px;
}

.food-cta {
  overflow: hidden;
  color: #fff;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.food-cta .page-kicker {
  color: var(--ink);
  padding: 0 0 8px;
}

.cta-copy {
  padding: 26px 24px 22px;
  color: var(--ink);
  background: #fff;
  text-align: center;
}

.cta-copy p {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.45;
}

.cta-copy strong {
  color: var(--copper-dark);
  font-size: 22px;
}

.cta-copy h2 {
  margin: 10px 0 0;
  font-size: 27px;
  line-height: 1.25;
}

.cta-actions {
  padding: 24px 20px 26px;
  background: linear-gradient(160deg, #d9784c, #a84b2f);
  text-align: center;
}

.cta-actions p {
  margin: 0 0 12px;
  font-size: 18px;
}

.cta-actions small {
  font-size: 14px;
}

.line-cta,
.mail-cta {
  display: grid;
  place-items: center;
  min-height: 44px;
  margin-top: 12px;
  border-radius: 5px;
  font-size: 18px;
}

.line-cta {
  color: var(--copper-dark);
  background: #fff;
}

.line-cta::before {
  content: "LINE";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 26px;
  margin-right: 8px;
  color: #14b84a;
  background: #eaffef;
  border-radius: 50%;
  font-size: 10px;
}

.mail-cta {
  color: #fff;
  background: linear-gradient(180deg, #252a2d, #16191b);
}

.pet-detail-hero::after {
  height: 50%;
}

.pet-hero-grid {
  display: grid;
  min-height: 430px;
  grid-template-columns: 1fr 1fr;
}

.pet-hero-food,
.pet-hero-eye {
  background-size: cover;
  background-position: center;
}

.pet-hero-food {
  background-image: linear-gradient(to bottom, transparent 48%, rgba(0,0,0,.44)), url("assets/food-hero.png");
}

.pet-hero-eye {
  background-image: linear-gradient(to bottom, transparent 48%, rgba(0,0,0,.44)), url("assets/pet-eye-hero.png");
}

.pet-lead {
  background: var(--navy);
}

.pet-philosophy h2 {
  font-size: clamp(25px, 2.2vw, 34px);
}

.pet-text-block {
  display: grid;
  align-content: center;
  gap: 22px;
  font-size: 18px;
  line-height: 1.65;
}

.pet-text-block p {
  margin: 0;
}

.pet-magazine-block {
  padding-top: 14px;
  text-align: center;
}

.pet-magazine-block h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.15;
}

.pet-magazine-block p {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.42;
}

.pet-magazine-block img {
  width: min(250px, 100%);
  height: auto;
  aspect-ratio: 250 / 164;
  margin: 0 auto;
  border: 1px solid var(--line);
}

.pet-magazine-block h3 {
  margin: 18px 0 0;
  font-size: 22px;
  line-height: 1.32;
}

.pet-case h2 {
  font-size: clamp(22px, 2vw, 30px);
}

.pet-case img {
  aspect-ratio: 290 / 94;
}

.pet-video-design {
  padding-top: 0;
}

.pet-video-design .page-kicker {
  text-align: left;
}

.pet-video-design h2 {
  font-size: clamp(25px, 2.1vw, 32px);
}

.pet-video-design .video-compare {
  margin-top: 12px;
}

.pet-video-design .video-compare figcaption {
  background: var(--navy);
}

.pet-video-design .video-compare figure:nth-child(2) figcaption {
  background: var(--navy);
}

.pet-cta .cta-copy {
  padding: 26px 22px 24px;
}

.pet-cta .cta-copy p {
  margin-bottom: 14px;
  font-size: 19px;
}

.pet-cta .cta-actions {
  background: linear-gradient(160deg, #1d486b, #102c44);
}

.pet-line {
  color: var(--ink);
}

.pet-line::before {
  display: none;
}

.business-detail-hero::after {
  height: 52%;
}

.business-hero-grid {
  display: grid;
  min-height: 430px;
  grid-template-columns: 1fr 1fr;
}

.business-hero-office,
.business-hero-kimono {
  background-size: cover;
  background-position: center;
}

.business-hero-office {
  background-image: linear-gradient(to bottom, transparent 48%, rgba(0,0,0,.5)), url("assets/interior.png");
}

.business-hero-kimono {
  background-image: linear-gradient(to bottom, transparent 48%, rgba(0,0,0,.5)), url("assets/kimono.png");
}

.business-sublead {
  margin: 0 0 12px;
  font-size: clamp(20px, 2vw, 31px);
  text-shadow: 0 4px 12px rgba(0,0,0,.5);
}

.business-lead {
  background: var(--gold);
}

.business-clients {
  padding-bottom: 28px;
}

.business-clients h2 {
  font-size: clamp(24px, 2.2vw, 33px);
}

.business-clients img {
  height: auto;
  aspect-ratio: 560 / 220;
  border: 1px solid var(--line);
}

.business-quality img {
  width: min(290px, 100%);
  aspect-ratio: 290 / 188;
}

.business-quality h3 {
  font-size: 18px;
}

.business-case img {
  aspect-ratio: 290 / 100;
}

.business-video-design .video-compare figcaption,
.business-video-design .video-compare figure:nth-child(2) figcaption {
  background: var(--navy);
}

.business-video-design .account-note {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.45;
}

.business-cta .cta-copy strong {
  color: #9a7b37;
}

.business-cta .cta-actions {
  background: linear-gradient(160deg, #c1a058, #8e7334);
}

@media (max-width: 1180px) {
  .food-stage {
    grid-template-columns: 1fr;
  }

  .food-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .food-main {
    width: 100%;
  }

  .food-stage {
    gap: 20px;
  }

  .proof-grid,
  .food-right {
    grid-template-columns: 1fr;
  }

  .photo-proof,
  .food-center,
  .account-design {
    padding-left: 18px;
    padding-right: 18px;
  }

  .food-detail-hero,
  .food-detail-hero .hero-grid {
    min-height: 620px;
  }

  .pet-hero-grid {
    min-height: 620px;
    grid-template-columns: 1fr;
  }

  .business-hero-grid {
    min-height: 620px;
    grid-template-columns: 1fr;
  }
}
